* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --rake-dark-blue: #0a0a14;
    --rake-darker: #050508;
    --rake-gray: #1a1a2e;
    --rake-light-gray: #7c7c87;
    --rake-lighter-gray: #a7a8af;
    --rake-lightest-gray: #d3d3d7;
    --bright-blue: #00a6ff;
    --bright-blue-hover: #0095e8;
    --accent-cyan: #00d4ff;
    --text-white: #ffffff;
    --primary-red: #B22234;
    --primary-blue: #3C3B6E;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: 
        linear-gradient(135deg, var(--rake-darker) 0%, var(--rake-dark-blue) 50%, var(--rake-gray) 100%);
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(0, 166, 255, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 212, 255, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 166, 255, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 166, 255, 0.02) 2px,
            rgba(0, 166, 255, 0.02) 4px
        );
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.header {
    text-align: center;
    margin-bottom: 1rem;
    padding-top: 2rem;
}

.main-content {
    text-align: center;
    margin: 4rem 0;
}

.flag-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

.logo-circle {
    width: 201px;
    height: 201px;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(0 10px 30px rgba(0, 166, 255, 0.4));
    animation: fadeInScale 1s ease-out;
    border: 4px solid rgba(0, 166, 255, 0.3);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.announcement {
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out;
}

.coming-soon {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-white);
    text-shadow: 0 4px 20px rgba(0, 166, 255, 0.3);
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--rake-lightest-gray);
    font-weight: 300;
    letter-spacing: 0.02em;
}

.cta-section {
    margin: 0 auto 3rem;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--rake-lighter-gray);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--bright-blue) 0%, var(--accent-cyan) 100%);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 166, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 166, 255, 0.6);
}

.cta-button .arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
    transform: translateX(5px);
}

.subscription-form-container {
    max-width: 600px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background: rgba(10, 10, 20, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(0, 166, 255, 0.25);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: fadeInUp 1s ease-out 0.3s both;
    position: relative;
}

.reward-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--bright-blue) 0%, var(--accent-cyan) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 
        0 4px 20px rgba(0, 166, 255, 0.5),
        0 0 40px rgba(0, 166, 255, 0.3);
}

.reward-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shine 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 4px 20px rgba(0, 166, 255, 0.5),
            0 0 40px rgba(0, 166, 255, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 
            0 6px 30px rgba(0, 166, 255, 0.7),
            0 0 60px rgba(0, 166, 255, 0.5);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.reward-icon {
    font-size: 3rem;
    animation: bounce 1s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.reward-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.reward-title {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--text-white);
    text-transform: uppercase;
}

.reward-amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}

.form-subtitle {
    font-size: 1rem;
    color: var(--rake-lighter-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.form-subtitle strong {
    color: var(--bright-blue);
    font-weight: 700;
}

.subscription-form {
    width: 100%;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.g-recaptcha {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
}

#g-recaptcha-response {
    display: block !important;
    position: absolute;
    margin: -50px 0 0 0 !important;
    z-index: -999999;
    opacity: 0;
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(5, 5, 8, 0.6);
    border: 2px solid rgba(124, 124, 135, 0.3);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.email-input::placeholder {
    color: var(--rake-lighter-gray);
}

.email-input:focus {
    border-color: var(--bright-blue);
    background: rgba(10, 10, 20, 0.8);
    box-shadow: 0 0 20px rgba(0, 166, 255, 0.4);
}

.submit-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--bright-blue) 0%, var(--accent-cyan) 100%);
    border: none;
    border-radius: 8px;
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(0, 166, 255, 0.5);
    position: relative;
}

.submit-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--bright-blue-hover) 0%, var(--bright-blue) 100%);
    box-shadow: 0 6px 25px rgba(0, 166, 255, 0.7);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.footer {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem 0;
    color: var(--rake-light-gray);
    font-size: 0.9rem;
    border-top: 1px solid rgba(124, 124, 135, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .logo h1 {
        font-size: 2.5rem;
    }

    .coming-soon {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 1rem 2rem;
    }

    .reward-badge {
        padding: 1.25rem;
    }

    .reward-icon {
        font-size: 2.5rem;
    }

    .reward-title {
        font-size: 0.75rem;
    }

    .reward-amount {
        font-size: 1.75rem;
    }

    .form-title {
        font-size: 1.25rem;
    }

    .form-subtitle {
        font-size: 0.9rem;
    }

    .form-group {
        flex-direction: column;
    }

    .submit-btn {
        width: 100%;
    }

    .logo-circle {
        width: 144px;
        height: 144px;
    }

    .subscription-form-container {
        padding: 1.5rem;
    }

    .g-recaptcha {
        transform: scale(0.9);
        transform-origin: center;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 2rem;
    }

    .coming-soon {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .container {
        padding: 1rem;
    }
}

