:root{
  --navy-950:#060a18;
  --navy-900:#0a1128;
  --navy-850:#0d1633;
  --navy-800:#101d40;
  --navy-700:#162754;
  --teal:#35e0c1;
  --teal-dim:#1f8f7c;
  --gold-500:#f3a828;
  --gold-600:#e2860f;
  --dark-orange:#ff7a1f;
  --dark-orange-2:#e8630a;
  --red-500:#ee4059;
  --pink-500:#ec4899;
  --blue-500:#2f7de6;
  --green-500:#2fbf6e;
  --yellow-400:#fdc73b;
  --orange-500:#f9791c;
  --cream:#efe7d4;
  --cream-edge:#e3d8bd;
  --ink:#2a1f16;
  --maroon:#7e2020;
  --text-dim:#aab4d4;
  --stream-red:#ff2d3f;
  --stream-yellow:#ffd400;
  --stream-green:#12e06a;
  --stream-teal:#1be8cf;
  --stream-blue:#1f8dff;
  --matrix-green:#39ff6a;
  --matrix-green-dim:#1fae52;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--navy-900);
  color:#fff;
  font-family:'Manrope',sans-serif;
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
button{font-family:inherit;cursor:pointer;border:none;}
.wrap{max-width:1440px;margin:0 auto;padding:0 84px;}
@media(max-width:900px){.wrap{padding:0 26px;}}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.001ms !important;animation-iteration-count:1 !important;transition-duration:0.001ms !important;scroll-behavior:auto !important;}
}

:focus-visible{outline:3px solid var(--teal);outline-offset:3px;border-radius:4px;}

/* ---------- FIXED PAGE BACKDROP (image + vignette live together here). Uses fixed pixel-distance gradients (not %) so the vignette's reach never scales with viewport width — it always stays a constant, small distance from the true screen edge, safely inside the page's 84px/26px content gutters on any screen size. ---------- */
.fixed-bg{
  position:fixed;
  top:0;left:0;right:0;bottom:0;
  z-index:-1;
  background-image:
    radial-gradient(ellipse 85% 82% at 50% 45%, transparent 46%, rgba(0,0,0,0.28) 75%, rgba(0,0,0,0.7) 92%, #000 100%),
    linear-gradient(180deg, #000 0px, rgba(0,0,0,0.55) 107px, rgba(0,0,0,0) 320px),
    linear-gradient(0deg, #000 0px, rgba(0,0,0,0.45) 101px, rgba(0,0,0,0) 222px),
    linear-gradient(90deg, #000 0px, rgba(0,0,0,0.35) 97px, rgba(0,0,0,0) 218px),
    linear-gradient(270deg, #000 0px, rgba(0,0,0,0.35) 97px, rgba(0,0,0,0) 218px),
    url('images/backgrounds/hero-background.webp');
  background-position: center, center, center, center, center, 50% 22%;
  background-repeat: no-repeat;
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, cover;
  background-color:#050914;
}
@media(max-width:900px){
  .fixed-bg{
    background-position: center, center, center, center, center, 62% 22%;
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, cover;
  }
}

/* ---------- NAV ---------- */
.nav{
  position:absolute;
  top:0;left:0;right:0;
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:15px 84px 10px;
  gap:44px;
}
@media(max-width:900px){.nav{padding:10px 20px 6px;justify-content:center;}}
.nav-group{display:flex;align-items:center;gap:30px;}
@media(max-width:900px){.nav-group.left, .nav-group.right{display:none;}}
.nav-link{
  display:flex;align-items:center;gap:9px;
  font-family:'Manrope',sans-serif;
  font-weight:700;
  font-size:14px;
  letter-spacing:0.03em;
  color:#fff;
  opacity:0.92;
  background:none;
  padding:6px 2px;
  transition:opacity .2s, transform .2s;
  white-space:nowrap;
}
.nav-link:hover{opacity:1;transform:translateY(-1px);color:var(--teal);}
.nav-link svg{width:18px;height:18px;flex-shrink:0;}
.logo-img{height:150px;width:auto;flex-shrink:0;filter:drop-shadow(0 6px 16px rgba(0,0,0,0.65));}
.nav-burger{
  display:none;
  position:absolute;top:12px;right:16px;
  width:40px;height:40px;
  align-items:center;justify-content:center;
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.28);
  border-radius:10px;
  color:#fff;
  z-index:60;
}
.nav-burger svg{width:20px;height:20px;}
.nav-burger .burger-icon-close{display:none;}
.nav-burger.open .burger-icon-open{display:none;}
.nav-burger.open .burger-icon-close{display:block;}
.nav-mobile-menu{
  display:none;
  flex-direction:column;
  align-items:flex-start;
  position:absolute;top:100%;right:16px;
  width:220px;
  background:rgba(6,10,24,0.97);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.14);
  border-radius:12px;
  padding:6px 18px;
  z-index:55;
}
.nav-mobile-menu.open{display:flex;}
.nav-mobile-link{
  display:flex;align-items:center;gap:12px;
  padding:14px 2px;
  color:#fff;font-weight:700;font-size:15px;
  font-family:'Manrope',sans-serif;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
.nav-mobile-link:last-child{border-bottom:none;}
.nav-mobile-link svg{width:19px;height:19px;flex-shrink:0;color:var(--teal);}
@media(max-width:900px){.nav-burger{display:flex;}}
@media(max-width:900px){.logo-img{height:100px;order:1;}}

/* ---------- HERO ---------- */
.hero-wrap{position:relative;}
.hero{
  position:relative;
  z-index:2;
  min-height:520px;
  display:flex;
  align-items:center;
}
@media(max-width:900px){
  .hero{min-height:480px;}
}
.hero .wrap{width:100%;}
.hero-inner{padding:170px 0 46px; max-width:720px; position:relative;}
@media(max-width:900px){.hero-inner{padding:180px 0 40px;max-width:100%;}}
.hero-text-blur{
  position:absolute;
  left:-16px; right:-16px; top:-30px; bottom:-30px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(0,0,0,0.24);
  -webkit-mask-image: radial-gradient(ellipse 40% 43% at 44% 53%, black 0%, black 15%, transparent 100%);
  mask-image: radial-gradient(ellipse 40% 43% at 44% 53%, black 0%, black 15%, transparent 100%);
  pointer-events:none;
  z-index:0;
}
.hero-text{position:relative;z-index:1;}
@media(max-width:900px){
  .hero-text{text-align:center;}
  .hero-text .btn-gold{display:none;}
}
.hero h1{
  font-family:'Anton',sans-serif;
  font-weight:400;
  font-size:clamp(56px,7.2vw,92px);
  line-height:0.96;
  margin:0 0 10px;
  letter-spacing:0.01em;
  text-transform:none;
  text-shadow:0 4px 26px rgba(0,0,0,0.65);
}
@media(max-width:900px){.hero h1{font-size:clamp(36px,10vw,56px);}}
.hero p{
  font-size:26px;
  line-height:1.3;
  color:#ffffff;
  max-width:700px;
  margin:0 0 14px;
  font-weight:800;
  text-shadow:1px 2px 0 rgba(0,0,0,0.85), 2px 4px 0 rgba(0,0,0,0.7), 0 8px 20px rgba(0,0,0,0.8);
  white-space:normal;
}
@media(max-width:900px){.hero p{font-size:20px;}}
.btn-gold{
  display:inline-flex;align-items:center;gap:10px;
  background:linear-gradient(180deg,var(--dark-orange),var(--dark-orange-2));
  color:#fff;
  font-family:'Fredoka',sans-serif;
  font-weight:700;
  font-size:16px;
  letter-spacing:0.02em;
  padding:15px 28px;
  border-radius:10px;
  box-shadow:0 14px 28px rgba(0,0,0,0.55), 0 8px 20px rgba(179,69,10,0.45), inset 0 1px 0 rgba(255,255,255,0.22);
  transition:transform .2s, box-shadow .2s;
}
.btn-gold:hover{transform:translateY(-2px);box-shadow:0 18px 32px rgba(0,0,0,0.6), 0 12px 26px rgba(179,69,10,0.55), inset 0 1px 0 rgba(255,255,255,0.22);}
.btn-gold svg{width:13px;height:13px;}

@media(max-width:900px){
  .hero-break{display:none;}
}

/* ---------- STREAMING ---------- */
.section-streaming{padding-top:26px;padding-bottom:26px;position:relative;}
.streaming-head{
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:20px;flex-wrap:wrap;gap:16px;
}
.rainbow-heading{
  font-family:'Fredoka',sans-serif;
  font-weight:700;
  font-size:clamp(30px,3.4vw,42px);
  margin:0;
  text-transform:uppercase;
  letter-spacing:0.01em;
  display:flex;gap:14px;flex-wrap:wrap;
  filter:drop-shadow(1px 2px 0 rgba(0,0,0,0.85)) drop-shadow(2px 4px 0 rgba(0,0,0,0.7)) drop-shadow(0 8px 18px rgba(0,0,0,0.85));
}
.rainbow-heading .rw span:nth-child(1){color:var(--stream-red);}
.rainbow-heading .rw span:nth-child(2){color:var(--stream-yellow);}
.rainbow-heading .rw span:nth-child(3){color:var(--stream-green);}
.rainbow-heading .st{
  background:linear-gradient(90deg,var(--stream-green),var(--stream-teal),var(--stream-blue));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.pill-btn{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(10,16,10,0.55);
  backdrop-filter:blur(7px) saturate(1.1);
  -webkit-backdrop-filter:blur(7px) saturate(1.1);
  border:1px solid rgba(255,255,255,0.28);
  color:#fff;
  font-weight:700;font-size:14px;
  padding:11px 20px;border-radius:999px;
  text-shadow:1px 2px 0 rgba(0,0,0,0.85), 0 6px 14px rgba(0,0,0,0.7);
  transition:background .2s, transform .2s;
}
.pill-btn:hover{background:rgba(10,16,10,0.72);transform:translateY(-1px);}
.pill-btn svg{width:13px;height:13px;}

.carousel-row{position:relative;}
.carousel{
  display:flex;gap:22px;overflow-x:auto;scroll-snap-type:x mandatory;
  padding:4px 4px 20px;
  scrollbar-width:none;
}
.carousel::-webkit-scrollbar{display:none;}
.poster-card{
  scroll-snap-align:start;
  flex:0 0 auto;
  width:210px;
}
@media(max-width:900px){
  .carousel{
    display:grid;
    gap:14px;
    overflow-x:visible;
    padding:4px 4px 4px;
  }
  .poster-card{width:auto;}
}
@media(min-width:641px) and (max-width:900px){
  .carousel{grid-template-columns:repeat(3, 1fr);}
}
@media(max-width:640px){
  .carousel{grid-template-columns:repeat(2, 1fr);}
}
.poster-media{
  position:relative;
  border-radius:16px;overflow:hidden;
  box-shadow:0 5px 8px rgba(0,0,0,0.55);
  transition:transform .25s, box-shadow .25s;
}
.poster-card:hover .poster-media{transform:translateY(-6px) scale(1.02);box-shadow:0 7px 11px rgba(0,0,0,0.65);}
.poster-media img{
  width:100%;aspect-ratio:9/16;object-fit:cover;display:block;
}
.poster-overlay{
  position:absolute;left:0;right:0;bottom:0;
  display:flex;flex-direction:column;align-items:center;text-align:center;gap:12px;
  padding:34px 14px 16px;
  background:linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.4) 35%, rgba(0,0,0,0.1) 65%, rgba(0,0,0,0) 100%);
}
.poster-genre{font-size:13px;color:#fff;font-weight:700;text-shadow:1px 2px 0 rgba(0,0,0,0.9), 0 6px 14px rgba(0,0,0,0.85);}
.watch-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-family:'Fredoka',sans-serif;font-weight:600;font-size:14px;
  color:#fff;padding:11px 16px;border-radius:9px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.3), 0 8px 18px rgba(0,0,0,0.6);
  transition:filter .2s, transform .2s;
}
.watch-btn:hover{filter:brightness(1.12);transform:translateY(-1px);}
.watch-btn svg{width:16px;height:16px;}
.wb-blue{background:linear-gradient(180deg,#2aa1ff,#0059d6);}
.wb-pink{background:linear-gradient(180deg,#ff2f7c,#d1004f);}
.wb-gold{background:linear-gradient(180deg,#ffcc00,#ff8a00);}
.wb-red{background:linear-gradient(180deg,#ff4433,#d40f0f);}
.wb-cyan{background:linear-gradient(180deg,#2be0e0,#0a8fa8);}
.wb-purple{background:linear-gradient(180deg,#a86bf5,#7d3fd9);}

.scroll-arrows{
  position:absolute;right:-8px;top:38%;
  transform:translateY(-50%);
  display:flex;flex-direction:column;gap:10px;
}
.scroll-arrow{
  width:46px;height:46px;border-radius:50%;
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.28);
  display:flex;align-items:center;justify-content:center;
  transition:background .2s;
}
.scroll-arrow:hover{background:rgba(255,255,255,0.22);}
.scroll-arrow svg{width:18px;height:18px;}
@media(max-width:900px){.scroll-arrows{display:none;}}

/* ---------- TECHNOLOGY ---------- */
.section-tech{
  padding:54px 0;
  margin-bottom:50px;
  position:relative;
}
.tech-panel{
  background:rgba(3,10,6,0.42);
  backdrop-filter:blur(18px) saturate(1.1);
  -webkit-backdrop-filter:blur(18px) saturate(1.1);
  border:1px solid rgba(57,255,106,0.18);
  border-radius:22px;
  padding:44px;
}
@media(max-width:900px){.tech-panel{padding:26px;}}
.tech-grid{display:grid;grid-template-columns:1fr 1.15fr;gap:64px;align-items:center;}
@media(max-width:980px){.tech-grid{grid-template-columns:1fr;gap:16px;}}
.tech-eyebrow{
  display:flex;align-items:center;gap:14px;margin-bottom:26px;
  min-width:0;
}
.tech-eyebrow svg{width:38px;height:38px;color:var(--matrix-green);flex-shrink:0;}
.tech-eyebrow h2{
  font-family:'Space Mono',monospace;
  font-weight:700;font-size:52px;letter-spacing:0.09em;
  color:var(--matrix-green);margin:0;text-transform:uppercase;
  text-shadow:0 3px 5px rgba(0,0,0,0.55);
  min-width:0;
}
@media(max-width:900px){
  .tech-eyebrow h2{font-size:36px;letter-spacing:0.03em;}
  .tech-eyebrow svg{width:30px;height:30px;}
  .tech-lead{font-size:18px;}
  .tech-body{font-size:14px;line-height:1.6;margin:0 0 8px;}
}
.tech-lead{
  font-family:'Space Mono',monospace;font-size:24px;font-weight:700;
  color:var(--matrix-green);line-height:1.4;margin:0 0 16px;
  -webkit-text-stroke:0.6px var(--matrix-green);
  text-shadow:0 3px 5px rgba(0,0,0,0.55);
}
.tech-body{font-family:'Space Mono',monospace;font-size:17px;font-weight:700;line-height:1.65;color:#8fe8ab;margin:0 0 34px;max-width:560px;text-shadow:0 2px 4px rgba(0,0,0,0.5);}

.tech-text-col{position:relative;z-index:2;}
.video-frame{
  position:relative;
  z-index:1;
  width:100%;
  margin-left:-55px;
  margin-top:110px;
  transform:scale(1.5);
  transform-origin:70% 100%;
}
@media(max-width:980px){.video-frame{margin-left:0;margin-top:0;transform:none;}}
.tv-set-img{
  width:100%;
  display:block;
}
.video-media{
  position:absolute;
  left:28.19%; top:30.05%;
  width:66.67%; height:55.43%;
  background:#05100a;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
}
.video-media video{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
}

/* ---------- NEWS ---------- */

.section-news{padding:60px 0;}
@media(max-width:900px){
.section-news{padding:60px 0;}
}


.news-paper{
  position:relative;
  width:100%;
  background:url('images/backgrounds/newspaper-texture.webp') center/100% 100% no-repeat;
  padding:65px 50px 55px 65px;
  color:var(--ink);
}
@media(max-width:900px){.news-paper{padding:85px 24px 70px 28px;}}
.news-pigeon{
  position:absolute;
  top:-116px; right:-40px;
  width:440px;
  z-index:3;
  filter:drop-shadow(0 12px 20px rgba(0,0,0,0.4));
  pointer-events:none;
}
@media(max-width:900px){.news-pigeon{width:300px;top:-76px;right:-20px;}}
@media(max-width:640px){.news-pigeon{width:250px;top:-56px;right:-14px;}}
.news-masthead{
  display:flex;justify-content:space-between;align-items:flex-end;flex-wrap:wrap;gap:16px;
  border-bottom:3px solid var(--ink);padding-bottom:16px;margin-bottom:34px;
}
.news-masthead-left{display:flex;align-items:baseline;gap:20px;flex-wrap:wrap;}
.news-masthead h2{
  font-family:'Playfair Display',serif;font-weight:900;font-size:62px;margin:0;letter-spacing:0.01em;
}
@media(max-width:900px){
  .news-masthead h2{font-size:38px;}
}

.news-grid{display:grid;grid-template-columns:1fr 1.7fr;gap:54px;}
@media(max-width:980px){.news-grid{grid-template-columns:1fr;}}
.news-feature img{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:2px;margin-bottom:18px;}
.news-feature h3{font-family:'Playfair Display',serif;font-weight:700;font-size:26px;line-height:1.25;margin:0 0 12px;}
.news-feature p{font-size:18px;line-height:1.5;font-weight:700;color:#2e2013;margin:0 0 14px;}


.news-sub-grid{display:flex;flex-direction:column;}
.news-item{display:flex;gap:24px;padding:0 0 26px;margin-bottom:26px;border-bottom:1px solid rgba(42,31,22,0.18);}
.news-item:last-child{margin-bottom:0;border-bottom:none;padding-bottom:0;}
.news-item img{width:180px;height:180px;object-fit:cover;border-radius:2px;flex-shrink:0;}
.news-item-body{min-width:0;}
.news-item-body h4{font-family:'Playfair Display',serif;font-weight:900;font-size:25px;line-height:1.22;margin:0 0 10px;color:#1a120a;}
.news-item-body p{font-size:15.5px;font-weight:700;line-height:1.6;color:#4a3e2f;margin:0 0 10px;max-width:520px;}
@media(max-width:520px){
  .news-item{flex-direction:column;gap:14px;}
  .news-item img{width:100%;height:190px;}
}


/* ---------- BRANDS ---------- */
.section-brands{padding:36px 0;}
.brands-card{
  position:relative;width:100%;
  aspect-ratio:2516/713;
  min-height:280px;
  border-radius:20px;overflow:hidden;
}
@media(max-width:900px){.brands-card{aspect-ratio:auto;min-height:440px;}}
.brands-card-img{position:absolute;top:0;left:0;right:0;bottom:0;width:100%;height:100%;object-fit:cover;display:block;}
.brands-overlay{
  position:absolute;top:0;left:0;right:0;bottom:0;
  display:flex;justify-content:space-between;align-items:center;gap:40px;flex-wrap:wrap;
  padding:0 56px;
}
@media(max-width:900px){.brands-overlay{padding:36px 28px;align-content:center;}}
.brands-text h2{
  font-family:'Permanent Marker',cursive;font-weight:400;font-size:clamp(34px,4.6vw,54px);
  line-height:1.15;margin:0 0 16px;color:#fff;
  text-shadow:1px 2px 0 rgba(0,0,0,0.85), 2px 4px 0 rgba(0,0,0,0.7), 0 10px 24px rgba(0,0,0,0.85);
}
.brands-text p{font-size:20px;color:#fff;white-space:nowrap;margin:0 0 22px;font-weight:700;text-shadow:0 2px 3px rgba(0,0,0,0.9), 0 6px 14px rgba(0,0,0,0.8);}
.brands-assets{flex-shrink:0;}
.brands-assets img{
  display:block;
  height:190px;width:auto;
  border-radius:14px;
}
@media(max-width:900px){.brands-assets img{height:130px;}}
@media(max-width:640px){.brands-assets{display:none;} .brands-text p{white-space:normal;font-size:16px;}}

/* ---------- FOOTER ---------- */
.footer{background:none;padding:70px 0 34px;position:relative;overflow:hidden;}
.footer-stack{display:flex;flex-direction:column;align-items:center;text-align:center;position:relative;z-index:2;gap:8px;}
.footer h4{font-family:'Fredoka',sans-serif;font-size:13px;letter-spacing:0.08em;color:var(--gold-500);margin:0 0 16px;}
.footer-center{display:flex;flex-direction:column;align-items:center;text-align:center;gap:6px;padding:30px;}
.footer-center-badge{
  position:relative;
  width:100%;max-width:820px;
  min-width:0;
  margin:0 auto;
}
.footer-cast-frame{position:relative;}
.footer-cast-blur{
  position:absolute;
  left:-20px; right:-20px; top:-20px; bottom:-20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(0,0,0,0.14);
  -webkit-mask-image: radial-gradient(ellipse 44% 44% at 50% 50%, black 0%, black 20%, transparent 100%);
  mask-image: radial-gradient(ellipse 44% 44% at 50% 50%, black 0%, black 20%, transparent 100%);
  pointer-events:none;
  z-index:0;
}
.footer-cast-img{
  position:relative;z-index:1;
  width:100%;
  display:block;
  filter:drop-shadow(0 6px 10px rgba(0,0,0,0.55)) drop-shadow(0 26px 48px rgba(0,0,0,0.75));
}
.footer-about-inline{
  position:relative;
  width:100%;
  margin-top:-15px;
  padding:24px 0;
  text-align:left;
}
.footer-about-bg{
  position:absolute;
  left:50%;
  width:100vw;
  transform:translateX(-50%);
  top:0; bottom:-300px;
  background:#7a3308 url('images/backgrounds/footer-background.webp') center top / 100% auto no-repeat;
  z-index:0;
}
@media(max-width:900px){
  .footer-about-bg{
    background:#7a3308 url('images/backgrounds/footer-background-mobile.webp') center top / cover no-repeat;
  }
}
.footer-tagline{
  position:relative;z-index:2;
  font-family:'Anton',sans-serif;
  font-weight:400;
  font-size:clamp(17px,3.8vw,40px);
  white-space:nowrap;
  color:#fff;
  margin:40px 0 14px;
  min-width:0;
}
@media(max-width:560px){
  .footer-tagline{white-space:normal;font-size:26px;line-height:1.25;}
}
.footer-about-inline p{
  position:relative;z-index:2;
  display:block;
  font-family:'Poppins',sans-serif;
  font-size:19px;line-height:1.5;font-weight:800;
  color:#fff;
  margin:0;
}
@media(max-width:640px){.footer-about-inline p{font-size:15px;}}
.footer-contact-row{
  position:relative;z-index:2;
  text-align:center;
  margin-top:18px;
}
.btn-outline{
  display:inline-flex;align-items:center;gap:9px;
  border:1.5px solid rgba(255,255,255,0.35);color:#fff;
  font-weight:700;font-size:13px;padding:11px 20px;border-radius:9px;
  transition:background .2s,border-color .2s;
  white-space:nowrap;
  background:var(--dark-orange-2);
}
.btn-outline:hover{background:rgba(255,255,255,0.08);border-color:#fff;}
.btn-outline svg{width:16px;height:16px;flex-shrink:0;}
.social-row{display:flex;gap:20px;margin-top:14px;justify-content:center;}
.social-row a{
  width:56px;height:56px;border-radius:50%;border:1.5px solid rgba(255,255,255,0.32);
  display:flex;align-items:center;justify-content:center;transition:background .2s,transform .2s,border-color .2s;
  background:rgba(6,10,24,0.45);
}
.social-row a:hover{background:rgba(255,255,255,0.14);border-color:#fff;transform:translateY(-3px);}
.social-row svg{width:26px;height:26px;}
.footer-copyright-row{
  position:relative;z-index:2;
  text-align:center;
  margin-top:34px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,0.14);
  display:flex;flex-direction:column;align-items:center;gap:8px;
  font-size:12.5px;color:#cdd3e0;
}
.footer-copyright-row a{color:#fff;text-decoration:underline;text-underline-offset:2px;font-weight:600;}
.footer-copyright-row a:hover{color:var(--gold-500);}

/* ---------- TRAILER MODAL ---------- */
.trailer-modal{
  position:fixed;top:0;left:0;right:0;bottom:0;z-index:999;
  display:none;
  align-items:center;justify-content:center;
}
.trailer-modal.open{display:flex;}
.trailer-modal-backdrop{
  position:absolute;top:0;left:0;right:0;bottom:0;
  background:rgba(3,5,10,0.4);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}
.trailer-modal-content{
  position:relative;z-index:1;
  height:94vh;
  max-height:1400px;
  min-height:420px;
  width:auto;
  max-width:94vw;
  aspect-ratio:9/16;
  background:#000;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.08);
}
.trailer-modal-content video{
  width:100%;height:100%;
  object-fit:contain;
  display:block;
  background:#000;
}
.trailer-error{
  display:none;
  width:100%;height:100%;
  flex-direction:column;align-items:center;justify-content:center;
  gap:14px;
  padding:30px;
  text-align:center;
  background:#0a0f1a;
}
.trailer-error p{color:#cdd3e0;font-size:14px;line-height:1.6;margin:0;font-family:'Manrope',sans-serif;}
.trailer-error b{color:#fff;}
.trailer-close{
  position:absolute;top:14px;right:14px;
  width:48px;height:48px;border-radius:50%;
  background:rgba(0,0,0,0.55);
  border:1px solid rgba(255,255,255,0.3);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  transition:background .2s;
  z-index:3;
}
.trailer-close:hover{background:rgba(0,0,0,0.75);}
.trailer-close svg{width:32px;height:32px;}
@media(max-width:640px){
  .trailer-modal-content{height:83vh;max-height:1260px;min-height:306px;max-width:86vw;}
}

/* ---------- PRIVACY / TERMS MODAL ---------- */
.privacy-modal{
  position:fixed;top:0;left:0;right:0;bottom:0;z-index:999;
  display:none;
  align-items:center;justify-content:center;
  padding:40px 20px;
}
.privacy-modal.open{display:flex;}
.privacy-modal-backdrop{
  position:absolute;top:0;left:0;right:0;bottom:0;
  background:rgba(3,5,10,0.4);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}
.privacy-modal-content{
  position:relative;z-index:1;
  width:100%;max-width:720px;
  max-height:85vh;
  background:#11162a;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.08);
  display:flex;
}
.privacy-modal-body{
  padding:46px 50px;
  overflow-y:auto;
  font-family:'Manrope',sans-serif;
}
.privacy-modal-body h2{font-family:'Space Grotesk',sans-serif;font-weight:700;color:#fff;font-size:26px;margin:0 0 6px;}
.privacy-modal-body .privacy-updated{font-size:12.5px;color:#7a86a8;margin:0 0 26px;}
.privacy-modal-body h3{color:#fff;font-size:16px;margin:24px 0 10px;}
.privacy-modal-body p{font-size:14px;line-height:1.7;margin:0 0 12px;color:#b8c0d8;}
.privacy-modal-body p b{color:#e4e8f5;}
.privacy-modal-body a{color:var(--teal);text-decoration:underline;}
.privacy-close{
  position:absolute;top:16px;right:16px;
  width:36px;height:36px;border-radius:50%;
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.25);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  transition:background .2s;
  z-index:2;
}
.privacy-close:hover{background:rgba(255,255,255,0.22);}
.privacy-close svg{width:16px;height:16px;}
@media(max-width:640px){
  .privacy-modal-body{padding:36px 26px;}
}
