body {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    color: white;
    font-family: 'FigTree', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
}

/* Fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glassmorphism hero card */
.hero-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 48px 40px 40px;
    max-width: 520px;
    width: 100%;
    animation: fadeInUp 0.7s ease-out both;
}

h1 {
    font-size: 2.2em;
    font-weight: 700;
    font-family: 'FigTree', sans-serif;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 28px;
    opacity: 0.85;
}

p strong {
    opacity: 1;
    color: white;
}

/* CTA button */
.cta-button {
    display: inline-block;
    padding: 14px 36px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    font-size: 1em;
    font-weight: 600;
    font-family: 'FigTree', sans-serif;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.03);
}

/* Footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    text-align: center;
    padding: 14px 20px;
    font-family: 'FigTree', sans-serif;
    font-size: 0.85em;
    box-sizing: border-box;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile */
@media (max-width: 768px) {
    body {
        padding: 20px 16px 70px;
    }

    .hero-card {
        padding: 36px 24px 32px;
        border-radius: 20px;
    }

    h1 {
        font-size: 1.8em;
    }

    p {
        font-size: 1.05em;
    }

    footer {
        padding: 12px 16px;
        font-size: 0.8em;
    }
}
