:root {
    --bg-abyss:   #060408;
    --bg-deep:    #0d0810;
    --bg-mid:     #160d18;
    --bg-warm:    #1e1016;
    --gold:       #c9922a;
    --gold-bright:#e8b84b;
    --gold-pale:  #f2d896;
    --amber:      #d4580a;
    --marigold:   #e8901c;
    --terracotta: #b8402a;
    --jade:       #3a7a5c;
    --eclipse-glow: #ff7a1a;
    --text:       #e2d5be;
    --text-muted: #8a7a66;
    --text-dim:   #4a3e32;
    --pixel-border: #3a2a18;
    --font-display: 'Russo One', sans-serif;
    --font-title:   'GlacialIndifference', 'DM Sans', sans-serif;
    --font-title-fallback: 'DM Sans', sans-serif;
    --font-body:    'DM Sans', sans-serif;
    --font-mono:    monospace;
    --grain-filter: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3C/svg%3E#grain");
  }

  
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--bg-abyss);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    overflow-x: hidden;
    cursor: crosshair;
    padding-bottom: 80px;
  }

  
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='50.0%'/%3E%3C/svg%3E");
    background-size: 256px 256px;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.6;
    mix-blend-mode: overlay;
  }

  
  #starfield {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
  }
  .star {
    position: absolute;
    background: var(--gold-pale);
    border-radius: 50%;
    animation: twinkle var(--dur, 3s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
  }
  @keyframes twinkle {
    0%, 100% { opacity: var(--op-lo, 0.1); transform: scale(1); }
    50% { opacity: var(--op-hi, 0.8); transform: scale(1.4); }
  }

  
  .pixel-border {
    position: relative;
  }
  .pixel-border::before, .pixel-border::after {
    content: '';
    display: block;
    height: 4px;
    background: repeating-linear-gradient(
      90deg,
      var(--gold) 0px, var(--gold) 8px,
      transparent 8px, transparent 16px
    );
    opacity: 0.5;
  }

  
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(6,4,8,0.95), transparent);
    transition: background 0.3s;
  }
  nav.scrolled {
    background: rgba(6,4,8,0.98);
    border-bottom: 1px solid rgba(201,146,42,0.15);
  }

  .nav-logo {
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
  }
  .nav-logo span { color: var(--text-muted); }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin-left: auto;
  }
  .nav-links a {
    font-family: var(--font-title);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold-pale); }

  .nav-cta {
    font-family: var(--font-title);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bg-abyss) !important;
    background: var(--gold);
    padding: 0.45em 1.2em;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
    image-rendering: pixelated;
    clip-path: polygon(4px 0%, calc(100% - 4px) 0%, 100% 4px, 100% calc(100% - 4px), calc(100% - 4px) 100%, 4px 100%, 0% calc(100% - 4px), 0% 4px);
  }
  .nav-cta:hover { background: var(--gold-bright) !important; transform: translateY(-1px); }

  
  #hero {
    position: relative;
    height: 140vh;
    background: #000000;
    overflow: hidden;
  }

  
  #hero-sticky {
    position: relative;
    top: 0;
    height: 140vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 5rem 2rem 4rem;
  }
  
  

  .hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 20%, rgba(6,4,8,0.6) 60%, var(--bg-abyss) 100%);
  }

  .hero-bottom-fade {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 35%;
    background: linear-gradient(to top, var(--bg-abyss), transparent);
  }

  
  

  .eclipse {
    width: 100%;
    height: 100%;
    position: relative;
  }

  
  .eclipse-ring {
    position: absolute;
    inset: 6%;
    border-radius: 50%;
    box-shadow: 
      0 0 0 1px rgba(201,146,42,0.25),
      0 0 8px 2px rgba(232,144,28,0.2),
      0 0 24px 6px rgba(212,88,10,0.12),
      0 0 60px 12px rgba(180,60,10,0.08),
      inset 0 0 40px rgba(201,146,42,0.04);
    
  }

  

  @keyframes ring-pulse {
    0%, 100% {
      box-shadow: 0 0 0 1px rgba(201,146,42,0.5), 0 0 8px 2px rgba(232,144,28,0.4), 0 0 24px 6px rgba(212,88,10,0.25), 0 0 60px 12px rgba(180,60,10,0.15), inset 0 0 40px rgba(201,146,42,0.08);
      transform: scale(1);
    }
    50% {
      box-shadow: 0 0 0 1px rgba(201,146,42,0.7), 0 0 12px 4px rgba(232,144,28,0.55), 0 0 36px 10px rgba(212,88,10,0.35), 0 0 80px 18px rgba(180,60,10,0.2), inset 0 0 50px rgba(201,146,42,0.12);
      transform: scale(1.04);
    }
  }

  
  .hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    margin-top: min(-200px, -20vw); 
  }

  
  .hero-game-logo {
    display: block;
    width: min(653px, 64vw); 
    margin: 0 auto 0.6rem;
    opacity: 1;
    mix-blend-mode: screen;
  }

  

  .hero-eyebrow {
    font-family: var(--font-title); 
    font-size: 0.55rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 700;
    opacity: 1;
    text-shadow:
      0 0 8px rgba(255,255,255,0.6),
      0 0 20px rgba(255,255,255,0.3),
      0 0 40px rgba(255,255,255,0.1);
    
    position: absolute;
    top: 4rem;
    left: 0;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    z-index: 32;
  }
  .hero-eyebrow::before, .hero-eyebrow::after {
    content: '◆';
    margin: 0 1em;
    font-size: 0.5em;
    vertical-align: middle;
    opacity: 0.6;
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--gold-pale);
    text-shadow: 0 0 80px rgba(201,146,42,0.3), 0 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 0.02em;
    opacity: 0;
    animation: fade-up 1s ease forwards 0.6s;
  }

  .hero-title .title-colon {
    color: var(--amber);
    font-weight: 400;
  }

  .hero-subtitle {
    font-family: var(--font-mono);
    font-size: clamp(0.45rem, 0.90vw, 0.60rem); 
    letter-spacing: 0.15em;
    font-weight: 700;
    color: #ffffff;
    margin-top: 0.3rem;
    opacity: 1;
    text-shadow:
      0 0 12px rgba(0,0,0,0.85),
      0 0 24px rgba(0,0,0,0.75),
      0 2px 8px rgba(0,0,0,0.85),
      -2px 0 12px rgba(0,0,0,0.65),
      2px 0 12px rgba(0,0,0,0.65);
  }

  .hero-tagline {
    font-family: var(--font-body);
    font-style: italic;
    font-size: clamp(0.7rem, 1.4vw, 0.88rem);
    color: var(--text-muted);
    max-width: 420px;
    margin: 1.4rem auto 0;
    line-height: 1.7;
    text-align: center;
    opacity: 1;
  }

  @keyframes fade-up {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-scroll {
    position: relative; 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.4rem;
    z-index: 10;
    opacity: 1;
  }
  .hero-scroll span {
    font-family: var(--font-title);
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    text-shadow:
      0 0 8px rgba(201,146,42,0.9),
      0 0 20px rgba(201,146,42,0.5);
  }
  .scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scroll-bob 2s ease-in-out infinite;
    box-shadow: 0 0 6px 1px rgba(201,146,42,0.6);
  }
  @keyframes scroll-bob {
    0%, 100% { transform: scaleY(1); opacity: 0.6; }
    50% { transform: scaleY(1.2); opacity: 1; }
  }

  
  section {
    position: relative;
    z-index: 1;
  }

  .section-eyebrow {
    font-family: var(--font-title);
    font-size: 0.62rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }
  .section-eyebrow::before {
    content: '— ';
    opacity: 0.5;
  }
  .section-eyebrow::after {
    content: ' —';
    opacity: 0.5;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 400;
    color: var(--gold-pale);
    line-height: 1.15;
    margin-bottom: 1.5rem;
  }

  
  .ornament {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0;
    justify-content: center;
  }
  .ornament::before, .ornament::after {
    content: '';
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(to var(--dir, right), var(--gold), transparent);
    opacity: 0.3;
  }
  .ornament::after { --dir: left; }
  .ornament-symbol {
    font-size: 1rem;
    color: var(--gold);
    opacity: 0.5;
    letter-spacing: 0.5em;
  }

  
  #about {
    padding: 8rem 2rem;
    background: linear-gradient(to bottom, var(--bg-abyss), var(--bg-deep) 40%, var(--bg-mid) 100%);
  }

  .about-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .about-text .section-title { margin-bottom: 1.5rem; }
  .about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1.2rem;
  }
  .about-text p strong {
    color: var(--text);
    font-weight: 600;
  }

  .about-image-wrap {
    position: relative;
  }
  .about-image-wrap::before {
    content: '';
    position: absolute;
    inset: -12px;
    border: 1px solid rgba(201,146,42,0.15);
    pointer-events: none;
  }
  .about-image-wrap::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(201,146,42,0.08);
    pointer-events: none;
  }
  .about-image {
    width: 100%;
    display: block;
    filter: saturate(0.7) brightness(0.85);
    transition: filter 0.4s;
  }
  .about-image-wrap:hover .about-image {
    filter: saturate(0.9) brightness(0.95);
  }

  
  .corner-deco {
    position: absolute;
    width: 20px; height: 20px;
    border-color: var(--gold);
    border-style: solid;
    opacity: 0.4;
  }
  .corner-deco.tl { top: -4px; left: -4px; border-width: 2px 0 0 2px; }
  .corner-deco.tr { top: -4px; right: -4px; border-width: 2px 2px 0 0; }
  .corner-deco.bl { bottom: -4px; left: -4px; border-width: 0 0 2px 2px; }
  .corner-deco.br { bottom: -4px; right: -4px; border-width: 0 2px 2px 0; }

  
  #features {
    padding: 6rem 2rem 8rem;
    background: var(--bg-mid);
    position: relative;
    overflow: hidden;
  }

  .features-bg {
    position: absolute;
    inset: 0;
    background: url('assets/Bg Gameplay.png') center/cover no-repeat;
    filter: blur(6px);
    transform: scale(1.05); 
    opacity: 0.18;
    z-index: 0;
  }

  
  .features-header,
  .features-grid {
    position: relative;
    z-index: 1;
  }

  #features::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,146,42,0.3), transparent);
  }
  #features::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,146,42,0.3), transparent);
  }

  .features-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .features-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .feature-card {
    background: var(--bg-warm);
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, background 0.3s;
    cursor: default;
    display: flex;
    flex-direction: column;
  }
  .feature-card:hover {
    transform: translateY(-4px);
    background: #22121a;
  }

  
  .feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--accent-color, var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
  }
  .feature-card:hover::before { transform: scaleX(1); }

  .feature-card:nth-child(1) { --accent-color: var(--marigold); }
  .feature-card:nth-child(2) { --accent-color: var(--gold); }
  .feature-card:nth-child(3) { --accent-color: var(--jade); }

  
  .feature-preview {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    width: 100%;
  }
  .feature-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.72) saturate(0.65);
    transition: filter 0.4s, transform 0.5s;
    display: block;
  }
  .feature-card:hover .feature-preview img {
    filter: brightness(0.92) saturate(0.9);
    transform: scale(1.04);
  }

  
  .feature-text {
    padding: 2rem 2.2rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex: 1;
  }

  .feature-card h3 {
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-pale);
    transition: color 0.25s, text-shadow 0.25s;
    margin: 0;
  }
  
  .feature-card:hover h3 {
    color: #ffffff;
    text-shadow:
      0 0 8px rgba(232,184,75,0.7),
      0 0 20px rgba(201,146,42,0.45),
      0 0 40px rgba(212,88,10,0.25);
  }

  .feature-card p {
    font-size: 0.96rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
  }

  
  #gallery {
    padding: 8rem 2rem;
    background: linear-gradient(to bottom, var(--bg-mid), var(--bg-warm));
    position: relative;
    overflow: hidden;
  }

  .gallery-bg {
    position: absolute;
    inset: 0;
    background: url('assets/Bg Screenshots.png') center/cover no-repeat;
    filter: blur(6px);
    transform: scale(1.05);
    opacity: 0.18;
    z-index: 0;
  }

  .gallery-header {
    text-align: center;
    padding: 0 0 4rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .gallery-header,
  .gallery-grid,
  #gallery-lightbox {
    position: relative;
    z-index: 1;
  }

  
  .gallery-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 6px;
  }

  .gallery-thumb {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9;
    background: var(--bg-deep);
  }
  .gallery-thumb--wide {
    grid-column: span 2;
  }

  .gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.75) saturate(0.7);
    transition: filter 0.4s, transform 0.5s;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  .gallery-thumb:hover img {
    filter: brightness(0.96) saturate(1);
    transform: scale(1.04);
  }

  .gallery-thumb-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6,4,8,0);
    transition: background 0.3s;
    pointer-events: none;
  }
  .gallery-thumb-overlay span {
    font-size: 1.6rem;
    color: var(--gold-pale);
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.3s, transform 0.3s;
  }
  .gallery-thumb:hover .gallery-thumb-overlay { background: rgba(6,4,8,0.25); }
  .gallery-thumb:hover .gallery-thumb-overlay span { opacity: 1; transform: scale(1); }

  
  .gallery-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201,146,42,0);
    transition: border-color 0.3s;
    pointer-events: none;
  }
  .gallery-thumb:hover::after { border-color: rgba(201,146,42,0.4); }

  
  #gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  #gallery-lightbox.open {
    opacity: 1;
    pointer-events: all;
  }

  #lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 4, 8, 0.94);
    cursor: pointer;
  }

  #lightbox-img {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    display: block;
    box-shadow: 0 0 0 1px rgba(201,146,42,0.2), 0 24px 80px rgba(0,0,0,0.8);
    transform: scale(0.96);
    transition: transform 0.3s ease;
  }
  #gallery-lightbox.open #lightbox-img { transform: scale(1); }

  #lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.8rem;
    z-index: 2;
    background: rgba(6,4,8,0.7);
    border: 1px solid rgba(201,146,42,0.3);
    color: var(--gold-pale);
    font-size: 1.1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    clip-path: polygon(4px 0%,calc(100% - 4px) 0%,100% 4px,100% calc(100% - 4px),calc(100% - 4px) 100%,4px 100%,0% calc(100% - 4px),0% 4px);
    transition: background 0.2s, border-color 0.2s;
  }
  #lightbox-close:hover {
    background: rgba(30,16,22,0.95);
    border-color: rgba(201,146,42,0.7);
  }

  @media (max-width: 700px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-thumb--wide { grid-column: span 2; }
  }

  
  #lore {
    padding: 8rem 2rem;
    background: var(--bg-warm);
    position: relative;
    overflow: hidden;
  }

  .lore-bg-art {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    opacity: 0.04;
    pointer-events: none;
    filter: blur(1px);
  }

  
  .marigold-pattern {
    position: absolute;
    inset: 0;
    background-image: 
      radial-gradient(circle at 10% 20%, rgba(232,144,28,0.03) 0%, transparent 30%),
      radial-gradient(circle at 90% 80%, rgba(201,146,42,0.03) 0%, transparent 30%);
    pointer-events: none;
  }

  .lore-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  blockquote {
    font-family: var(--font-body);
    font-style: italic;
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 300;
    color: var(--text);
    line-height: 1.8;
    position: relative;
    padding: 2rem 3rem;
    margin: 2rem 0;
  }
  blockquote::before {
    content: '\201C';
    position: absolute;
    top: -0.2em;
    left: 0;
    font-family: var(--font-display);
    font-size: 4em;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
  }
  blockquote::after {
    content: '\201D';
    position: absolute;
    bottom: -0.6em;
    right: 0;
    font-family: var(--font-display);
    font-size: 4em;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
  }

  .lore-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    text-align: center;
  }
  .lore-stat {
    padding: 2rem 1.5rem;
    border: 1px solid rgba(201,146,42,0.1);
    background: rgba(13,8,16,0.5);
    position: relative;
  }
  .lore-stat::before {
    content: '';
    position: absolute;
    top: -1px; left: 20%; right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
  }
  .lore-stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
  }
  .lore-stat-label {
    font-family: var(--font-title);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-dim);
  }

  
  
  #characters {
    background: var(--bg-deep);
    overflow: hidden;
    position: relative;
    padding-bottom: 6rem;
  }

  #characters::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/Bg cast.png') center/cover no-repeat;
    filter: blur(6px);
    transform: scale(1.05);
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
  }

  
  .characters-header,
  .characters-teaser,
  .char-showcase {
    position: relative;
    z-index: 1;
  }

  .characters-header {
    text-align: center;
    padding: 3rem 2rem 1.5rem;
  }

  .characters-teaser {
    max-width: 580px;
    margin: 0 auto;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.85;
    text-align: center;
    padding: 0 2rem 2rem;
  }

  
  .char-showcase { position: relative; margin-top: 3rem; }

  .char-selector {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: transparent;
    z-index: 10;
  }

  .char-arrow {
    background: none;
    border: 1px solid rgba(201,146,42,0.25);
    color: var(--gold);
    font-size: 2rem;
    line-height: 1;
    width: 44px;
    height: 44px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .char-arrow:hover { background: rgba(201,146,42,0.1); border-color: var(--gold); }

  .char-portraits { display: flex; gap: 0.75rem; align-items: center; }

  .char-portrait {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: rgba(20,10,28,0.8);
    border: 2px solid rgba(201,146,42,0.15);
    border-radius: 4px;
    padding: 0.5rem 0.6rem 0.6rem;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
    width: 88px;
  }
  .char-portrait:hover { border-color: rgba(201,146,42,0.4); background: rgba(30,14,38,0.9); transform: translateY(-2px); }
  .char-portrait.active { border-color: var(--gold); background: rgba(40,20,50,0.9); box-shadow: 0 0 16px rgba(201,146,42,0.2); }

  .char-portrait-img {
    position: relative;
    width: 56px;
    height: 72px;
    overflow: hidden;
    border-radius: 2px;
    background: rgba(0,0,0,0.3);
  }
  .char-portrait-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(0.4);
    transition: filter 0.2s;
    z-index: 1;
  }
  .char-portrait.active .char-portrait-img img { filter: none; }

  .char-portrait-silhouette {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(201,146,42,0.35);
  }
  .char-portrait-silhouette svg { width: 70%; height: 70%; }

  .char-portrait span {
    font-family: var(--font-title);
    font-size: 0.45rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dim);
    text-align: center;
    line-height: 1.3;
  }
  .char-portrait.active span { color: var(--gold-pale); }

  .char-portrait--locked { opacity: 0.4; cursor: default; pointer-events: none; }
  .char-portrait-lock {
    width: 56px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background: rgba(0,0,0,0.3);
    border-radius: 2px;
  }

  
  .char-showcase { position: relative; }
  .char-panel { display: none; }
  .char-panel.active { display: grid; grid-template-columns: 45% 1fr; min-height: 560px; margin-top: -60px; }

  
  .char-bg-0 { background: #0e0604; }
  .char-bg-0 .char-info-col { background: linear-gradient(160deg, #140806 0%, #0a0404 100%); }

  .char-bg-1 { background: #04060e; }
  .char-bg-1 .char-art-col { background: linear-gradient(135deg, #061020 0%, #040814 100%); }
  .char-bg-1 .char-info-col { background: linear-gradient(160deg, #050c1c 0%, #030610 100%); }

  .char-bg-2 { background: #060e06; }
  .char-bg-2 .char-art-col { background: linear-gradient(135deg, #0c1e0a 0%, #08120a 100%); }
  .char-bg-2 .char-info-col { background: linear-gradient(160deg, #0a180a 0%, #060e06 100%); }

  .char-bg-3 { background: #0a0406; }

  
  .char-art-col { position: relative; overflow: visible; }

  .char-sketch-img {
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    height: 130%; width: auto;
    max-width: none;
    object-fit: contain;
    object-position: bottom center;
    pointer-events: none;
    transition: transform 0.6s ease;
  }
  .char-panel.active:hover .char-sketch-img { transform: translateX(-50%) scale(1.03); }

  
  .char-info-col {
    padding: 7rem 3.5rem 3rem 2.5rem; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
  }

  .char-info-eyebrow {
    font-family: var(--font-title);
    font-size: 0.58rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    margin-bottom: 0.6rem;
  }

  .char-display-name {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    color: var(--gold-pale);
    line-height: 1;
    margin-bottom: 0.4rem;
    font-weight: 700;
    text-shadow: 0 0 40px rgba(201,146,42,0.25);
  }

  .char-display-role {
    font-family: var(--font-title);
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 2rem;
  }

  .char-display-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.85;
    text-align: justify;
  }

  
  .char-panel--locked { position: relative; min-height: 560px; }
  .char-panel--locked::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(6,4,8,0.8); backdrop-filter: blur(4px); z-index: 10;
  }
  .char-panel--locked::before {
    content: '?'; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(5rem, 12vw, 10rem);
    color: var(--gold); opacity: 0.15; z-index: 11;
    text-shadow: 0 0 80px rgba(201,146,42,0.4);
  }

  
  @media (max-width: 860px) {
    .char-panel.active { grid-template-columns: 1fr; }
    .char-art-col { min-height: 300px; }
    .char-selector { position: relative; width: 100%; top: auto; }
    .char-info-col { padding: 2.5rem 1.5rem; }
    .char-portrait { width: 70px; }
    .char-portrait-img, .char-portrait-lock { width: 44px; height: 58px; }
  }

  
  #cta {
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-deep);
  }
  
  #cta .cta-artwork-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }
  #cta .cta-artwork-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.35;
    display: block;
  }

  #cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,146,42,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-inner { position: relative; z-index: 2; }
  
  .cta-inner::before {
    content: '';
    position: absolute;
    inset: -4rem -6rem;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 50%, transparent 75%);
    pointer-events: none;
    z-index: -1;
  }

  .cta-inner .section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
  }

  .cta-inner p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 3rem;
  }

  .cta-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }

  .cta-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
  }
  .social-link {
    font-family: var(--font-title);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5em;
  }
  .social-link:hover { color: var(--gold); }
  .social-dot {
    width: 3px; height: 3px;
    background: var(--pixel-border);
    border-radius: 50%;
  }

  
  footer {
    padding: 3rem 2rem;
    border-top: 1px solid rgba(201,146,42,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    background: #060408;
    position: relative;
    z-index: 10;
  }

  .footer-logo {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--gold);
    opacity: 0.6;
  }

  .footer-copy {
    font-family: var(--font-title);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: var(--text-dim);
    text-align: center;
  }

  .footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
  }
  .footer-links a {
    font-family: var(--font-title);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--gold); }

  
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }
  .reveal-delay-1 { transition-delay: 0.15s; }
  .reveal-delay-2 { transition-delay: 0.3s; }
  .reveal-delay-3 { transition-delay: 0.45s; }

  
  @media (max-width: 900px) {
    .about-inner {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
    .features-grid {
      grid-template-columns: 1fr;
    }
    .lore-details {
      grid-template-columns: 1fr;
    }
    nav .nav-links { display: none; }
  }
  @media (max-width: 600px) {
    .hero-ctas { flex-direction: column; align-items: center; }
    footer { flex-direction: column; text-align: center; }

    /* Hero parallax layers — show right side of each asset */
    #artFondo img     { width: 280% !important; left: -180% !important; transform: none !important; top: 0 !important; bottom: auto !important; }
    #artColumnas2 img { width: 280% !important; left: -180% !important; transform: none !important; top: 0 !important; bottom: auto !important; }
    #artColumnas img  { width: 220% !important; left: -110% !important; transform: none !important; top: 18% !important; bottom: auto !important; }
    #artEsculturas img { width: 300% !important; left: -180% !important; transform: none !important; top: 0 !important; bottom: auto !important; }

    /* Hero layout — anchor to top so content sits near eyebrow */
    #hero { height: 100vh; }
    #hero-sticky {
      justify-content: flex-start;
      padding-top: 4rem;
      height: 100vh;
    }
    .hero-content { margin-top: 0.5rem; }
    .hero-game-logo { width: min(720px, 75vw) !important; }

    /* Nav — shrink links to fit narrow bar */
    nav { padding: 0 1rem; }
    nav .nav-links {
      display: flex !important;
      gap: 0.6rem;
    }
    .nav-links a {
      font-size: 0.52rem;
      letter-spacing: 0.1em;
    }
    .nav-cta {
      font-size: 0.52rem;
      padding: 0.4em 0.7em;
      letter-spacing: 0.08em;
    }

    /* Bottom bar — prevent bleed on narrow screens */
    #bottom-bar {
      width: calc(100vw - 1.5rem);
      max-width: 100vw;
      padding-left: 20px;
      padding-right: 20px;
      background-size: 100% 105%;
      -webkit-mask-size: 100% 105%;
      mask-size: 100% 105%;
    }
    .bar-social-btn { padding: 0 0.8rem; }
    #music-player { padding: 0 0.8rem; }
    .music-info { display: none; }
    .bar-label-static { display: none; }

    /* Lang switcher — top-left corner, compact, dropdown opens down */
    #lang-switcher {
      top: 0;
      bottom: auto;
      right: auto;
      left: 0;
      height: 64px;
    }
    #lang-current {
      border-radius: 0 0 4px 0;
      border-top: none;
      border-left: none;
      border-bottom: 1px solid rgba(201,146,42,0.35);
      border-right: 1px solid rgba(201,146,42,0.35);
      padding: 0.4rem 0.7rem;
      gap: 0.3rem;
    }
    #lang-current-label { font-size: 0.55rem; }
    #lang-current svg { width: 6px; }
    #lang-dropdown {
      top: 100% !important;
      bottom: auto !important;
      right: auto;
      left: 0;
      border-radius: 0 4px 4px 4px !important;
      box-shadow: 0 4px 24px rgba(0,0,0,0.7) !important;
    }

    /* Characters — clip art so it doesn't overlap info column */
    .char-art-col { overflow: hidden; min-height: 260px; }
    .char-sketch-img {
      height: 100% !important;
      position: absolute;
      bottom: 0;
    }

    /* Tagline — pull up between hero and video */
    .esc2-tagline {
      top: -8rem;
      z-index: 20;
    }

    /* bg-esculturas2 — make bigger on mobile */
    #artEsculturas2-static img { width: 280% !important; }
    #artEsculturas2-static .esc2-mirror { width: 250% !important; }
  }

  .nav-logo img.nav-mogu-logo {
    height: 36px;
    width: auto;
    display: block;
    opacity: 0.9;
    filter: brightness(1.1);
    transition: opacity 0.2s;
  }
  .nav-logo:hover img.nav-mogu-logo { opacity: 1; }

  
  .eclipse-asset {
    position: absolute;
    top: -8%;
    left: -8%;
    width: 116%;
    height: 116%;
    object-fit: contain;
    opacity: 0.25;
    display: block;
  }

  
  #bottom-bar {
    position: fixed;
    bottom: 1.4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5000;
    height: 76px;  
    width: max-content;
    display: flex;
    align-items: stretch;
    justify-content: center;
    
    background-image: url('assets/MediarBar.png');
    background-size: auto 105%; 
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(6, 4, 8, 0.55);
    
    padding-left: 52px;
    padding-right: 52px;
    border: none;
    backdrop-filter: blur(14px) saturate(1.4);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);
    box-shadow: none;
    clip-path: none;
    user-select: none;
    
    -webkit-mask-image: url('assets/MediarBar.png');
    -webkit-mask-size: auto 105%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url('assets/MediarBar.png');
    mask-size: auto 105%;
    mask-repeat: no-repeat;
    mask-position: center;
  }

  
  #bottom-bar::before { display: none; }

  
  #music-player {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0 1.6rem;
    cursor: pointer;
    transition: opacity 0.2s;
    flex-shrink: 0;
    position: relative;
    background: transparent;
    border-right: 1px solid rgba(201,146,42,0.15);
    z-index: 1;
  }
  #music-player:hover { opacity: 0.85; }

  #music-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.15s;
    padding: 0;
  }
  #music-btn:hover { background: var(--gold-bright); transform: scale(1.08); }
  #music-btn svg { display: block; }

  .music-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
  }
  .music-label {
    font-family: var(--font-title);
    font-size: 0.48rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(201,146,42,0.7);
    line-height: 1;
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  }
  .music-title {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    color: var(--gold-bright);
    line-height: 1;
    white-space: nowrap;
    text-shadow: 0 1px 6px rgba(0,0,0,0.9);
  }

  
  .music-bars {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
    margin-left: 0.15rem;
    flex-shrink: 0;
  }
  .music-bars span {
    display: block;
    width: 2px;
    background: var(--gold);
    border-radius: 1px;
    opacity: 0.7;
    transform-origin: bottom;
  }
  .music-bars span:nth-child(1) { height: 40%; animation: bar-bounce 0.8s ease-in-out infinite 0.0s; }
  .music-bars span:nth-child(2) { height: 80%; animation: bar-bounce 0.8s ease-in-out infinite 0.15s; }
  .music-bars span:nth-child(3) { height: 60%; animation: bar-bounce 0.8s ease-in-out infinite 0.05s; }
  .music-bars span:nth-child(4) { height: 100%; animation: bar-bounce 0.8s ease-in-out infinite 0.2s; }
  .music-bars span:nth-child(5) { height: 50%; animation: bar-bounce 0.8s ease-in-out infinite 0.1s; }
  .music-bars.paused span { animation-play-state: paused; }

  @keyframes bar-bounce {
    0%, 100% { transform: scaleY(0.35); }
    50%       { transform: scaleY(1); }
  }

  #music-title-label {
    cursor: pointer;
    transition: color 0.15s;
  }
  #music-title-label:hover { color: var(--gold-bright); }

  #music-track-list {
    display: none;
    position: fixed;
    list-style: none;
    background: rgba(8, 4, 10, 0.92);
    border: 1px solid rgba(201,146,42,0.35);
    border-radius: 4px 4px 0 0;
    overflow: hidden;
    backdrop-filter: blur(14px) saturate(1.4);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);
    min-width: 210px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.7);
    z-index: 10000;
  }
  #music-track-list.open { display: block; }
  .music-track {
    padding: 0.65rem 1rem;
    cursor: pointer;
    color: var(--text-muted);
    font-family: var(--font-title);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: background 0.15s, color 0.15s;
    border-bottom: 1px solid rgba(201,146,42,0.06);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .music-track:last-child { border-bottom: none; }
  .music-track:hover { background: rgba(201,146,42,0.1); color: #fff; }
  .music-track.active { color: var(--gold-bright); background: rgba(201,146,42,0.07); }
  .music-track-icon {
    opacity: 0;
    flex-shrink: 0;
    margin-top: 0.05rem;
  }
  .music-track.active .music-track-icon { opacity: 1; }
  .music-track .track-sub {
    display: block;
    opacity: 0.6;
    font-size: 0.55rem;
    letter-spacing: 0.08em;
    margin-top: 0.1rem;
    font-weight: 400;
  }

  
  #bottom-bar-socials {
    display: flex;
    align-items: stretch;
    flex-shrink: 0;
  }

  .bar-social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 1.6rem;
    text-decoration: none;
    border-right: 1px solid rgba(201,146,42,0.08);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.25s;
  }
  .bar-social-btn:last-child { border-right: none; }
  .bar-social-btn[data-social="youtube"]:hover { background: rgba(255,0,0,0.35); }
  .bar-social-btn[data-social="discord"]:hover { background: rgba(114,137,218,0.35); }
  .bar-social-btn[data-social="steam"]:hover   { background: rgba(27,40,56,0.6); }

  
  .bar-social-btn svg {
    width: 28px;
    height: 28px;
    fill: var(--gold);
    opacity: 0.8;
    transition: opacity 0.25s, transform 0.25s, fill 0.25s;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
  }
  .bar-social-btn:hover svg { opacity: 1; fill: #fff; transform: translateY(-2px); }
  .bar-social-btn.btn-steam svg { fill: var(--gold-bright); }

  
  .bar-label-static {
    display: block;
    font-family: var(--font-title);
    font-size: 0.42rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-pale);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
  }
  .bar-social-label {
    position: relative;
    font-family: var(--font-title);
    font-size: 0.42rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-pale);
    background: none;
    border: none;
    padding: 0;
    white-space: nowrap;
    opacity: 1;
    pointer-events: none;
    z-index: 3;
    mix-blend-mode: normal;
    transition: color 0.25s, text-shadow 0.25s;
  }
  .bar-social-label.visible { opacity: 1; }
  .bar-social-btn:hover .bar-social-label {
    color: #fff;
    text-shadow: 0 0 8px rgba(0,0,0,0.8), 0 1px 3px rgba(0,0,0,0.9);
  }

  

  
  @media (max-width: 600px) {
    .bar-social-label { display: none; }
    .bar-social-btn { padding: 0 1rem; }
    #music-player { padding: 0 1rem; }
    .bar-center-title { font-size: 0.48rem; letter-spacing: 0.22em; }
  }

  
  

  
  .cloud-layer {
    position: absolute;
    top: -50vh;               
    left: 0; right: 0;
    height: 500vh;            
    pointer-events: none;
    will-change: transform;
  }
  .cloud-layer-bg  { z-index: 0; }
  .cloud-layer-mid { z-index: 3; }
  .cloud-layer-fg  { z-index: 12; }

  .cloud {
    position: absolute;
    border-radius: 50%;
    opacity: 1;
  }

  .cloud-fg-3 {
    width: 80vw; height: 22vw;
    background: radial-gradient(ellipse, rgba(6,3,10,0.96) 0%, rgba(4,2,8,0.75) 45%, transparent 72%);
    bottom: -4%; left: 10%;
    filter: blur(22px);
  }
  

  
  .eclipse-asset-glow {
    position: absolute;
    top: -8%;
    left: -8%;
    width: 116%;
    height: 116%;
    object-fit: contain;
    display: block;
    opacity: 0;
    mix-blend-mode: color-dodge;
    filter: saturate(2.2) brightness(1.8) hue-rotate(-10deg);
    pointer-events: none;
  }

  

  
  #eclipse-curtain {
    position: fixed; inset: 0;
    pointer-events: none; z-index: 9999;
    background: #000;
    clip-path: circle(0% at 50% 50%);
    transition: clip-path 0.55s cubic-bezier(0.7, 0, 0.3, 1);
  }
  #eclipse-curtain.eclipse-in {
    clip-path: circle(150% at 50% 50%);
    pointer-events: all;
  }
  #eclipse-curtain.eclipse-out {
    clip-path: circle(0% at 50% 50%);
    pointer-events: none;
  }
  #eclipse-curtain::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 0; height: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 0px rgba(201,146,42,0);
    transition: width 0.3s ease 0.2s, height 0.3s ease 0.2s, box-shadow 0.3s ease 0.2s;
    pointer-events: none;
  }
  #eclipse-curtain.eclipse-in::after {
    width: 120px; height: 120px;
    box-shadow: 0 0 0 2px rgba(201,146,42,0.6), 0 0 30px 8px rgba(201,146,42,0.2), 0 0 80px 20px rgba(180,60,10,0.1);
  }

  
  .nav-links a.nav-active { color: var(--gold-pale) !important; }

  
  .sub-page { min-height: 100vh; }
  .sp-hero {
    position: relative; min-height: 65vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    overflow: hidden; padding: 8rem 2rem 5rem; text-align: center;
  }
  .sp-hero-sm { min-height: 45vh; padding: 8rem 2rem 4rem; }
  .sp-hero::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, rgba(201,146,42,0.4), transparent);
  }
  .sp-hero-content { position: relative; z-index: 2; }
  .sp-hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 400;
    color: var(--gold-pale); line-height: 1.1; margin: 0.5rem 0 1rem;
    text-shadow: 0 0 60px rgba(201,146,42,0.25);
  }
  .sp-hero-sub { font-size: 1rem; color: var(--text-muted); margin-top: 0.5rem; }
  .sp-hero-scroll {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    z-index: 3; opacity: 0.5;
  }
  .sp-hero-scroll span { font-family: var(--font-title); font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-dim); }

  
  .sp-section { padding: 6rem 2rem; }
  .sp-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  }
  .sp-grid-text p { color: var(--text-muted); line-height: 1.9; margin-bottom: 1.2rem; font-size: 1rem; }
  .sp-grid-image { position: relative; }
  .sp-grid-image img { width: 100%; display: block; filter: brightness(0.85) saturate(0.75); transition: filter 0.4s; }
  .sp-grid-image:hover img { filter: brightness(0.95) saturate(0.9); }

  .sp-story-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 5rem 2rem 3rem;
    text-align: left;
  }
  .sp-story-inner p { color: var(--text-muted); line-height: 1.9; margin-bottom: 1.2rem; font-size: 1rem; }
  .sp-story-inner .section-title { margin-bottom: 2rem; }
  .sp-story-image { position: relative; max-width: 900px; margin: 0 auto; padding: 0 2rem 5rem; }
  .sp-story-image img { width: 100%; display: block; filter: brightness(0.85) saturate(0.75); transition: filter 0.4s; }
  .sp-story-image:hover img { filter: brightness(0.95) saturate(0.9); }

  .sp-story-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .sp-story-grid .sp-story-image { padding: 0; margin: 0; max-width: none; }
  .sp-story-grid .sp-story-inner { padding: 0; margin: 0; max-width: none; }

  .media-recognition-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 5rem;
    align-items: start;
  }
  .media-presskit {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1rem;
  }

  .presskit-row {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
  }

  .press-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
  }
  .press-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 1.2rem 1.8rem;
    border: 1px solid rgba(201,146,42,0.25);
    color: var(--text-muted);
    font-family: var(--font-title);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    background: rgba(255,255,255,0.02);
    transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
    min-width: 100px;
  }
  .press-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,146,42,0.06);
    transform: translateY(-2px);
  }
  .press-btn-logo {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: var(--font-body);
    background: rgba(255,255,255,0.08);
    color: #fff;
    letter-spacing: 0;
    text-transform: none;
    flex-shrink: 0;
  }
  .press-btn-name { letter-spacing: 0.18em; }

  
  .sp-feat-strip { display: grid; grid-template-columns: repeat(3,1fr); max-width: 1100px; margin: 0 auto; gap: 2px; }
  .sp-feat {
    padding: 2.5rem 2rem; background: var(--bg-warm);
    border-top: 2px solid transparent;
    transition: border-color 0.3s, background 0.3s, transform 0.3s; cursor: default;
  }
  .sp-feat:hover { border-color: var(--gold); background: #1e1018; transform: translateY(-3px); }
  .sp-feat-icon { font-size: 1.4rem; color: var(--gold); opacity: 0.5; margin-bottom: 1rem; display: block; transition: opacity 0.3s; }
  .sp-feat:hover .sp-feat-icon { opacity: 1; }
  .sp-feat h3 { font-family: var(--font-title); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-pale); margin-bottom: 0.7rem; }
  .sp-feat p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; margin: 0; }

  
  .sp-video-wrap {
    max-width: 860px; margin: 0 auto;
    position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
    border: 1px solid rgba(201,146,42,0.2);
  }
  .sp-video-wrap iframe { position: absolute; top:0; left:0; width:100%; height:100%; }

  
  .sp-press-grid { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; max-width: 700px; margin: 0 auto; }
  .sp-press-card {
    display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
    padding: 2rem 1.8rem; width: 180px;
    background: var(--bg-warm); border: 1px solid rgba(201,146,42,0.12);
    text-decoration: none; color: var(--gold);
    clip-path: polygon(6px 0%,calc(100% - 6px) 0%,100% 6px,100% calc(100% - 6px),calc(100% - 6px) 100%,6px 100%,0% calc(100% - 6px),0% 6px);
    transition: border-color 0.3s, transform 0.25s, background 0.3s;
  }
  .sp-press-card:hover { border-color: rgba(201,146,42,0.5); transform: translateY(-4px); background: #22121a; }
  .sp-press-label { font-family: var(--font-title); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-pale); }
  .sp-press-sub { font-size: 0.75rem; color: var(--text-dim); }

  
  .sp-faq-body { padding: 5rem 2rem 8rem; }
  .sp-faq-inner { max-width: 760px; margin: 0 auto; }
  .faq-group { margin-bottom: 3rem; }
  .faq-group-header { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.2rem; padding-bottom: 0.8rem; border-bottom: 1px solid rgba(201,146,42,0.15); }
  .faq-group-icon { font-size: 1rem; color: var(--gold); }
  .faq-group-title { font-family: var(--font-title); font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin: 0; }
  .faq-item { border-bottom: 1px solid rgba(255,255,255,0.04); }
  .faq-q {
    width: 100%; text-align: left; background: none; border: none;
    padding: 1.1rem 0; font-family: var(--font-body); font-size: 1rem;
    color: var(--text); cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    transition: color 0.2s;
  }
  .faq-q:hover { color: var(--gold-pale); }
  .faq-q::after { content: "+"; font-family: var(--font-title); font-size: 1.1rem; color: var(--gold); opacity: 0.5; flex-shrink: 0; transition: transform 0.3s, opacity 0.2s; }
  .faq-q.open::after { transform: rotate(45deg); opacity: 1; }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1); }
  .faq-a.open { max-height: 400px; }
  .faq-a p { padding: 0 0 1.5rem; color: var(--text-muted); font-size: 0.95rem; line-height: 1.85; margin: 0; }

  
  @media (max-width: 900px) {
    .sp-grid { grid-template-columns: 1fr; gap: 3rem; }
    .sp-feat-strip { grid-template-columns: 1fr 1fr; }
    .sp-press-grid { flex-direction: column; align-items: center; }
  }
  @media (max-width: 600px) {
    .sp-feat-strip { grid-template-columns: 1fr; }
  }
  
  .cta-newsletter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
  }
  .newsletter-form {
    display: flex;
    width: 100%;
    max-width: 460px;
    border: 1px solid rgba(201,146,42,0.35);
    border-radius: 2px;
    overflow: hidden;
  }
  .newsletter-input {
    flex: 1;
    background: rgba(6,4,8,0.6);
    border: none;
    outline: none;
    padding: 0.85em 1.2em;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.88rem;
  }
  .newsletter-input::placeholder { color: var(--text-dim); }
  .newsletter-btn {
    background: var(--gold);
    color: #060408;
    border: none;
    padding: 0.85em 1.6em;
    font-family: var(--font-title);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
  }
  .newsletter-btn:hover { background: var(--gold-bright); }
  .newsletter-note {
    font-size: 0.50rem; 
    color: var(--text-dim);
    letter-spacing: 0.08em;
  }

  
  

  
  
  .sprite-card {
    width: 224px;
    height: 224px;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
  }

  
  .sprite-card::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-bright) 0%, var(--gold) 40%, var(--amber) 70%, transparent 100%);
    filter: blur(6px);
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
    animation: eclipse-orbit 2800ms linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
    pointer-events: none;
  }
  .sprite-card:hover::before { opacity: 1; }
  @keyframes eclipse-orbit {
    0%   { transform: rotate(0deg)   translate(118px) rotate(0deg); }
    100% { transform: rotate(360deg) translate(118px) rotate(-360deg); }
  }
  
  .sprite-card::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--eclipse-glow) 0%, var(--amber) 50%, transparent 100%);
    filter: blur(4px);
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
    animation: eclipse-orbit 2800ms linear infinite;
    animation-delay: -1400ms;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
    pointer-events: none;
  }
  .sprite-card:hover::after { opacity: 0.6; }
  @keyframes sprite-spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  
  .sprite-card-content {
    position: absolute;
    inset: 1px;
    border-radius: 4px;
    overflow: hidden;
    clip-path: polygon(5px 0%, calc(100% - 5px) 0%, 100% 5px, 100% calc(100% - 5px), calc(100% - 5px) 100%, 5px 100%, 0% calc(100% - 5px), 0% 5px);
    background: #06030c;
    border: 1px solid rgba(201,146,42,0.25);
    box-shadow: 0 0 10px 1px #000000ee;
    z-index: 1;
  }

  
  .sprite-card-front {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sprite-card-front .char-sprite-img {
    width: 100%; height: 100%;
    object-fit: contain;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    padding: 12px;
  }

  
  .sprite-card-back {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
  }
  .sprite-back-content {
    width: 100%;
    padding: 0.65rem 0.8rem 0.75rem;
    background: linear-gradient(to top, rgba(6,3,12,0.97) 60%, rgba(6,3,12,0.6) 85%, transparent);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .sprite-card:hover .sprite-back-content {
    transform: translateY(0);
    opacity: 1;
  }
  .sprite-back-name {
    font-family: var(--font-title);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-pale);
  }
  .sprite-back-role {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    color: var(--amber);
  }
  .sprite-back-hint {
    font-size: 0.55rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    line-height: 1.5;
    margin-top: 0.1rem;
  }
  .sprite-card-back-glow { display: none; }

  
  .about-video-wrap {
    position: relative;
    flex: 1;
    min-width: 300px;
    max-width: 560px;
    z-index: 3; 
  }
  .about-video-inner {
    position: relative;
    padding-top: 56.25%; 
    border: 1px solid rgba(201,146,42,0.25);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  }
  .about-video-inner iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
  }

  
  .presskit-art-placeholder {
    width: 100%;
    max-width: 800px;
    margin: 2.5rem auto;
    height: 320px;
    background: var(--bg-deep);
    border: 1px dashed rgba(201,146,42,0.2);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .presskit-art-placeholder span {
    font-family: var(--font-title);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-dim);
    opacity: 0.5;
  }
  .presskit-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.4em 4em;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-title);
    font-size: 1rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
  }
  .presskit-download-btn svg { width: 22px; height: 22px; position: relative; z-index: 1; }
  .presskit-download-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 0;
  }
  .presskit-download-btn:hover::before { transform: scaleX(1); }
  .presskit-download-btn:hover { color: #060408; box-shadow: 0 0 30px rgba(201,146,42,0.3); }
  .presskit-download-btn svg, .presskit-download-btn span { position: relative; z-index: 1; }
  .presskit-note {
    margin-top: 1rem;
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
  }

  
  .accolades-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
  }
  .accolades-grid .accolade-item:nth-child(4) { grid-column: 1 / 2; margin-left: auto; width: 100%; }
  .accolades-grid .accolade-item:nth-child(5) { grid-column: 2 / 3; }
  .accolade-item {
    aspect-ratio: 3/2;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .accolade-item img { width: 100%; height: 100%; object-fit: contain; padding: 0.75rem; filter: brightness(0) invert(1); opacity: 0.85; transition: opacity 0.2s; }
  .accolade-item:hover img { opacity: 1; }
  @media (max-width: 600px) {
    .accolades-grid { grid-template-columns: repeat(2, 1fr); }
    .presskit-art-placeholder { height: 200px; }
  }

  
  .art-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    will-change: transform;
    
  }
  .art-layer img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
  }

  
  #artFondo      { z-index: 0; }
  #artColumnas2  { z-index: 1; }
  #artColumnas   { z-index: 3; }
  #artEsculturas { z-index: 9; } 
  

  
  #artFondo img {
    opacity: 1;
    width: 102%;
    top: 0;
    bottom: auto;
  }

  
  #artColumnas2 img {
    width: 102%;
    top: 0;
    bottom: auto;
  }

  
  #artColumnas img {
    width: 102%;
    top: 0;
    bottom: auto;
  }

  
  #artEsculturas img {
    width: 105%;
    top: 0;
    bottom: auto;
  }

  

  
  #artEsculturas2-static {
    position: relative;
    width: 100%;
    margin-top: 1rem;
    pointer-events: none;
    z-index: 8;
    overflow: hidden;
    text-align: center;
  }
  
  .esc2-video-wrap {
    position: absolute;
    top: 28%;             
    left: 50%;
    transform: translateX(-50%);
    width: min(756px, 85%); 
    z-index: 9;
    pointer-events: all;
  }
  .esc2-video-inner {
    position: relative;
    padding-top: 56.25%; 
    border: 1px solid rgba(201,146,42,0.25);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.7);
    cursor: pointer;      
  }
  .esc2-video-inner iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
  }
  
  .esc2-video-preview {
    position: absolute;
    inset: 0;
    z-index: 2;
    cursor: pointer;
    background: #000;
  }
  .esc2-video-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    object-position: center;
    display: block;
    background: #000;
    opacity: 0.9;
    transition: opacity 0.3s;
  }
  .esc2-video-preview:hover img { opacity: 1; }
  .esc2-video-preview .play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 64px; height: 64px;
    background: rgba(201,146,42,0.85);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, transform 0.2s;
  }
  .esc2-video-preview:hover .play-btn {
    background: var(--gold);
    transform: translate(-50%, -50%) scale(1.1);
  }
  .esc2-video-preview .play-btn svg {
    width: 28px; height: 28px;
    fill: #060408;
    margin-left: 4px; 
  }
  .esc2-video-preview.hidden { display: none; }

  
  .esc2-tagline {
    position: absolute;
    top: 18%;             
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    text-align: center;
    pointer-events: none;
    width: 90%;
    max-width: 600px;
  }
  .esc2-tagline p {
    font-family: var(--font-title);
    font-style: italic;
    font-size: clamp(0.84rem, 1.68vw, 1.06rem); 
    color: var(--text-muted);
    line-height: 1.7;
    text-align: center;
    text-shadow: 0 0 16px rgba(0,0,0,1), 0 2px 8px rgba(0,0,0,0.9);
  }
  #artEsculturas2-static img {
    width: 187%;
    max-width: none;
    display: block;
    margin: 0 auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  

  
  #artEsculturas2-static {
    position: relative;
  }
  #artEsculturas2-static .esc2-mirror {
    width: 168%;
    max-width: none;
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%) scaleY(-1);
    opacity: 1;
    filter: url(#heat-wave);
    pointer-events: none;
    z-index: 2;
  }

  
  .eclipse-curtain-inner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(340px, 45vw);
    height: min(340px, 45vw);
    opacity: 0;
    transition: opacity 0.25s ease 0.15s;
    pointer-events: none;
    z-index: 10000;
  }
  .eclipse-curtain-inner.eclipse-in {
    opacity: 1;
  }
  .eclipse-curtain-inner .eclipse-ring {
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    animation: ring-pulse 3s ease-in-out infinite;
    box-shadow:
      0 0 0 1px rgba(201,146,42,0.4),
      0 0 12px 4px rgba(232,144,28,0.3),
      0 0 40px 10px rgba(212,88,10,0.2),
      0 0 80px 20px rgba(180,60,10,0.12);
  }
  .eclipse-curtain-inner .eclipse-asset {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 1 !important;
    object-fit: contain;
    display: block;
    animation: ring-pulse-asset 3s ease-in-out infinite;
  }

  @keyframes ring-pulse-asset {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.04); }
  }

  

  
  .hero-content { z-index: 30; }
  .hero-scroll  { z-index: 30; }

  

  
  img.mirrored { transform: scaleX(-1); }

  
  .hero-cloud {
    position: fixed;       
    pointer-events: none;
    opacity: 0.88;
    
  }
  .hero-cloud img {
    display: block;
    height: auto;
    filter: url(#heat-wave);
  }

  
  .hc-left  { left: -8vw; }
  .hc-right { right: -8vw; }

  
  
  .hc-1 {
    bottom: 8vh;
    width: 36vw;
    z-index: 4;
    animation: cloud-drift-left 18s ease-in-out infinite alternate;
  }
  
  .hc-2 {
    bottom: 12vh;
    width: 30vw;
    z-index: 6;
    animation: cloud-drift-right 22s ease-in-out infinite alternate;
  }
  
  .hc-3 {
    top: 30vh;
    width: 22vw;
    z-index: 2;
    opacity: 0.55;
    animation: cloud-drift-left 28s ease-in-out infinite alternate;
    animation-delay: -8s;
  }
  
  .hc-4 {
    top: 22vh;
    width: 28vw;
    z-index: 6;
    opacity: 0.45;
    animation: cloud-drift-right 24s ease-in-out infinite alternate;
    animation-delay: -12s;
  }

  @keyframes cloud-drift-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-4vw); }
  }
  @keyframes cloud-drift-right {
    0%   { transform: translateX(0); }
    100% { transform: translateX(4vw); }
  }

  
  .section-with-clouds { position: relative; overflow: hidden; }

  .section-cloud {
    position: absolute;
    pointer-events: none;
    opacity: 0.7;
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
                opacity   1.2s ease;
    z-index: 2;
  }
  .section-cloud img {
    display: block;
    height: auto;
    filter: url(#heat-wave);
  }

  
  .cloud-slide-left  { transform: translateX(-120%); }
  .cloud-slide-right { transform: translateX(120%); }

  
  .cloud-slide-left.cloud-visible  { transform: translateX(0); opacity: 0.7; }
  .cloud-slide-right.cloud-visible { transform: translateX(0); opacity: 0.7; }

  
  .sc-story-1 {
    left: -6vw;
    bottom: 10%;
    width: 38vw;
    transition-delay: 0s;
  }
  .sc-story-2 {
    right: -6vw;
    top: 15%;
    width: 32vw;
    transition-delay: 0.2s;
  }

  
  .sc-cta-1 {
    left: -8vw;
    bottom: 5%;
    width: 45vw;
    transition-delay: 0s;
  }
  .sc-cta-2 {
    right: -8vw;
    top: 8%;
    width: 42vw;
    transition-delay: 0.15s;
  }
  .sc-cta-3 {
    left: -6vw;
    top: 20%;
    width: 28vw;
    opacity: 0.45;
    transition-delay: 0.3s;
  }
  .sc-cta-4 {
    right: -6vw;
    bottom: 25%;
    width: 30vw;
    opacity: 0.4;
    transition-delay: 0.45s;
  }

  
  @media (max-width: 768px) {
    .hero-cloud { display: none; }
    .section-cloud { width: 60vw !important; opacity: 0.5; }
  }

  
  @font-face {
    font-family: var(--font-title);
    src: url('assets/GlacialIndifference-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: var(--font-title);
    src: url('assets/GlacialIndifference-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: var(--font-title);
    src: url('assets/GlacialIndifference-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
  }

  
  .about-art {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about-art-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 8px 32px rgba(0,0,0,0.7));
  }

  
  .about-text  { order: 1; }
  .about-art   { order: 2; }

  
  .hero-game-logo,
  .hero-subtitle,
  .hero-scroll,
  .hero-tagline {
    opacity: 0;
    filter: blur(18px);
    transition: opacity 1.1s ease, filter 1.1s ease;
  }
  .hero-eyebrow {
    opacity: 0;
    filter: blur(18px);
    
    transition: opacity 1.1s ease, filter 1.1s ease;
  }

  
  

  
  

  
  #lang-switcher {
    position: fixed;
    bottom: 0;
    right: calc(var(--bar-socials-width, 220px) + 0.5rem);
    height: var(--bottom-bar-height, 56px);
    z-index: 9999;
    display: flex;
    align-items: center;
  }

  #lang-current {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(8, 4, 10, 0.92);
    border: 1px solid rgba(201, 146, 42, 0.35);
    border-bottom: none;
    color: var(--gold);
    padding: 0.5rem 0.9rem;
    border-radius: 4px 4px 0 0;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: border-color 0.2s, background 0.2s;
    font-family: var(--font-title);
    font-weight: 700;
    letter-spacing: 0.12em;
    height: 100%;
  }
  #lang-flag { display: flex; align-items: center; line-height: 1; }
  .lang-flag-svg { display: flex; align-items: center; line-height: 1; }
  #lang-current-label { font-size: 0.62rem; letter-spacing: 0.15em; }
  #lang-current svg { opacity: 0.7; transition: transform 0.2s; flex-shrink: 0; }
  #lang-switcher.open #lang-current svg { transform: rotate(180deg); }
  #lang-current:hover,
  #lang-switcher.open #lang-current {
    border-color: rgba(201,146,42,0.7);
    background: rgba(201,146,42,0.1);
  }

  #lang-dropdown {
    display: none;
    position: absolute;
    bottom: 100%;
    right: 0;
    list-style: none;
    background: rgba(8, 4, 10, 0.97);
    border: 1px solid rgba(201,146,42,0.35);
    border-radius: 4px 4px 0 0;
    overflow: hidden;
    backdrop-filter: blur(16px);
    min-width: 80px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.7);
    z-index: 10000;
  }
  #lang-switcher.open #lang-dropdown { display: block; }
  #lang-dropdown li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    cursor: pointer;
    color: var(--text-muted);
    font-family: var(--font-title);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
    border-bottom: 1px solid rgba(201,146,42,0.06);
  }
  #lang-dropdown li:last-child { border-bottom: none; }
  #lang-dropdown li strong { color: var(--gold); font-weight: 700; letter-spacing: 0.15em; }
  #lang-dropdown li span {
    font-family: var(--font-body);
    font-size: 0.62rem;
    letter-spacing: 0.03em;
    color: var(--text-dim);
    font-weight: 400;
  }
  #lang-dropdown li:hover { background: rgba(201,146,42,0.1); color: #fff; }
  #lang-dropdown li:hover span { color: var(--text-muted); }
  #lang-dropdown li.active { background: rgba(201,146,42,0.07); }
  #lang-dropdown li.active strong { color: var(--gold-bright); }

  /* ═══════════════════════════════════════════════

  /* ═══════════════════════════════════════
     MEDIA PAGE — Redesign
  ═══════════════════════════════════════ */

  #page-media {
    position: relative;
    background: #060408;
  }
  #page-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/ArtworkBg.png') center/cover no-repeat;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
  }
  #page-media > * { position: relative; z-index: 1; }

  .mp-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 0 8rem 6rem;
  }
  .mp-hero-bg {
    position: absolute;
    inset: 0;
  }
  .mp-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    filter: saturate(0.7) brightness(0.75);
  }
  .mp-hero-vignette {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to right, rgba(6,4,8,0.75) 20%, rgba(6,4,8,0.1) 100%),
      linear-gradient(to top, rgba(6,4,8,0.85) 0%, transparent 60%);
  }
  .mp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
  }
  .mp-hero-label {
    font-family: var(--font-title);
    font-size: 0.58rem;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.75;
    margin-bottom: 1.2rem;
    display: block;
  }
  .mp-hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 7vw, 6.5rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 2.5rem;
    letter-spacing: 0.02em;
  }
  .mp-hero-rule {
    width: 56px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
  }

  .mp-section {
    padding: 8rem 8rem;
    background: rgba(6,4,8,0.3);
  }
  @media (max-width: 1100px) {
    .mp-hero { padding: 0 3rem 5rem; }
    .mp-section { padding: 6rem 3rem; }
  }
  @media (max-width: 700px) {
    .mp-hero { padding: 0 1.5rem 4rem; }
    .mp-section { padding: 5rem 1.5rem; }
  }

  .mp-eyebrow {
    font-family: var(--font-title);
    font-size: 0.58rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.75;
    display: block;
    margin-bottom: 1.2rem;
  }
  .mp-heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    color: var(--gold-pale);
    line-height: 1.2;
    margin-bottom: 2.5rem;
    letter-spacing: 0.02em;
  }

  /* Story — pull quote left, body right */
  .mp-story-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 7rem;
    align-items: start;
  }
  .mp-story-left {
    position: sticky;
    top: 4rem;
  }
  .mp-pull-quote {
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 300;
    font-style: italic;
    color: var(--gold-pale);
    line-height: 1.55;
    margin-bottom: 3rem;
    opacity: 0.85;
    border-left: 2px solid rgba(201,146,42,0.4);
    padding-left: 1.5rem;
  }
  .mp-story-image img {
    width: 100%;
    display: block;
    filter: brightness(0.85) saturate(0.75);
    transition: filter 0.4s;
    margin-top: 2rem;
  }
  .mp-story-image:hover img { filter: brightness(0.95) saturate(0.95); }
  .mp-story-right p {
    color: var(--text-muted);
    line-height: 1.95;
    font-size: 1rem;
    margin-bottom: 1.4rem;
  }
  .mp-story-right strong { color: #ddd5c8; }
  .mp-kicker {
    font-family: var(--font-title);
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 2.5rem;
    display: block;
  }

  /* Awards + Presskit — same dark section, side by side */
  .mp-recognition-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    align-items: start;
    padding-top: 1rem;
  }
  .mp-accolades-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 2rem;
    margin-top: 1rem;
  }
  .mp-accolade-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    padding: 0.5rem;
  }
  .mp-accolade-item:nth-child(4) { grid-column: 1/2; }
  .mp-accolade-item:nth-child(5) { grid-column: 2/3; }
  .mp-accolade-item img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: opacity 0.2s;
  }
  .mp-accolade-item:hover img { opacity: 1; }

  .mp-presskit-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 3rem;
  }
  .mp-presskit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.15em 3.2em;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-title);
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    text-decoration: none;
    background: transparent;
    position: relative;
    overflow: hidden;
    transition: color 0.3s;
  }
  .mp-presskit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 0;
  }
  .mp-presskit-btn:hover::before { transform: scaleX(1); }
  .mp-presskit-btn:hover { color: #0a0608; }
  .mp-presskit-btn svg { position: relative; z-index: 1; }
  .mp-presskit-btn-text { position: relative; z-index: 1; }

  /* Press coverage — dark cards with accent stripe */
  .mp-press-wrap {
    max-width: 900px;
    margin: 0 auto;
  }
  .mp-press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.2rem;
    margin-top: 1rem;
  }
  .mp-press-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.4rem 1.6rem;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    border-left: 3px solid;
    text-decoration: none;
    color: var(--text-muted);
    transition: background 0.2s, color 0.2s, transform 0.2s;
  }
  .mp-press-card:hover {
    background: rgba(255,255,255,0.055);
    color: #fff;
    transform: translateY(-2px);
  }
  .mp-press-logo {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
  }
  .mp-press-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .mp-press-logo span {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0;
  }
  .mp-press-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
  }
  .mp-press-outlet {
    font-family: var(--font-title);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: inherit;
  }
  .mp-press-region {
    font-family: var(--font-body);
    font-size: 0.68rem;
    color: var(--text-dim);
  }
  .mp-press-arrow {
    opacity: 0.25;
    transition: opacity 0.2s, transform 0.2s;
    flex-shrink: 0;
    color: var(--gold);
  }
  .mp-press-card:hover .mp-press-arrow {
    opacity: 1;
    transform: translateX(3px);
  }

  @media (max-width: 900px) {
    .mp-story-grid { grid-template-columns: 1fr; gap: 3rem; }
    .mp-story-left { position: static; }
    .mp-recognition-wrap { grid-template-columns: 1fr; gap: 4rem; }
    .mp-accolades-grid { grid-template-columns: repeat(2,1fr); }
    .mp-accolade-item:nth-child(4),
    .mp-accolade-item:nth-child(5) { grid-column: auto; }
    .mp-press-grid { grid-template-columns: 1fr; }
  }

  /* FAQs page — media style */
  #page-faqs {
    position: relative;
    background: #060408;
  }
  #page-faqs::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/ArtworkBg.png') center/cover no-repeat;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
  }
  #page-faqs > * { position: relative; z-index: 1; }

  .faq-mp-section {
    padding-top: 6rem;
    padding-bottom: 8rem;
  }
  .faq-mp-inner {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }
  .faq-mp-group {}
  .faq-mp-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201,146,42,0.2);
  }
  .faq-mp-header .mp-eyebrow {
    margin-bottom: 0;
    opacity: 1;
  }
  .faq-item { border-bottom: 1px solid rgba(255,255,255,0.05); }
  .faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.3rem 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    text-align: left;
    letter-spacing: 0;
    transition: color 0.2s;
  }
  .faq-q:hover { color: var(--gold-pale); }
  .faq-q::after {
    content: "+";
    font-family: var(--font-title);
    font-size: 1.1rem;
    color: var(--gold);
    opacity: 0.5;
    flex-shrink: 0;
    transition: transform 0.3s, opacity 0.2s;
  }
  .faq-q.open::after { transform: rotate(45deg); opacity: 1; }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1); }
  .faq-a.open { max-height: 400px; }
  .faq-a p { padding: 0 0 1.5rem; color: var(--text-muted); font-size: 0.98rem; line-height: 1.9; margin: 0; }


  /* ── Reduced motion ── */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1 !important; transform: none !important; }
    .cloud-slide-left, .cloud-slide-right { opacity: 1 !important; transform: none !important; }
    .hero-eyebrow, .hero-game-logo, .hero-subtitle { opacity: 1 !important; filter: none !important; }
    .eclipse-curtain, .eclipse-curtain-inner { transition: none !important; }
  }
