  :root {
    --black: #080808;
    --dark: #0e0e0e;
    --panel: #111111;
    --orange: #FF6B1A;
    --orange-dim: #c4500f;
    --yellow: #C8B400;
    --red: #8B0000;
    --red-bright: #CC2200;
    --green: #00FF41;
    --green-dim: #00aa2a;
    --white: #e8e8e0;
    --grey: #444;
    --grey-light: #888;
    --scanline-opacity: 0.18;
    --nav-height: 56px;
    --ticker-height: 32px;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Share Tech Mono', monospace;
    overflow-x: hidden;
    cursor: crosshair;
  }

  /* ══ CRT GLOBAL OVERLAY ══ */
  body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0,0,0,var(--scanline-opacity)) 2px,
      rgba(0,0,0,var(--scanline-opacity)) 4px
    );
    pointer-events: none;
    z-index: 9999;
  }

  /* ══ GLITCH ANIMATION ══ */
  @keyframes glitch {
    0%,92%,100% { transform: translate(0); filter: none; }
    93% { transform: translate(-3px, 1px); filter: hue-rotate(90deg); }
    95% { transform: translate(3px, -1px); filter: hue-rotate(-90deg) brightness(1.5); }
    97% { transform: translate(-2px, 0); clip-path: inset(20% 0 60% 0); }
    99% { transform: translate(0); filter: none; }
  }

  @keyframes glitch-text {
    0%,90%,100% { text-shadow: 3px 0 var(--orange), -3px 0 var(--red); }
    91% { text-shadow: -6px 0 var(--orange), 6px 0 var(--red); transform: translateX(3px); }
    93% { text-shadow: 6px 0 #00ffff, -6px 0 var(--orange); transform: translateX(-3px); }
    95% { text-shadow: 3px 0 var(--orange), -3px 0 var(--red); transform: translateX(0); }
  }

  @keyframes bpm-pulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(1.4); opacity: 0.8; }
  }

  @keyframes heartbeat-line {
    0% { stroke-dashoffset: 1000; }
    100% { stroke-dashoffset: 0; }
  }

  @keyframes flicker {
    0%,100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.4; }
    94% { opacity: 1; }
    96% { opacity: 0.6; }
    97% { opacity: 1; }
  }

  @keyframes neon-pulse {
    0%,100% { text-shadow: 0 0 5px var(--orange), 0 0 10px var(--orange), 0 0 20px var(--orange-dim); }
    50% { text-shadow: 0 0 10px var(--orange), 0 0 25px var(--orange), 0 0 50px var(--orange-dim); }
  }

  @keyframes scanline-move {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
  }

  @keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  @keyframes card-float {
    0%,100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-8px) rotate(1deg); }
  }

  @keyframes enemy-bob {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
  }

  @keyframes bg-grain {
    0%,100% { background-position: 0 0; }
    50% { background-position: 50px 50px; }
  }

  /* ══ MOVING SCANLINE ══ */
  .scan-move {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(transparent, rgba(255,107,26,0.04), transparent);
    pointer-events: none;
    z-index: 9998;
    animation: scanline-move 6s linear infinite;
  }

  /* ══ LANDING (nav + ticker + hero = 1 screen) ══ */
  .landing {
    height: calc(100dvh - var(--nav-height));
    max-height: calc(100dvh - var(--nav-height));
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  /* ══ NAV ══ */
  nav {
    position: sticky;
    top: 0;
    flex-shrink: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 56px;
    background: rgba(8,8,8,0.95);
    border-bottom: 1px solid rgba(255,107,26,0.25);
    backdrop-filter: blur(8px);
  }

  .nav-logo {
    display: block;
    line-height: 0;
    text-decoration: none;
  }

  .nav-logo img {
    height: 36px;
    width: auto;
    image-rendering: pixelated;
    display: block;
  }

  .hero-title-logo {
    animation: none;
    line-height: 0;
  }

  .hero-title-logo img {
    max-width: min(620px, 100%);
    max-height: clamp(230px, 14vh, 280px);
    width: auto;
    height: auto;
    image-rendering: pixelated;
    display: block;
  }

  .film-cell-video {
    min-width: 560px;
  }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: var(--grey-light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--orange); }

  .nav-bpm {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'VT323', monospace;
    font-size: 18px;
  }

  .bpm-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--red-bright);
    animation: bpm-pulse 0.8s ease-in-out infinite;
    box-shadow: 0 0 6px var(--red-bright);
  }

  .bpm-value { color: var(--red-bright); letter-spacing: 1px; }

  /* ══ TICKER ══ */
  .ticker-wrap {
    overflow: hidden;
    background: var(--orange);
    height: var(--ticker-height);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
    margin-top: 0;
    flex-shrink: 0;
    border-bottom: 2px solid var(--orange-dim);
  }

  .ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker 20s linear infinite;
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    color: var(--black);
    letter-spacing: 1px;
  }

  .ticker-item {
    padding: 0 32px;
  }

  .ticker-sep {
    padding: 0 8px;
    opacity: 0.5;
  }

  /* ══ HERO ══ */
  .hero {
    flex: 1;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--black);
    padding: clamp(12px, 2.5vh, 28px) clamp(24px, 5vw, 80px);
    gap: clamp(20px, 3vw, 48px);
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 70% 50%, rgba(139,0,0,0.15) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,107,26,0.08) 0%, transparent 60%);
  }

  .hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,107,26,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,107,26,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  }

  .hero-left {
    position: relative;
    z-index: 2;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-eyebrow {
    font-family: 'VT323', monospace;
    font-size: clamp(14px, 1.8vh, 18px);
    color: var(--orange);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: clamp(8px, 1.5vh, 14px);
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--orange);
  }

  .hero-title {
    font-family: 'Press Start 2P', monospace;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.3;
    color: var(--white);
    animation: glitch-text 8s ease-in-out infinite;
    margin-bottom: clamp(10px, 2vh, 18px);
  }

  .hero-title span {
    color: var(--orange);
    display: block;
  }

  .hero-tagline {
    font-family: 'VT323', monospace;
    font-size: clamp(18px, 2.5vh, 24px);
    color: var(--yellow);
    margin-bottom: clamp(10px, 2vh, 20px);
    line-height: 1.35;
    max-width: 480px;
  }

  .hero-desc {
    font-size: clamp(12px, 1.6vh, 14px);
    color: var(--grey-light);
    line-height: 1.65;
    max-width: 480px;
    margin-bottom: clamp(12px, 2.5vh, 24px);
  }

  .hero-desc strong { color: var(--orange); }

  .hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-primary {
    font-family: 'Press Start 2P', monospace;
    font-size: 10px;
    color: var(--black);
    background: var(--orange);
    border: none;
    padding: clamp(10px, 1.5vh, 14px) clamp(18px, 2.5vw, 24px);
    cursor: pointer;
    letter-spacing: 1px;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    transition: all 0.15s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-primary:hover {
    background: var(--white);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--orange);
  }

  .btn-secondary {
    font-family: 'Press Start 2P', monospace;
    font-size: 10px;
    color: var(--orange);
    background: transparent;
    border: 1px solid var(--orange);
    padding: clamp(10px, 1.5vh, 14px) clamp(18px, 2.5vw, 24px);
    cursor: pointer;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.15s;
  }

  .btn-secondary:hover {
    background: rgba(255,107,26,0.1);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--orange-dim);
  }

  /* ══ HERO RIGHT: SCREENSHOT ══ */
  .hero-right {
    position: relative;
    z-index: 2;
    min-height: 0;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .hero-img-frame {
    position: relative;
    border: 2px solid rgba(255,107,26,0.4);
    overflow: hidden;
    width: 100%;
    max-height: 100%;
  }

  .hero-img-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,107,26,0.05) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
  }

  .hero-img-frame::after {
    content: 'WIP FOOTAGE';
    position: absolute;
    bottom: 12px;
    right: 12px;
    font-family: 'VT323', monospace;
    font-size: 14px;
    color: var(--orange);
    letter-spacing: 3px;
    z-index: 2;
    opacity: 0.7;
  }

  .hero-img-frame img {
    width: 100%;
    max-height: calc(100dvh - var(--nav-height) - var(--ticker-height) - 48px);
    display: block;
    object-fit: contain;
    image-rendering: pixelated;
  }

  .corner-tag {
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 0;
    border-top: 24px solid var(--orange);
    border-right: 24px solid transparent;
    z-index: 3;
  }

  /* ══ GENRE TAGS ══ */
  .genre-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: clamp(8px, 1.5vh, 16px);
  }

  .genre-tag {
    font-family: 'VT323', monospace;
    font-size: clamp(12px, 1.5vh, 14px);
    padding: 3px 10px;
    border: 1px solid rgba(255,107,26,0.3);
    color: var(--grey-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(255,107,26,0.05);
  }

  /* ══ BPM SECTION ══ */
  .bpm-section {
    background: var(--panel);
    border-top: 1px solid var(--grey);
    border-bottom: 1px solid var(--grey);
    padding: 24px 80px;
    display: flex;
    align-items: center;
    gap: 40px;
    overflow: hidden;
    position: relative;
  }

  .bpm-label {
    font-family: 'Press Start 2P', monospace;
    font-size: 9px;
    color: var(--green);
    white-space: nowrap;
    letter-spacing: 2px;
  }

  .bpm-monitor {
    flex: 1;
    height: 48px;
    position: relative;
  }

  .bpm-monitor svg {
    width: 100%;
    height: 100%;
  }

  .bpm-number {
    font-family: 'VT323', monospace;
    font-size: 48px;
    color: var(--red-bright);
    white-space: nowrap;
    line-height: 1;
  }

  .bpm-status {
    font-family: 'VT323', monospace;
    font-size: 18px;
    color: var(--green);
    white-space: nowrap;
    letter-spacing: 2px;
  }

  /* ══ SECTIONS ══ */
  section {
    padding: 100px 80px;
  }

  .section-label {
    font-family: 'Press Start 2P', monospace;
    font-size: 9px;
    color: var(--orange);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(255,107,26,0.4), transparent);
  }

  .section-title {
    font-family: 'Press Start 2P', monospace;
    font-size: clamp(18px, 3vw, 28px);
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .section-sub {
    font-family: 'VT323', monospace;
    font-size: 22px;
    color: var(--grey-light);
    margin-bottom: 60px;
    max-width: 600px;
    line-height: 1.5;
  }

  /* ══ SCREENSHOTS GALLERY ══ */
  .gallery-section {
    background: var(--dark);
    padding: 100px 0;
  }

  .gallery-header {
    padding: 0 80px;
    margin-bottom: 48px;
  }

  .filmstrip {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding: 0 80px;
    scrollbar-width: thin;
    scrollbar-color: var(--orange) var(--panel);
  }

  .filmstrip::-webkit-scrollbar { height: 4px; }
  .filmstrip::-webkit-scrollbar-track { background: var(--panel); }
  .filmstrip::-webkit-scrollbar-thumb { background: var(--orange); }

  .film-cell {
    position: relative;
    flex-shrink: 0;
    width: 480px;
    overflow: hidden;
    border: 1px solid rgba(255,107,26,0.2);
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s;
  }

  .film-cell:hover {
    border-color: var(--orange);
    transform: scale(1.01);
    z-index: 2;
  }

  .film-cell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,107,26,0.08);
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 1;
    pointer-events: none;
  }

  .film-cell:hover::before { opacity: 1; }

  .film-cell img {
    width: 100%;
    display: block;
    image-rendering: pixelated;
  }

  .film-cell video {
    width: 100%;
    display: block;
  }

  .film-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 32px 16px 12px;
    font-family: 'VT323', monospace;
    font-size: 16px;
    color: var(--grey-light);
    letter-spacing: 2px;
    z-index: 2;
  }

  /* ══ FEATURES GRID ══ */
  .features-section {
    background: var(--black);
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--grey);
    border: 1px solid var(--grey);
  }

  .feature-block {
    background: var(--dark);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.2s;
  }

  .feature-block:hover {
    background: var(--panel);
  }

  .feature-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: var(--orange);
    opacity: 0;
    transition: opacity 0.2s;
  }

  .feature-block:hover::before { opacity: 1; }

  .feature-icon {
    font-family: 'VT323', monospace;
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
  }

  .ascii-art {
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    line-height: 1.15;
    white-space: pre;
    margin: 0 auto 16px;
    color: var(--grey-light);
    text-align: center;
    display: block;
  }

  .card .ascii-art {
    font-size: 9px;
    margin: 16px auto;
    min-height: 52px;
  }

  .enemy-placeholder .ascii-art {
    font-size: 11px;
    color: var(--orange);
    margin: 0;
    padding: 24px 16px;
  }

  .feature-block .ascii-art {
    min-height: 44px;
  }

  .feature-name {
    font-family: 'Press Start 2P', monospace;
    font-size: 11px;
    color: var(--orange);
    margin-bottom: 16px;
    line-height: 1.6;
  }

  .feature-desc {
    font-size: 13px;
    color: var(--grey-light);
    line-height: 1.8;
  }

  .feature-desc strong { color: var(--white); }

  /* ══ CARDS SECTION ══ */
  .cards-section {
    background: var(--dark);
    overflow: hidden;
  }

  .cards-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 24px;
    scrollbar-width: thin;
    scrollbar-color: var(--orange) var(--panel);
  }

  .cards-scroll::-webkit-scrollbar { height: 4px; }
  .cards-scroll::-webkit-scrollbar-track { background: var(--panel); }
  .cards-scroll::-webkit-scrollbar-thumb { background: var(--orange); }

  .card {
    flex-shrink: 0;
    width: 200px;
    background: var(--panel);
    border: 1px solid rgba(255,107,26,0.25);
    padding: 24px 20px;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    animation: card-float 4s ease-in-out infinite;
    cursor: default;
    transition: border-color 0.2s, background 0.2s;
  }

  .card:nth-child(2) { animation-delay: 0.5s; }
  .card:nth-child(3) { animation-delay: 1s; }
  .card:nth-child(4) { animation-delay: 1.5s; }
  .card:nth-child(5) { animation-delay: 2s; }
  .card:nth-child(6) { animation-delay: 2.5s; }
  .card:nth-child(7) { animation-delay: 3s; }
  .card:nth-child(8) { animation-delay: 3.5s; }

  .card:hover {
    border-color: var(--orange);
    background: rgba(255,107,26,0.08);
  }

  .card-type {
    font-family: 'VT323', monospace;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .card-type.weapon { color: var(--red-bright); }
  .card-type.upgrade { color: var(--green); }
  .card-type.ability { color: var(--yellow); }

  .card-art {
    font-size: 40px;
    text-align: center;
    margin: 16px 0;
    display: block;
  }

  .card-name {
    font-family: 'Press Start 2P', monospace;
    font-size: 9px;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.6;
  }

  .card-effect {
    font-size: 11px;
    color: var(--grey-light);
    line-height: 1.7;
  }

  .card-rarity {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
  }

  .card-rarity.r1 { background: var(--grey-light); }
  .card-rarity.r2 { background: var(--yellow); box-shadow: 0 0 4px var(--yellow); }
  .card-rarity.r3 { background: var(--orange); box-shadow: 0 0 6px var(--orange); }

  /* ══ ENEMY DOSSIER ══ */
  .enemies-section {
    background: var(--black);
  }

  .enemy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .enemy-card {
    background: var(--panel);
    border: 1px solid rgba(255,107,26,0.15);
    padding: 0;
    overflow: hidden;
    position: relative;
    transition: border-color 0.2s, transform 0.2s;
    animation: enemy-bob 3s ease-in-out infinite;
  }

  .enemy-card:nth-child(2) { animation-delay: 1s; }
  .enemy-card:nth-child(3) { animation-delay: 2s; }

  .enemy-card:hover {
    border-color: var(--red-bright);
    transform: translateY(-4px);
  }

  .enemy-header {
    background: rgba(139,0,0,0.3);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,107,26,0.2);
  }

  .enemy-class {
    font-family: 'Press Start 2P', monospace;
    font-size: 9px;
    color: var(--red-bright);
    letter-spacing: 1px;
  }

  .enemy-threat {
    font-family: 'VT323', monospace;
    font-size: 16px;
    color: var(--yellow);
    letter-spacing: 2px;
  }

  .enemy-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
    display: block;
    image-rendering: pixelated;
    filter: saturate(0.8) contrast(1.1);
  }

  .enemy-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(255,107,26,0.1);
  }

  .enemy-body {
    padding: 20px;
  }

  .enemy-name {
    font-family: 'Press Start 2P', monospace;
    font-size: 11px;
    color: var(--white);
    margin-bottom: 12px;
  }

  .enemy-desc {
    font-size: 12px;
    color: var(--grey-light);
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .enemy-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .enemy-stat {
    background: rgba(0,0,0,0.4);
    padding: 6px 10px;
  }

  .stat-label {
    font-family: 'VT323', monospace;
    font-size: 12px;
    color: var(--grey-light);
    letter-spacing: 2px;
    display: block;
  }

  .stat-bar {
    height: 3px;
    background: var(--grey);
    margin-top: 4px;
    overflow: hidden;
  }

  .stat-fill {
    height: 100%;
    background: var(--orange);
    transition: width 1s ease;
  }

  .stat-fill.green { background: var(--green); }
  .stat-fill.red { background: var(--red-bright); }

  /* ══ SETTING SECTION ══ */
  .setting-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
  }

  .setting-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .setting-img {
    position: relative;
    border: 1px solid rgba(255,107,26,0.3);
    overflow: hidden;
  }

  .setting-img img {
    width: 100%;
    display: block;
    image-rendering: pixelated;
    filter: brightness(0.85) contrast(1.1);
  }

  .setting-img::after {
    content: '"THE K-HOLE"';
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-family: 'VT323', monospace;
    font-size: 20px;
    color: var(--orange);
    letter-spacing: 4px;
    background: rgba(0,0,0,0.7);
    padding: 4px 12px;
  }

  .lore-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
  }

  .lore-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .lore-bullet {
    font-family: 'VT323', monospace;
    font-size: 20px;
    color: var(--orange);
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
  }

  .lore-text {
    font-size: 13px;
    color: var(--grey-light);
    line-height: 1.8;
  }

  .lore-text strong { color: var(--white); }

  /* ══ SLOT MACHINE SHOWCASE ══ */
  .slots-section {
    background: var(--black);
    position: relative;
    overflow: hidden;
  }

  .slots-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .slot-img {
    position: relative;
    border: 2px solid rgba(255,107,26,0.4);
    overflow: hidden;
    box-shadow: 0 0 40px rgba(255,107,26,0.15);
  }

  .slot-img img {
    width: 100%;
    display: block;
    image-rendering: pixelated;
  }

  .slot-explainer {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .slot-rule {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: var(--panel);
    border-left: 3px solid var(--orange);
  }

  .slot-icon {
    font-family: 'VT323', monospace;
    font-size: 28px;
    color: var(--yellow);
    flex-shrink: 0;
    width: 40px;
    text-align: center;
  }

  .slot-rule-text { }

  .slot-rule-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 9px;
    color: var(--white);
    margin-bottom: 8px;
  }

  .slot-rule-desc {
    font-size: 12px;
    color: var(--grey-light);
    line-height: 1.7;
  }

  /* ══ DEVELOPER SECTION ══ */
  .dev-section {
    background: var(--panel);
    border-top: 1px solid var(--grey);
    padding: 60px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .dev-logo img {
    height: 80px;
    image-rendering: pixelated;
  }

  .dev-info {
    flex: 1;
    max-width: 500px;
  }

  .dev-label {
    font-family: 'VT323', monospace;
    font-size: 16px;
    color: var(--grey-light);
    letter-spacing: 3px;
    margin-bottom: 8px;
  }

  .dev-name {
    font-family: 'Press Start 2P', monospace;
    font-size: 14px;
    color: var(--orange);
    margin-bottom: 16px;
  }

  .dev-desc {
    font-size: 13px;
    color: var(--grey-light);
    line-height: 1.8;
  }

  .dev-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
  }

  .dev-badge {
    font-family: 'VT323', monospace;
    font-size: 14px;
    padding: 3px 10px;
    border: 1px solid rgba(255,107,26,0.3);
    color: var(--grey-light);
    letter-spacing: 1px;
  }

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

  .dev-status-label {
    font-family: 'VT323', monospace;
    font-size: 16px;
    color: var(--grey-light);
    letter-spacing: 3px;
    display: block;
    margin-bottom: 8px;
  }

  .dev-status-value {
    font-family: 'Press Start 2P', monospace;
    font-size: 22px;
    color: var(--yellow);
    animation: neon-pulse 2s ease-in-out infinite;
  }

  /* ══ FOOTER ══ */
  footer {
    background: var(--black);
    border-top: 1px solid rgba(255,107,26,0.2);
    padding: 32px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-logo {
    font-family: 'Press Start 2P', monospace;
    font-size: 11px;
    color: var(--orange);
  }

  .footer-note {
    font-size: 11px;
    color: var(--grey);
    letter-spacing: 1px;
  }

  .footer-warning {
    font-family: 'VT323', monospace;
    font-size: 16px;
    color: var(--red-bright);
    letter-spacing: 2px;
    animation: flicker 5s linear infinite;
  }

  /* ══ LIGHTBOX ══ */
  .lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
  }

  .lightbox.active { display: flex; }

  .lightbox-inner {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
  }

  .lightbox-inner img,
  .lightbox-inner video {
    max-width: 100%;
    max-height: 90vh;
    display: block;
    border: 2px solid var(--orange);
  }

  .lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-family: 'Press Start 2P', monospace;
    font-size: 12px;
    color: var(--orange);
    cursor: pointer;
    background: none;
    border: none;
  }

  /* ══ RESPONSIVE ══ */
  @media (max-width: 900px) {
    .landing {
      height: calc(100dvh - var(--nav-height));
      max-height: none;
      min-height: calc(100dvh - var(--nav-height));
    }

    .hero {
      grid-template-columns: 1fr;
      padding: clamp(16px, 3vh, 32px);
    }
    .hero-right { display: none; }
    section { padding: 60px 32px; }
    .gallery-header { padding: 0 32px; }
    .filmstrip { padding: 0 32px; }
    .features-grid { grid-template-columns: 1fr; }
    .enemy-grid { grid-template-columns: 1fr; }
    .setting-inner, .slots-inner { grid-template-columns: 1fr; }
    .bpm-section { padding: 24px 32px; flex-wrap: wrap; }
    .dev-section { flex-direction: column; padding: 40px 32px; }
    .dev-status { text-align: left; }
    footer { flex-direction: column; gap: 16px; padding: 24px 32px; text-align: center; }
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    .hero-title { font-size: 24px; }
  }

  /* ══ PROGRESS BAR WAVE INDICATOR ══ */
  .wave-bar-section {
    background: var(--dark);
    padding: 48px 80px;
    display: flex;
    gap: 60px;
    align-items: center;
    border-top: 1px solid var(--grey);
    border-bottom: 1px solid var(--grey);
  }

  .wave-bar-label {
    font-family: 'Press Start 2P', monospace;
    font-size: 9px;
    color: var(--grey-light);
    white-space: nowrap;
  }

  .wave-bars {
    display: flex;
    gap: 6px;
    flex: 1;
    align-items: flex-end;
    height: 48px;
  }

  .wave-bar {
    flex: 1;
    background: var(--orange);
    border-top: 2px solid rgba(255,255,255,0.2);
    transition: height 0.3s;
  }

  .wave-stat {
    font-family: 'VT323', monospace;
    font-size: 20px;
    white-space: nowrap;
  }

  .wave-stat span { color: var(--orange); }

  @media (max-width: 900px) {
    .wave-bar-section { padding: 32px; flex-wrap: wrap; }
  }