/* Background Image Setup */
body {
    /* 1. Combine the dark overlay and the image into one unbreakable background */
    background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.4)), url('Background.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 0;

    /* 2. Ensure it covers the screen even if content is short */
    min-height: 100vh;
    
    /* 3. Dynamic Viewport Height fixes the mobile address bar jump */
    min-height: 100dvh; 

    /* NOTE: background-attachment: fixed; is intentionally REMOVED! */
}

/* Typography */
.crimson-text { font-family: 'Crimson Text', serif; }
.inter-text { font-family: 'Inter', sans-serif; font-weight: 400; color: #EAEAEA; }

/* Frosted Glass Text Box */
.hero-text-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid lab(100% 0.01 -0.01);
    border-radius: 16px;
    color: white;
}

/* Perfect translation of your Flutter InkWell:
  Color(0xFF11178A), Border 10, BoxShadow(2F4F4F @ 0.3 opacity, blur 10, offset 0,4) 
*/
.launch-btn {
    display: inline-block;
    background-color: #11178A;
    color: white;
    padding: 12px 26px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(47, 79, 79, 0.3);
    font-family: 'Crimson Text', serif;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.0;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.launch-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0px 6px 14px rgba(47, 79, 79, 0.4);
}

/* Bottom Right Links */
.footer-links {
    position: absolute;
    bottom: 32px;
    right: 48px;
    display: flex;
    gap: 24px;
    z-index: 10;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

/* Responsive adjustment for mobile screens */
@media (max-width: 768px) {
    .footer-links {
        position: relative;
        bottom: 0;
        right: 0;
        justify-content: center;
        padding: 24px;
        background: rgba(0, 0, 0, 0.6);
        width: 100%;
    }
    .hero-text-box { margin-top: -50px; }
}

/* Gateway Consent Text */
.consent-text {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5); /* Faded white so it blends into the glass */
    letter-spacing: 0.2px;
    line-height: 1.4;
    max-width: 280px; /* Keeps it wrapped neatly under the button */
}