/* ==========================================================================
   RAGNAROK ZERO: GLOBAL - OFFICIAL WINDOWS PC LANDING PAGE DESIGN SYSTEM
   ========================================================================== */

/* --- Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700;900&family=Orbitron:wght@500;700;800;900&family=Outfit:wght@300;400;600;700;800&family=Inter:wght@400;600&display=swap');

/* --- Root Variables & Tokens --- */
:root {
    --brand-gold: #FFD200;
    --brand-gold-glow: rgba(255, 210, 0, 0.65);
    --brand-gold-dark: #b8860b;
    
    --brand-cyan: #00F0FF;
    --brand-cyan-glow: rgba(0, 240, 255, 0.55);
    --brand-cyan-dark: #0099cc;
    
    --brand-amber: #F59E0B;
    --brand-flame: #FF4500;
    
    --bg-dark-base: #050609;
    --bg-dark-glass: rgba(8, 10, 15, 0.82);
    --bg-metallic-black: #08090d;
    
    --border-glass: rgba(255, 255, 255, 0.1);
    --border-gold-glow: rgba(255, 210, 0, 0.35);
    --border-cyan-glow: rgba(0, 240, 255, 0.35);
    
    --font-cinzel: 'Cinzel', 'Georgia', serif;
    --font-orbitron: 'Orbitron', 'Outfit', sans-serif;
    --font-outfit: 'Outfit', 'Inter', sans-serif;
    
    --transition-snappy: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Base & Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden; /* Strict lock - non-scrollable on PC and mobile */
    background-color: var(--bg-dark-base);
    font-family: var(--font-outfit);
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Non-Scrollable Lander Container --- */
.lander-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden; /* Strict non-scrollable lock */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
}

/* --- Dynamic Background Canvas & Ambient Art --- */
#grid-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.65;
    mix-blend-mode: screen;
    background-image: 
        linear-gradient(to right, rgba(255, 210, 0, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 70px 70px;
}

.bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    overflow: hidden;
    background-color: #000;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    filter: brightness(0.72) contrast(1.15) saturate(1.1);
    transform: scale(1.02);
    animation: bgEntrance 1.8s cubic-bezier(0.25, 1, 0.5, 1) forwards, bgSlowFloat 40s ease-in-out infinite alternate;
}

@keyframes bgEntrance {
    0% { transform: scale(1.08); opacity: 0; filter: brightness(0.4); }
    100% { transform: scale(1.02); opacity: 1; filter: brightness(0.72) contrast(1.15) saturate(1.1); }
}

@keyframes bgSlowFloat {
    0% { transform: scale(1.02) translate(0, 0); }
    50% { transform: scale(1.04) translate(-0.5%, -0.5%); }
    100% { transform: scale(1.02) translate(0.5%, 0.5%); }
}

/* --- CRT Scanlines, Vignette & Fantasy Overlays --- */
.scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(10, 12, 16, 0) 50%, 
        rgba(0, 0, 0, 0.28) 50%
    );
    background-size: 100% 4px;
    z-index: -2;
    pointer-events: none;
    opacity: 0.4;
}

.vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0,0,0,0) 35%, rgba(4, 5, 8, 0.88) 95%);
    z-index: -2;
    pointer-events: none;
}

.glow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 85% 15%, rgba(255, 210, 0, 0.08) 0%, rgba(0,0,0,0) 55%),
        radial-gradient(circle at 15% 85%, rgba(0, 240, 255, 0.07) 0%, rgba(0,0,0,0) 50%),
        radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.04) 0%, rgba(0,0,0,0) 65%);
    z-index: -2;
    pointer-events: none;
}

/* --- Header Styling & Logo --- */
.main-header {
    width: 100%;
    height: 95px;
    padding: 0 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 15;
    pointer-events: auto;
    animation: headerEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes headerEntrance {
    0% { transform: translateY(-40px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-link {
    display: inline-block;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(255, 210, 0, 0.35)) drop-shadow(0 0 4px rgba(0,0,0,0.8));
    transition: var(--transition-smooth);
}

.logo-link:hover .logo-img {
    transform: scale(1.08);
    filter: drop-shadow(0 0 28px var(--brand-gold-glow)) drop-shadow(0 0 6px var(--brand-gold));
}

.header-right-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Audio Toggle Button */
.audio-toggle-btn {
    background: rgba(10, 12, 16, 0.7);
    border: 1px solid rgba(255, 210, 0, 0.4);
    color: #fff;
    padding: 9px 16px;
    font-family: var(--font-orbitron);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    transition: var(--transition-snappy);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.6), inset 0 0 6px rgba(255, 210, 0, 0.15);
}

.audio-toggle-btn:hover {
    background: rgba(255, 210, 0, 0.15);
    border-color: var(--brand-gold);
    box-shadow: 0 0 16px var(--brand-gold-glow), inset 0 0 10px rgba(255, 210, 0, 0.3);
    transform: translateY(-2px);
}

.audio-icon {
    font-size: 0.95rem;
}

.pulse-icon {
    animation: iconPulse 1.6s infinite alternate;
}

@keyframes iconPulse {
    0% { transform: scale(0.92); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 6px var(--brand-gold)); }
}

/* ==========================================================================
   CUSTOM GAMER-STYLE CTR BUTTON SYSTEM (TOP RIGHT & LOWER BLACK)
   ========================================================================== */

.ctr-btn-custom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

/* Tactical Corner Brackets */
.ctr-bracket-tl, .ctr-bracket-tr, .ctr-bracket-bl, .ctr-bracket-br {
    position: absolute;
    width: 9px;
    height: 9px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 5;
    pointer-events: none;
}

.ctr-bracket-tl {
    top: 0; left: 0;
    border-top: 2px solid var(--brand-cyan);
    border-left: 2px solid var(--brand-cyan);
}
.ctr-bracket-tr {
    top: 0; right: 0;
    border-top: 2px solid var(--brand-cyan);
    border-right: 2px solid var(--brand-cyan);
}
.ctr-bracket-bl {
    bottom: 0; left: 0;
    border-bottom: 2px solid var(--brand-cyan);
    border-left: 2px solid var(--brand-cyan);
}
.ctr-bracket-br {
    bottom: 0; right: 0;
    border-bottom: 2px solid var(--brand-cyan);
    border-right: 2px solid var(--brand-cyan);
}

.ctr-btn-custom:hover .ctr-bracket-tl { transform: translate(-3px, -3px); border-color: #fff; }
.ctr-btn-custom:hover .ctr-bracket-tr { transform: translate(3px, -3px); border-color: #fff; }
.ctr-btn-custom:hover .ctr-bracket-bl { transform: translate(-3px, 3px); border-color: #fff; }
.ctr-btn-custom:hover .ctr-bracket-br { transform: translate(3px, 3px); border-color: #fff; }

/* Text hierarchy inside CTR buttons */
.ctr-btn-custom .ctr-text-main {
    font-weight: 900;
    letter-spacing: 0.15em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 3;
    transition: all 0.2s ease;
}

.ctr-btn-custom .ctr-sub-text {
    font-family: var(--font-orbitron);
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-top: 3px;
    position: relative;
    z-index: 3;
    text-transform: uppercase;
}

/* Laser sweep animation across buttons */
.ctr-btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -160%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    z-index: 2;
    pointer-events: none;
    animation: laserSweep 4.2s infinite ease-in-out;
}

@keyframes laserSweep {
    0% { left: -160%; }
    40% { left: 200%; }
    100% { left: 200%; }
}

/* --------------------------------------------------------------------------
   1. TOP-RIGHT GLOWING CTR BUTTON
   -------------------------------------------------------------------------- */
.ctr-top-right-wrapper {
    position: relative;
    z-index: 15;
    pointer-events: auto;
}

.ctr-top-glow {
    padding: 10px 26px;
    background: linear-gradient(135deg, #FFD200 0%, #D97706 100%);
    border: 1px solid rgba(255, 210, 0, 0.75);
    border-radius: 5px;
    box-shadow: 0 0 18px var(--brand-gold-glow), inset 0 0 10px rgba(255, 255, 255, 0.35);
    animation: topCtaPulse 2s ease-in-out infinite alternate;
}

.ctr-top-glow .ctr-text-main {
    font-size: 0.88rem;
    color: #0c0d12;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
}

.ctr-top-glow .ctr-sub-text {
    font-size: 0.55rem;
    color: #262111;
}

.ctr-top-glow:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 0 28px var(--brand-gold), 0 0 50px rgba(255, 210, 0, 0.45), inset 0 0 12px rgba(255, 255, 255, 0.5);
}

.ctr-top-glow:active {
    transform: translateY(1px) scale(0.98);
}

@keyframes topCtaPulse {
    0% {
        box-shadow: 0 0 14px var(--brand-gold-glow),
                    inset 0 0 6px rgba(255, 255, 255, 0.2);
    }
    100% {
        box-shadow: 0 0 28px var(--brand-gold),
                    0 0 45px rgba(255, 210, 0, 0.35),
                    inset 0 0 12px rgba(255, 255, 255, 0.45);
    }
}

/* --------------------------------------------------------------------------
   2. LOWER BLACK GLOWING CTR BUTTON ("Keep the lower CTR black")
   -------------------------------------------------------------------------- */
.footer-ctr-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ctr-bottom-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.ctr-bottom-black-glow {
    padding: 14px 44px;
    background: linear-gradient(180deg, #12141c 0%, #06070a 100%);
    border: 1.5px solid rgba(255, 210, 0, 0.6);
    border-radius: 8px;
    box-shadow: 
        0 0 22px rgba(255, 210, 0, 0.45),
        0 0 45px rgba(0, 240, 255, 0.22),
        inset 0 0 15px rgba(255, 210, 0, 0.12),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    animation: blackGamerPulse 2.4s ease-in-out infinite alternate;
}

.ctr-bottom-black-glow .ctr-text-main {
    font-size: 1.18rem;
    color: #ffffff;
    letter-spacing: 0.16em;
    text-shadow: 0 0 12px rgba(255, 210, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.9);
}

.ctr-bottom-black-glow .ctr-sub-text {
    font-size: 0.65rem;
    color: var(--brand-cyan);
    letter-spacing: 0.22em;
    text-shadow: 0 0 8px var(--brand-cyan-glow);
}

.ctr-bottom-black-glow:hover {
    transform: translateY(-4px) scale(1.04);
    border-color: var(--brand-gold);
    box-shadow: 
        0 0 35px var(--brand-gold),
        0 0 70px rgba(0, 240, 255, 0.4),
        inset 0 0 22px rgba(255, 210, 0, 0.25);
}

.ctr-bottom-black-glow:active {
    transform: translateY(1px) scale(0.98);
}

@keyframes blackGamerPulse {
    0% {
        border-color: rgba(255, 210, 0, 0.45);
        box-shadow: 
            0 0 18px rgba(255, 210, 0, 0.35),
            0 0 35px rgba(0, 240, 255, 0.15),
            inset 0 0 10px rgba(255, 210, 0, 0.08);
    }
    100% {
        border-color: rgba(255, 210, 0, 0.85);
        box-shadow: 
            0 0 32px var(--brand-gold),
            0 0 55px rgba(0, 240, 255, 0.32),
            inset 0 0 18px rgba(255, 210, 0, 0.2);
    }
}

/* Trust microcopy below lower button */
.trust-microcopy {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    transition: var(--transition-snappy);
}

.ctr-bottom-wrapper:hover .trust-microcopy {
    color: var(--brand-gold);
    text-shadow: 0 0 8px rgba(255, 210, 0, 0.4);
}

/* Split-glitch animation on hover */
.ctr-btn-custom:hover .ctr-text-main {
    animation: textGlitchRagnarok 0.35s infinite linear;
}

@keyframes textGlitchRagnarok {
    0% { transform: translate(0px, 0px); text-shadow: -2px 0 0 var(--brand-cyan), 2px 0 0 var(--brand-gold); }
    25% { transform: translate(-1px, 1px); text-shadow: 2px 0 0 var(--brand-cyan), -2px 0 0 var(--brand-gold); }
    50% { transform: translate(1px, -1px); text-shadow: -1px 0 0 var(--brand-cyan), 1px 0 0 var(--brand-gold); }
    75% { transform: translate(-1px, -1px); text-shadow: 1px 0 0 var(--brand-cyan), -1px 0 0 var(--brand-gold); }
    100% { transform: translate(0px, 0px); text-shadow: 0 0 10px var(--brand-gold); }
}

/* --- Fantasy HUD Panels (Left & Right) --- */
.hud-left {
    position: absolute;
    left: 45px;
    top: 38%;
    z-index: 8;
    pointer-events: none;
    font-family: var(--font-orbitron);
    animation: hudFadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hud-right {
    position: absolute;
    right: 45px;
    top: 38%;
    z-index: 8;
    pointer-events: none;
    font-family: var(--font-orbitron);
    animation: hudFadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes hudFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hud-block {
    margin-bottom: 18px;
    background: rgba(6, 8, 12, 0.65);
    border-left: 3px solid var(--brand-gold);
    padding: 7px 16px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-radius: 0 6px 6px 0;
}

.hud-right .hud-block {
    border-left: none;
    border-right: 3px solid var(--brand-cyan);
    border-radius: 6px 0 0 6px;
}

.text-right {
    text-align: right;
}

.hud-label {
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.48);
    letter-spacing: 0.18em;
    margin-bottom: 2px;
}

.hud-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.06em;
}

.status-online {
    color: #10B981;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.text-glow-gold {
    color: var(--brand-gold);
    text-shadow: 0 0 14px var(--brand-gold-glow), 0 0 4px var(--brand-gold);
}

.text-cyan {
    color: var(--brand-cyan);
    text-shadow: 0 0 10px var(--brand-cyan-glow);
}

.font-orbitron {
    font-family: var(--font-orbitron);
}

.font-cinzel {
    font-family: var(--font-cinzel);
}

/* --- Main Display Centerpiece Hero Area --- */
.lander-main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    position: relative;
    z-index: 10;
    padding: 0 20px;
    margin-top: -3vh; /* Ideal optical vertical balance */
}

.hero-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 820px;
    pointer-events: auto;
    animation: heroEntrance 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroEntrance {
    0% { transform: scale(0.95) translateY(25px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* Urgency Top Badge */
.hero-urgency-badge {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--brand-gold);
    background: rgba(10, 12, 18, 0.78);
    border: 1px solid rgba(255, 210, 0, 0.4);
    padding: 6px 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 210, 0, 0.15);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10B981;
    box-shadow: 0 0 10px #10B981;
    animation: dotPulse 1.5s infinite;
}

@keyframes dotPulse {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.7; }
}

/* Main Hero Headline */
.hero-headline {
    font-size: 2.7rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.04em;
    line-height: 1.25;
    margin-bottom: 14px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 680px;
    margin-bottom: 22px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

/* Feature Pills Row */
.feature-pills-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(8, 10, 15, 0.75);
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 6px;
    padding: 7px 16px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #ffffff;
    backdrop-filter: blur(8px);
    transition: var(--transition-snappy);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.feature-pill:hover {
    border-color: var(--brand-cyan);
    background: rgba(0, 240, 255, 0.12);
    box-shadow: 0 0 16px var(--brand-cyan-glow);
    transform: translateY(-2px);
}

.pill-icon {
    font-size: 0.9rem;
}

/* ==========================================================================
   LOWER FOOTER SECTION (SOLID BLACK WITH CENTERED GLOWING CTR)
   ========================================================================== */
.main-footer {
    width: 100%;
    position: relative;
    z-index: 15;
    pointer-events: auto;
    animation: footerEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes footerEntrance {
    0% { transform: translateY(40px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.footer-bg-black {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #000000 0%, #030406 80%, rgba(5, 6, 9, 0.92) 100%);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 210, 0, 0.2);
    box-shadow: 0 -15px 50px rgba(0, 0, 0, 0.95);
    z-index: -1;
}

.footer-grid {
    padding: 30px 45px 25px 45px;
    display: grid;
    grid-template-columns: 1.4fr 1.6fr 1.4fr;
    align-items: center;
    gap: 25px;
}

/* Left Footer Rating & Legal */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-badge {
    background: #000;
    color: #fff;
    border: 1.5px solid #fff;
    font-family: var(--font-orbitron);
    font-size: 0.85rem;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 3px;
}

.rating-info-group {
    display: flex;
    flex-direction: column;
}

.rating-title {
    font-family: var(--font-orbitron);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #fff;
}

.rating-desc {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
}

.copyright-info {
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.02em;
    line-height: 1.4;
}

/* Right Footer Publisher Badge */
.footer-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-gravity-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-decoration: none;
    padding: 8px 16px;
    background: rgba(10, 12, 18, 0.6);
    border: 1px solid rgba(255, 210, 0, 0.3);
    border-radius: 5px;
    transition: var(--transition-snappy);
}

.footer-gravity-badge:hover {
    border-color: var(--brand-gold);
    background: rgba(255, 210, 0, 0.1);
    box-shadow: 0 0 16px var(--brand-gold-glow);
    transform: translateY(-2px);
}

.gravity-tag {
    font-size: 0.95rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.16em;
}

.gravity-sub {
    font-size: 0.55rem;
    color: var(--brand-gold);
    letter-spacing: 0.22em;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (NON-SCROLLABLE ACROSS ALL DEVICES)
   ========================================================================== */

@media (max-width: 1200px) {
    .main-header { padding: 0 25px; height: 85px; }
    .logo-img { height: 60px; }
    .hero-headline { font-size: 2.2rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hud-left, .hud-right { display: none; } /* Clean presentation on smaller screens */
    .footer-grid { padding: 22px 25px; grid-template-columns: 1fr 1.6fr 1fr; }
    .ctr-bottom-black-glow { padding: 12px 34px; }
    .ctr-bottom-black-glow .ctr-text-main { font-size: 1rem; }
}

@media (max-width: 768px) {
    .main-header { height: 75px; padding: 0 18px; }
    .logo-img { height: 50px; }
    .ctr-top-right-wrapper { display: none; } /* Prioritize main bottom CTA on mobile */
    .hero-headline { font-size: 1.7rem; }
    .hero-subtitle { font-size: 0.85rem; margin-bottom: 15px; }
    .hero-urgency-badge { font-size: 0.65rem; padding: 5px 12px; margin-bottom: 12px; }
    .feature-pill { font-size: 0.62rem; padding: 5px 10px; }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 16px 18px 20px 18px;
        text-align: center;
    }
    .footer-left { align-items: center; }
    .footer-right { justify-content: center; }
    .ctr-bottom-black-glow { width: 100%; padding: 12px 20px; }
    .ctr-bottom-black-glow .ctr-text-main { font-size: 0.92rem; }
    .ctr-bottom-black-glow .ctr-sub-text { font-size: 0.58rem; }
    .copyright-info { text-align: center; }
}

/* Height-constrained devices (ensure zero scrollbar) */
@media (max-height: 700px) {
    .main-header { height: 70px; }
    .logo-img { height: 48px; }
    .hero-headline { font-size: 1.8rem; margin-bottom: 8px; }
    .hero-subtitle { font-size: 0.82rem; margin-bottom: 12px; }
    .hero-urgency-badge { margin-bottom: 10px; }
    .feature-pills-row { display: none; }
    .footer-grid { padding: 16px 25px; }
    .ctr-bottom-black-glow { padding: 10px 28px; }
    .ctr-bottom-black-glow .ctr-text-main { font-size: 0.95rem; }
}
