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

html {
    height: 100%;
}

body {
    min-height: 100%;
    font-family: 'Orbitron', sans-serif;
    background-color: #0B0E11;
}

.page-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 14, 17, 0.82);
    z-index: 2;
}

/* =============================================
   MAIN CONTENT - CENTERED VERTICAL LAYOUT
============================================= */
.main-content {
    position: relative;
    z-index: 5;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 40px;
    gap: 20px;
}

/* =============================================
   LOGO - FIXED TOP
============================================= */
.logo {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    height: 55px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
    z-index: 10;
}

/* =============================================
   HEADLINE
============================================= */
.headline {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

.headline span {
    color: #00f5d4;
    text-shadow: 0 0 20px rgba(0, 245, 212, 0.4);
}

/* =============================================
   SUBTITLE
============================================= */
.subtitle {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    font-weight: 400;
    color: #C9CDD3;
    text-align: center;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

.subtitle strong {
    color: #fdfd1f;
    font-weight: 600;
}

/* =============================================
   FEATURES
============================================= */
.features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
}

.features li {
    font-size: clamp(0.7rem, 0.9vw, 0.85rem);
    font-weight: 500;
    color: #9aa0a6;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #00f5d4;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 245, 212, 0.5);
    flex-shrink: 0;
}

/* =============================================
   HERO IMAGE - CLICKABLE
============================================= */
.hero-image {
    display: block;
    width: 70%;
    max-width: 700px;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

.hero-image:hover .hero-image-frame {
    box-shadow: 
        0 0 80px rgba(253, 253, 31, 0.5),
        0 0 120px rgba(0, 245, 212, 0.25),
        0 30px 100px rgba(0, 0, 0, 0.6);
}

.hero-image-frame {
    position: relative;
    width: 100%;
    padding: 4px;
    background: linear-gradient(135deg, #fdfd1f, #00f5d4, #fdfd1f);
    background-size: 200% 200%;
    animation: borderGlow 4s ease infinite;
    border-radius: 16px;
    box-shadow: 
        0 0 60px rgba(253, 253, 31, 0.3),
        0 0 100px rgba(0, 245, 212, 0.15),
        0 25px 80px rgba(0, 0, 0, 0.5);
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* Corner accents */
.hero-image-frame::before,
.hero-image-frame::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(0, 245, 212, 0.4);
    pointer-events: none;
}

.hero-image-frame::before {
    top: -8px;
    left: -8px;
    border-right: none;
    border-bottom: none;
}

.hero-image-frame::after {
    bottom: -8px;
    right: -8px;
    border-left: none;
    border-top: none;
}

/* =============================================
   CTA BUTTON - STABLE FIXED WIDTH
============================================= */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 380px;
    height: 60px;
    background: linear-gradient(180deg, #fdfd1f 0%, #d4d418 100%);
    color: #0B0E11;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 30px rgba(253, 253, 31, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: ctaGlow 2s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(253, 253, 31, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 0 50px rgba(253, 253, 31, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

.cta-text {
    transition: opacity 0.15s ease;
}

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

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

.cta-button:hover {
    background: linear-gradient(180deg, #ffff4d 0%, #fdfd1f 100%);
    box-shadow: 
        0 0 60px rgba(253, 253, 31, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* =============================================
   DISCLAIMER
============================================= */
.disclaimer {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(201, 205, 211, 0.5);
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 900px) {
    .main-content {
        gap: 16px;
        padding: 80px 20px 24px;
    }

    .logo {
        height: 45px;
        top: 20px;
    }

    .hero-image {
        width: 85%;
        max-width: 480px;
    }

    .features {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }
}

@media (max-width: 600px) {
    .main-content {
        gap: 14px;
        padding: 70px 16px 20px;
    }

    .logo {
        height: 36px;
        top: 16px;
    }

    .headline {
        font-size: 1.3rem;
    }

    .subtitle {
        font-size: 0.8rem;
    }

    .features li {
        font-size: 0.65rem;
    }

    .hero-image {
        width: 95%;
        max-width: 380px;
    }

    .cta-button {
        width: 320px;
        height: 56px;
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .disclaimer {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }
}

/* Extra small height */
@media (max-height: 700px) {
    .main-content {
        gap: 8px;
    }

    .logo {
        height: 30px;
    }

    .hero-image {
        max-width: 300px;
    }

    .cta-button {
        width: 360px;
        height: 56px;
        font-size: 0.85rem;
    }
}

@media (max-height: 600px) {
    .main-content {
        gap: 6px;
    }

    .logo {
        height: 26px;
    }

    .headline {
        font-size: 1.1rem;
    }

    .hero-image {
        max-width: 220px;
    }

    .features {
        gap: 4px;
    }
}
