/* =========================
RESET
========================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
/* =========================
ROOT
========================= */
:root{
    --bg:#050505;
    --bg-soft:#101010;
    --text:#f5f5f5;
    --text-soft:#bdbdbd;
    --accent:#c1121f;
    --accent-glow:rgba(193,18,31,.45);
    --glass:rgba(255,255,255,.05);
    --border:rgba(255,255,255,.08);
    --radius:16px;
}
/* =========================
LIGHT MODE
========================= */
body.light-mode{
    --bg:#f4f4f4;
    --bg-soft:#ffffff;
    --text:#111111;
    --text-soft:#555555;
    --glass:rgba(0,0,0,.04);
    --border:rgba(0,0,0,.08);
}
/* =========================
BASE
========================= */
html{
    scroll-behavior:smooth;
}
body{
    background:var(--bg);
    color:var(--text);
    font-family:Arial,sans-serif;
    overflow-x:hidden;
    transition:
    background .5s ease,
    color .5s ease;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}
img{
    display:block;
    max-width:100%;
}
/* =========================
NAVIGATION
========================= */
.nav{
    position:fixed;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    width:92%;
    max-width:1400px;
    padding:16px 28px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:9999;
    backdrop-filter:blur(18px);
    background:rgba(0,0,0,.28);
    border:1px solid var(--border);
    border-radius:18px;
}
.logo{
    font-size:18px;
    font-weight:800;
    letter-spacing:4px;
}
.nav-right{
    display:flex;
    align-items:center;
    gap:28px;
}
.nav a{
    color:var(--text);
    text-decoration:none;
    font-size:14px;
    letter-spacing:2px;
    transition:.3s;
}
.nav a:hover{
    color:var(--accent);
}
#theme-toggle{
    background:transparent;
    border:1px solid var(--border);
    color:var(--text);
    padding:10px 18px;
    border-radius:40px;
    cursor:pointer;
    transition:.3s;
}
#theme-toggle:hover{
    border-color:var(--accent);
    box-shadow:
    0 0 20px var(--accent-glow);
}
/* =========================
LOADER
========================= */
.loader{
    position:fixed;
    inset:0;
    background:#000;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    animation:loaderFade 1.4s ease forwards;
    animation-delay:2s;
}
.loader-logo{
    font-size:42px;
    letter-spacing:12px;
    animation:pulse 1.8s infinite;
}
@keyframes loaderFade{
    to{
        opacity:0;
        visibility:hidden;
    }
}
@keyframes pulse{
    0%{
        opacity:.3;
    }
    50%{
        opacity:1;
    }
    100%{
        opacity:.3;
    }
}
/* =========================
HERO
========================= */
/* HERO */
.hero{
    position:relative;
    min-height:100svh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    overflow:hidden;
    background:
    linear-gradient(
    to bottom,
    rgba(0,0,0,.15),
    rgba(0,0,0,.88)
    ),
    url('images/ruin_drive.jpg')
    center center / cover no-repeat;
    background-attachment:fixed;
    transition:
    background .6s ease;
}
/* LIGHT MODE HERO */
body.light-mode .hero{
    background:
    linear-gradient(
    to bottom,
    rgba(255,255,255,.15),
    rgba(255,255,255,.88)
    ),
    url('images/ruin_drive_white.jpg')
    center center / cover no-repeat;
    background-size:cover;
}
.hero-overlay{
    position:absolute;
    inset:0;
    background:
    radial-gradient(
    circle at center,
    transparent 20%,
    rgba(0,0,0,.65) 100%
    );
    mix-blend-mode:multiply;
}
.hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    padding:20px;
    animation:fadeUp 1.5s ease;
}
.eyebrow{
    display:inline-block;
    margin-bottom:20px;
    color:var(--accent);
    letter-spacing:5px;
    font-size:13px;
}
.hero h1{
    font-size:clamp(60px,12vw,150px);
    font-weight:900;
    letter-spacing:16px;
    margin-bottom:24px;
    text-transform:uppercase;
    text-shadow:
    0 0 40px rgba(0,0,0,.8),
    0 0 80px rgba(193,18,31,.15);
}
.hero p{
    color:var(--text-soft);
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}
.hero-btn{
    display:inline-block;
    padding:16px 32px;
    border-radius:60px;
    text-decoration:none;
    color:white;
    background:var(--accent);
    letter-spacing:2px;
    transition:.4s;
}
.hero-btn:hover{
    transform:translateY(-4px);
    box-shadow:
    0 0 30px var(--accent-glow);
}
/* =========================
SECTIONS
========================= */
.section{
    position:relative;
    padding:120px 8%;
}
.section::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:1px;
    height:100%;
    background:
    linear-gradient(
    transparent,
    rgba(193,18,31,.18),
    transparent
    );
}
.section-title{
    font-size:42px;
    margin-bottom:50px;
    letter-spacing:4px;
    text-transform:uppercase;
    text-shadow:
    0 0 18px rgba(193,18,31,.25);
}
/* =========================
REVEAL
========================= */
.reveal{
    opacity:0;
    transform:translateY(80px);
    transition:
    opacity 1s ease,
    transform 1s ease;
}
.reveal.active{
    opacity:1;
    transform:translateY(0);
}
/* =========================
COMING SOON
========================= */
.coming-soon{
    max-width:850px;
    margin:0 auto;
    text-align:center;
    padding:35px;
    border:1px solid var(--border);
    background:var(--glass);
    border-radius:var(--radius);
    backdrop-filter:blur(10px);
}
.coming-soon h3{
    font-size:28px;
    letter-spacing:5px;
    margin-bottom:18px;
    color:var(--accent);
}
.coming-soon p{
    color:var(--text-soft);
    line-height:1.9;
    font-size:15px;
}
/* =========================
BUTTON
========================= */
.php-btn{
    display:inline-block;
    margin-top:28px;
    padding:14px 24px;
    border:1px solid var(--border);
    border-radius:6px;
    color:white;
    text-decoration:none;
    letter-spacing:1px;
    transition:.3s;
}
.php-btn:hover{
    border-color:var(--accent);
    color:var(--accent);
    box-shadow:
    0 0 25px var(--accent-glow);
    transform:translateY(-2px);
}
/* =========================
CAST
========================= */
.cast-table{
    max-width:950px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:16px;
}
.cast-row{
    display:flex;
    align-items:center;
    gap:18px;
    padding:14px 18px;
    background:var(--glass);
    border:1px solid var(--border);
    border-radius:var(--radius);
    transition:.3s;
}
.cast-row:hover{
    background:rgba(193,18,31,.05);
    border-color:rgba(193,18,31,.25);
    transform:translateX(6px);
}
.cast-row img{
    width:56px;
    height:56px;
    border-radius:50%;
    object-fit:cover;
}
.cast-name{
    font-weight:700;
    letter-spacing:1px;
}
.cast-role{
    margin-left:auto;
    color:var(--text-soft);
    font-size:14px;
}
/* =========================
GALLERY
========================= */
.gallery{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));
    gap:28px;
    position:relative;
    z-index:2;
}
.card{
    position:relative;
    overflow:hidden;
    border-radius:16px;
    aspect-ratio:2/3;
    background:#000;
}
.card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    cursor:pointer;
    filter:brightness(.78);
    transition:
    transform .7s ease,
    filter .7s ease;
}
.card:hover img{
    transform:scale(1.06);
    filter:brightness(1);
}
/* =========================
IMAGE MODAL
========================= */
.modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.95);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:999999;
}
.modal.active{
    display:flex;
}
.modal-image{
    width:90%;
    max-width:1200px;
    max-height:90vh;
    object-fit:contain;
    border-radius:12px;
}
.close{
    position:absolute;
    top:20px;
    right:30px;
    font-size:48px;
    color:white;
    cursor:pointer;
    z-index:10;
}
.close:hover{
    color:var(--accent);
}
/* =========================
TRAILER
========================= */
.trailer-wrapper{
    position:relative;
    width:100%;
    max-width:1600px;
    margin:0 auto;
    padding-top:56.25%;
    overflow:hidden;
    border-radius:24px;
    border:1px solid var(--border);
    background:#000;
    box-shadow:
    0 0 40px rgba(0,0,0,.6),
    0 0 80px rgba(193,18,31,.12);
}
.trailer-wrapper iframe{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
}
/* CINEMATIC SCALE */
#trailer{
    padding-bottom:180px;
}
#trailer .section-title{
    text-align:center;
    margin-bottom:60px;
}
/* =========================
ULTRA CINEMATIC MOBILE
========================= */
@media(max-width:768px){
    /* BODY */
    body{
        overflow-x:hidden;
    }
    /* NAVIGATION */
    .nav{
        top:12px;
        width:94%;
        padding:14px 16px;
        border-radius:18px;
        backdrop-filter:blur(22px);
    }
    .logo{
        font-size:12px;
        letter-spacing:2px;
    }
    .nav-right{
        gap:10px;
    }
    .nav a{
        font-size:10px;
        letter-spacing:1px;
    }
    #theme-toggle{
        padding:8px 12px;
        font-size:10px;
    }
    /* HERO */
    .hero{
        min-height:100svh;
        background-attachment:scroll;
        padding:120px 20px 80px;
    }
    .hero-overlay{
        background:
        linear-gradient(
        to bottom,
        rgba(0,0,0,.2),
        rgba(0,0,0,.85)
        );
    }
    .hero-content{
        width:100%;
        max-width:100%;
        padding:0;
    }
    .eyebrow{
        font-size:10px;
        letter-spacing:3px;
        margin-bottom:14px;
    }
    .hero h1{
        font-size:clamp(42px,16vw,72px);
        line-height:.9;
        letter-spacing:4px;
        margin-bottom:20px;
        text-shadow:
        0 0 20px rgba(0,0,0,.7),
        0 0 40px rgba(193,18,31,.18);
    }
    .hero p{
        font-size:14px;
        line-height:1.7;
        max-width:320px;
        margin:0 auto 28px;
    }
    .hero-btn{
        padding:14px 24px;
        font-size:11px;
        letter-spacing:2px;
        width:100%;
        max-width:280px;
    }
    /* SECTIONS */
    .section{
        padding:70px 22px;
    }
    .section::before{
        display:none;
    }
    .section-title{
        font-size:26px;
        letter-spacing:3px;
        margin-bottom:30px;
        text-align:center;
    }
    /* COMING SOON */
    .coming-soon{
        padding:26px 20px;
        border-radius:20px;
    }
    .coming-soon h3{
        font-size:20px;
        letter-spacing:3px;
    }
    .coming-soon p{
        font-size:14px;
        line-height:1.8;
    }
    /* BUTTON */
    .php-btn{
        width:100%;
        text-align:center;
    }
    /* CAST */
    .cast-table{
        gap:12px;
    }
    .cast-row{
        padding:14px;
        border-radius:18px;
    }
    .cast-row img{
        width:52px;
        height:52px;
    }
    .cast-name{
        font-size:14px;
    }
    .cast-role{
        font-size:12px;
    }
    /* GALLERY */
    .gallery{
        grid-template-columns:1fr;
        gap:18px;
    }
    .card{
        border-radius:22px;
        aspect-ratio:4/5;
    }
    .card img{
        filter:brightness(.9);
    }
    /* MODAL */
    .modal-image{
        width:94%;
        max-height:78vh;
        border-radius:18px;
    }
    .close{
        top:16px;
        right:18px;
        font-size:38px;
    }
/* =========================
MODAL ARROWS
========================= */
.modal-content{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    gap:20px;
}
.arrow{
    position:relative;
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    border-radius:50%;
    background:rgba(0,0,0,.4);
    cursor:pointer;
    user-select:none;
    transition:.2s;
    flex-shrink:0;
}
.arrow:hover{
    background:rgba(193,18,31,.8);
}
.modal-image{
    width:90vw;
    max-width:1200px;
    max-height:90vh;
    object-fit:contain;
}
    /* TRAILER */
    #trailer{
        padding-bottom:100px;
    }
    .trailer-wrapper{
        border-radius:20px;
        overflow:hidden;
    }
    /* LOADER */
    .loader-logo{
        font-size:24px;
        letter-spacing:6px;
        text-align:center;
        padding:0 20px;
    }
    }
 @media (max-width: 768px) {
    .arrow {
        display: none;
    }
}
/* =========================
NETFLIX BUTTON FIX FINAL
========================= */
/* =========================
NETFLIX GLOW BUTTON (CINEMATIC)
========================= */
.netflix-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    margin-top:40px;
    padding:16px 34px;
    border-radius:999px;
    text-decoration:none;
    color:#fff;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:600;
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg, #b3001b, #ff1e2d);
    border:1px solid rgba(255,255,255,0.15);
    box-shadow:
        0 0 20px rgba(193,18,31,.6),
        0 0 60px rgba(255,30,45,.25);
    transition:all .3s ease;
}
/* ICON (Netflix N) */
.netflix-icon{
    font-weight:900;
    font-size:16px;
    color:#ff2a2a;
    text-shadow:0 0 10px rgba(255,0,0,.8);
}
/* ARROW */
.netflix-arrow{
    font-size:20px;
    opacity:.9;
    transition:.3s;
}
/* HOVER GLOW BOOST */
.netflix-btn:hover{
    transform:translateY(-3px) scale(1.04);
    box-shadow:
        0 0 25px rgba(255,0,0,.9),
        0 0 100px rgba(255,0,0,.35),
        0 0 160px rgba(255,0,0,.15);
}
/* SHINE EFFECT */
.netflix-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-140%;
    width:140%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );
    transform:skewX(-20deg);
}
.netflix-btn:hover::before{
    animation:shine 0.8s ease forwards;
}
@keyframes shine{
    0%{ left:-140%; }
    100%{ left:140%; }
}
/* CLICK */
.netflix-btn:active{
    transform:scale(0.97);
}
/* =========================
ZX GLOW BUTTON
========================= */
/* =========================
ZX LASER GLOW BUTTON (STATIC)
========================= */

.zx-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    padding:16px 34px;
    margin-top:30px;

    text-decoration:none;
    color:#fff;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:600;

    border-radius:999px;
    position:relative;
    overflow:hidden;

    background:rgba(193,18,31,.12);
    backdrop-filter: blur(12px);

    border:1px solid rgba(255,255,255,.15);

    cursor:pointer;

    /* BASE GLOW */
    box-shadow:
        0 0 12px rgba(255,0,60,.35),
        0 0 30px rgba(193,18,31,.35),
        0 0 70px rgba(255,0,60,.15);

    transition: all .25s ease;
}

/* =========================
STATIC LASER BORDER GLOW
========================= */

.zx-btn::before{
    content:"";
    position:absolute;
    inset:-2px;
    border-radius:999px;

    /* static neon laser edge */
    background: linear-gradient(
        90deg,
        #ff0033,
        #ff1e2d,
        #ff4d6d,
        #ff1e2d,
        #ff0033
    );

    filter: blur(6px);
    opacity:0.75;

    z-index:0;

    /* subtle breathing glow */
    animation: zxGlowPulse 2.8s ease-in-out infinite;
}

/* INNER DARK LAYER */
.zx-btn::after{
    content:"";
    position:absolute;
    inset:2px;
    border-radius:999px;
    background: rgba(10,0,5,.85);
    z-index:1;
}

/* TEXT ABOVE LAYERS */
.zx-btn > *{
    position:relative;
    z-index:2;
}

/* =========================
HOVER BOOST
========================= */

.zx-btn:hover{
    transform: translateY(-3px) scale(1.05);

    box-shadow:
        0 0 20px rgba(255,0,60,.6),
        0 0 60px rgba(255,30,45,.4),
        0 0 140px rgba(255,0,60,.2);
}

/* =========================
PULSE ANIMATION (NO ROTATION)
========================= */

@keyframes zxGlowPulse{
    0%, 100%{
        opacity:0.65;
        filter: blur(6px);
    }
    50%{
        opacity:1;
        filter: blur(8px);
    }
}
/* =========================
LIGHT MODE ADJUSTMENT
========================= */

body.light-mode .zx-btn{
    background: rgba(0,0,0,.06); /* helles Grau statt dunkles Schwarz */
    color:#111;
}

body.light-mode .zx-btn::after{
    background: rgba(255,255,255,.75); /* helle Innenfläche */
}

body.light-mode .zx-logo{
    background: rgba(0,0,0,.08);
    color:#111;
    border:1px solid rgba(0,0,0,.12);
}

body.light-mode .zx-text{
    color:#111;
}

/* optional: softer glow in light mode */
body.light-mode .zx-btn::before{
    opacity:0.5;
    filter: blur(5px);
}
/* =========================
ZX NEON EMBLEM
========================= */

.zx-logo{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:42px;
    height:32px;

    border-radius:8px;

    font-weight:900;
    font-size:14px;
    letter-spacing:1px;

    color:#ff2a3d;

    background:rgba(0,0,0,.25);
    border:1px solid rgba(255,60,80,.35);

    /* inner glow */
    box-shadow:
        inset 0 0 10px rgba(255,0,60,.25),
        0 0 12px rgba(255,0,60,.35),
        0 0 30px rgba(255,0,60,.15);

    text-shadow:
        0 0 6px rgba(255,0,60,.9),
        0 0 14px rgba(255,0,60,.6);

    backdrop-filter: blur(6px);

    overflow:hidden;

    animation: zxFlicker 3.2s infinite ease-in-out;
}

/* subtle neon sweep */
.zx-logo::before{
    content:"";
    position:absolute;
    top:0;
    left:-60%;
    width:60%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );

    transform:skewX(-20deg);
    animation: zxScan 4s infinite ease-in-out;
}

/* flicker (very subtle cinematic neon feel) */
@keyframes zxFlicker{
    0%, 100%{
        opacity:1;
        filter: brightness(1);
    }
    50%{
        opacity:.92;
        filter: brightness(1.3);
    }
}

/* scan light */
@keyframes zxScan{
    0%{ left:-60%; }
    40%{ left:120%; }
    100%{ left:120%; }
}
/* =========================
ZX INFO BOX (CINEMATIC GLASS)
========================= */

.zx-info-box{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    margin:30px auto 0;
    padding:14px 22px;

    border-radius:999px;

    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;

    color:var(--text);

    background:rgba(193,18,31,.10);
    backdrop-filter: blur(10px);

    border:1px solid rgba(255,255,255,.12);

    position:relative;
    overflow:hidden;

    box-shadow:
        0 0 12px rgba(255,0,60,.25),
        0 0 35px rgba(193,18,31,.15);

    animation: infoPulse 3.5s ease-in-out infinite;
}

/* subtle neon sweep */
.zx-info-box::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:120%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );

    transform:skewX(-20deg);

    animation: infoScan 6s infinite ease-in-out;
}

/* soft breathing glow */
@keyframes infoPulse{
    0%,100%{
        box-shadow:
            0 0 10px rgba(255,0,60,.15),
            0 0 30px rgba(193,18,31,.10);
        opacity:0.85;
    }
    50%{
        box-shadow:
            0 0 18px rgba(255,0,60,.35),
            0 0 60px rgba(193,18,31,.20);
        opacity:1;
    }
}

/* light sweep */
@keyframes infoScan{
    0%{ left:-120%; }
    40%{ left:120%; }
    100%{ left:120%; }
}

/* LIGHT MODE ADJUSTMENT */
body.light-mode .zx-info-box{
    background:rgba(0,0,0,.06);
    color:#111;
    border:1px solid rgba(0,0,0,.12);
}
/* =========================
LANG SWITCH BUTTON
========================= */

/* =========================
LANG SWITCH BUTTONS
========================= */

.lang-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:10px 14px;

    font-size:12px;
    letter-spacing:2px;
    text-decoration:none;

    color:var(--text);

    border-radius:999px;

    border:1px solid rgba(255,255,255,.15);
    background:rgba(0,0,0,.25);

    backdrop-filter:blur(10px);

    transition:.25s ease;

    box-shadow:
        0 0 10px rgba(255,0,60,.12);
}

/* hover glow */
.lang-btn:hover{
    transform:translateY(-2px);
    box-shadow:
        0 0 18px rgba(255,0,60,.35),
        0 0 50px rgba(255,0,60,.15);
}

/* ACTIVE LANGUAGE = RED EMPHASIS */
.lang-btn.active{
    color:#fff;

    border-color:rgba(255,0,60,.8);
    background:rgba(255,0,60,.15);

    box-shadow:
        0 0 20px rgba(255,0,60,.6),
        0 0 70px rgba(255,0,60,.25);

    text-shadow:0 0 10px rgba(255,0,60,.8);
}
/* =========================
MOVIES BUTTON (ZX STYLE NAV)
========================= */

.movies-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:10px 18px;
    border-radius:999px;

    text-decoration:none;
    color:#fff;
    font-size:12px;
    letter-spacing:3px;
    font-weight:700;

    background:rgba(193,18,31,.18);
    border:1px solid rgba(255,255,255,.18);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow:
        0 0 18px rgba(193,18,31,.35),
        0 0 60px rgba(193,18,31,.15);

    transition:all .3s ease;
    position:relative;
    overflow:hidden;
}

/* ZX glow edge */
.movies-btn::before{
    content:"";
    position:absolute;
    inset:-2px;
    border-radius:999px;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,0,60,.6),
        transparent
    );
    opacity:.5;
    filter:blur(6px);
}

/* hover glow boost */
.movies-btn:hover{
    transform:translateY(-2px) scale(1.03);
    box-shadow:
        0 0 25px rgba(255,30,45,.8),
        0 0 90px rgba(255,30,45,.25);
    border-color:rgba(255,30,45,.5);
}

/* active */
.movies-btn:active{
    transform:scale(0.97);
}
/* =========================
ZX MOVIE HUB NAV
========================= */

.zx-hub{
    position:relative;
    display:inline-block;
}

/* MAIN BUTTON */
.hub-main{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:10px 18px;
    border-radius:999px;

    text-decoration:none;
    color:#fff;
    font-size:12px;
    letter-spacing:3px;
    font-weight:800;

    background:rgba(193,18,31,.20);
    border:1px solid rgba(255,255,255,.18);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow:
        0 0 18px rgba(193,18,31,.35),
        0 0 60px rgba(193,18,31,.15);

    transition:.3s ease;
    position:relative;
    z-index:2;
}

/* GLOW EDGE */
.hub-main::before{
    content:"";
    position:absolute;
    inset:-2px;
    border-radius:999px;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,0,60,.6),
        transparent
    );
    filter:blur(8px);
    opacity:.6;
}

/* MENU */
.hub-menu{
    position:absolute;
    top:120%;
    left:0;

    display:flex;
    flex-direction:column;
    gap:8px;

    min-width:220px;
    padding:12px;

    opacity:0;
    visibility:hidden;
    transform:translateY(-10px);

    transition:.25s ease;

    background:rgba(10,10,10,.75);
    border:1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(14px);

    border-radius:14px;

    box-shadow:
        0 20px 60px rgba(0,0,0,.6);
}

/* LINKS */
.hub-menu a{
    color:#fff;
    text-decoration:none;
    font-size:11px;
    letter-spacing:2px;

    padding:10px 12px;
    border-radius:10px;

    transition:.2s;
}

/* hover glow item */
.hub-menu a:hover{
    background:rgba(193,18,31,.15);
    box-shadow:0 0 18px rgba(193,18,31,.25);
    transform:translateX(4px);
}

/* SHOW ON HOVER */
.zx-hub:hover .hub-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* MAIN HOVER */
.zx-hub:hover .hub-main{
    transform:translateY(-2px);
    box-shadow:
        0 0 25px rgba(255,30,45,.8),
        0 0 90px rgba(255,30,45,.25);
}
/* LIGHT MODE — MOVIE HUB */
/* LIGHT MODE — MOVIE HUB */
body.light-mode .hub-main{
    background:rgba(255,255,255,.72);

    border:1px solid rgba(0,0,0,.06);

    color:#111;

    box-shadow:
        0 0 12px rgba(0,0,0,.05),
        0 8px 24px rgba(0,0,0,.06);
}

/* DROPDOWN */
body.light-mode .hub-menu{
    background:rgba(255,255,255,.82);

    border:1px solid rgba(0,0,0,.06);

    box-shadow:
        0 15px 40px rgba(0,0,0,.06);
}

/* LINKS */
body.light-mode .hub-menu a{
    color:#111;
}

/* HOVER */
body.light-mode .hub-menu a:hover{
    background:rgba(193,18,31,.06);
}
/* =========================
LANG / THEME BUTTONS
========================= */

.lang-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 16px;
    border-radius:999px;
    text-decoration:none;
    color:var(--text);
    background:var(--glass);
    border:1px solid var(--border);
    font-size:12px;
    letter-spacing:1px;
    transition:.25s ease;
    backdrop-filter:blur(10px);
}

.lang-btn:hover{
    border-color:rgba(193,18,31,.45);
    box-shadow:
        0 0 18px rgba(193,18,31,.25);
}

/* ACTIVE = RED */
.lang-btn.active{
    background:linear-gradient(
        135deg,
        #b3001b,
        #ff1e2d
    );

    color:#fff;

    border-color:rgba(255,255,255,.15);

    box-shadow:
        0 0 18px rgba(255,0,0,.45),
        0 0 45px rgba(255,0,0,.18);
}
.festival-table{
    max-width:420px;
    margin:40px auto;
}

.festival-row{
    display:flex;
    align-items:center;
    gap:20px;
    margin:20px 0;
}

.festival-row img{
    width:100px;
    height:100px;
    object-fit:contain;
}

.festival-text{
    font-size:1.2rem;
    line-height:1.5;
}

.festival-text strong{
    display:block;
    font-size:1.4rem;
}
.hub-lang{
    display:flex;
    gap:8px;
    justify-content:center;
    padding:10px;
}

.mini-lang-btn{
    display:inline-block;
    min-width:34px;
    padding:4px 10px;
    text-align:center;
    border:1px solid #888;
    border-radius:4px;
    text-decoration:none;
    font-size:.75rem;
    color:#fff;
    transition:.2s;
}

.mini-lang-btn:hover{
    background:#fff;
    color:#000;
}

.mini-lang-btn.active{
    background:#fff;
    color:#000;
    border-color:#fff;
}
.festival-links{
    margin-top:25px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.festival-links a{
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:1px;
    text-decoration:none;
    border-bottom:1px solid #444;
    padding-bottom:4px;
    width:fit-content;
}

.festival-links a:hover{
    border-color:#fff;
}
/* =========================
   FOOTER
========================= */

.footer{
    margin-top:80px;
    padding:40px 30px;
    background:#111;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    color:#999;
    font-size:14px;
}

.footer a{
    color:#bbb;
    text-decoration:none;
    transition:.25s;
}

.footer a:hover{
    color:#c1121f;
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    margin-bottom:20px;
}

.footer-copy{
    font-size:12px;
    opacity:.7;
}
.light-mode .footer{
    background:#f5f5f5;
    border-top:1px solid #ddd;
    color:#555;
}

.light-mode .footer a{
    color:#333;
}

.light-mode .footer a:hover{
    color:#c1121f;
}