          :root {
    --yellow: #FFE600;
    --pink: #FF2D78;
    --cyan: #00F5FF;
    --orange: #FF6B00;
    --dark: #080810;
    --dark2: #0D0D1A;
    --dark3: #12122B;
    --white: #F0F0FF;
    --grid: rgba(0, 245, 255, 0.04);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--dark);
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  .cursor {
    width: 16px; height: 16px;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
  }
  .cursor::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--yellow);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    box-shadow: 0 0 12px 4px rgba(255,230,0,0.9), 0 0 30px 8px rgba(255,230,0,0.4);
    animation: cursorSpin 3s linear infinite;
  }
  .cursor::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(255,230,0,0.25);
    border-radius: 50%;
    animation: cursorPulse 1.5s ease-in-out infinite;
  }
  .cursor.hovering::before {
    background: var(--pink);
    box-shadow: 0 0 16px 6px rgba(255,45,120,1), 0 0 40px 12px rgba(255,45,120,0.5);
    transform: scale(1.6);
  }
  .cursor.hovering::after {
    border-color: rgba(255,45,120,0.4);
    inset: -10px;
  }
  @keyframes cursorSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  @keyframes cursorPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.3); }
  }

  /* TRAIL DOTS */
  .trail-dot {
    position: fixed;
    width: 6px; height: 6px;
    pointer-events: none;
    z-index: 9990;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transform: translate(-50%, -50%);
    transition: opacity 0.1s;
  }

  /* SCANLINES OVERLAY */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0,0,0,0.08) 2px,
      rgba(0,0,0,0.08) 4px
    );
    pointer-events: none;
    z-index: 1000;
  }

  /* GRID BG */
  .grid-bg {
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(var(--grid) 1px, transparent 1px),
      linear-gradient(90deg, var(--grid) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: linear-gradient(180deg, rgba(8,8,16,0.95) 0%, transparent 100%);
    border-bottom: 1px solid rgba(255,230,0,0.1);
  }

  .nav-logo {
    font-family: 'Press Start 2P', monospace;
    font-size: 14px;
    color: var(--yellow);
    text-shadow: 0 0 20px rgba(255,230,0,0.6), 0 0 40px rgba(255,230,0,0.3);
    letter-spacing: 2px;
  }

  .nav-logo span {
    color: var(--pink);
    text-shadow: 0 0 20px rgba(255,45,120,0.8);
  }

  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
  }

  .nav-links a {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    color: rgba(240,240,255,0.6);
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.2s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 1px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: transform 0.2s;
  }

  .nav-links a:hover {
    color: var(--yellow);
  }

  .nav-links a:hover::after {
    transform: scaleX(1);
  }

  .nav-cta {
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    color: var(--dark);
    background: var(--yellow);
    padding: 10px 18px;
    border: none;
    cursor: none;
    letter-spacing: 1px;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    transition: all 0.2s;
    text-decoration: none;
  }

  .nav-cta:hover {
    background: var(--pink);
    color: var(--white);
    box-shadow: 0 0 30px rgba(255,45,120,0.5);
  }

  /* HERO */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 40px 80px;
    overflow: hidden;
    z-index: 1;
  }

  .hero-glow-left {
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,45,120,0.2) 0%, transparent 70%);
    top: 10%; left: -100px;
    animation: pulse 4s ease-in-out infinite;
  }

  .hero-glow-right {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,245,255,0.15) 0%, transparent 70%);
    bottom: 0; right: -100px;
    animation: pulse 4s ease-in-out infinite 2s;
  }

  @keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
  }

  .hero-eyebrow {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    letter-spacing: 6px;
    color: var(--cyan);
    text-transform: uppercase;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.3s;
  }

  .hero-eyebrow::before, .hero-eyebrow::after {
    content: '///';
    color: var(--pink);
    margin: 0 12px;
    opacity: 0.6;
  }

  .hero-title {
    font-family: 'Press Start 2P', monospace;
    font-size: clamp(32px, 6vw, 72px);
    line-height: 1.4;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.5s;
  }

  .hero-title .line1 {
    color: var(--yellow);
    text-shadow: 0 0 30px rgba(255,230,0,0.5), 4px 4px 0px rgba(255,107,0,0.8);
    display: block;
  }

  .hero-title .line2 {
    color: var(--white);
    text-shadow: 2px 2px 0px var(--pink), 0 0 40px rgba(255,45,120,0.3);
    display: block;
    font-size: 0.55em;
    margin-top: 8px;
    letter-spacing: 8px;
  }

  .hero-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: rgba(240,240,255,0.55);
    max-width: 560px;
    line-height: 1.6;
    margin: 30px auto 50px;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.7s;
  }

  .hero-subtitle strong {
    color: var(--cyan);
    font-weight: 700;
  }

  .hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.9s;
  }

  .btn-primary {
    font-family: 'Press Start 2P', monospace;
    font-size: 10px;
    color: var(--dark);
    background: var(--yellow);
    padding: 18px 32px;
    border: none;
    cursor: none;
    text-decoration: none;
    letter-spacing: 1px;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
  }

  .btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.4s;
  }

  .btn-primary:hover {
    box-shadow: 0 0 40px rgba(255,230,0,0.6), 0 0 80px rgba(255,230,0,0.2);
    transform: translateY(-2px);
  }

  .btn-primary:hover::after {
    transform: translateX(100%);
  }

  .btn-secondary {
    font-family: 'Press Start 2P', monospace;
    font-size: 10px;
    color: var(--cyan);
    background: transparent;
    padding: 16px 30px;
    border: 1px solid rgba(0,245,255,0.4);
    cursor: none;
    text-decoration: none;
    letter-spacing: 1px;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: all 0.2s;
  }

  .btn-secondary:hover {
    background: rgba(0,245,255,0.1);
    border-color: var(--cyan);
    box-shadow: 0 0 30px rgba(0,245,255,0.3);
    transform: translateY(-2px);
  }

  /* COIN BLINK */
  .insert-coin {
    position: absolute;
    bottom: 40px;
    font-family: 'Press Start 2P', monospace;
    font-size: 9px;
    color: var(--yellow);
    letter-spacing: 4px;
    animation: blink 1s step-end infinite;
    opacity: 0;
    animation: blink 1s step-end infinite, fadeUp 0.6s ease forwards 1.2s;
  }

  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* TICKER */
  .ticker {
    position: relative;
    z-index: 2;
    background: var(--yellow);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
  }

  .ticker-track {
    display: inline-flex;
    gap: 0;
    animation: ticker 25s linear infinite;
  }

  .ticker-item {
    font-family: 'Press Start 2P', monospace;
    font-size: 9px;
    color: var(--dark);
    padding: 0 40px;
    letter-spacing: 2px;
  }

  .ticker-item::before {
    content: '★';
    margin-right: 16px;
    color: var(--orange);
  }

  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* SECTION SHARED */
  section {
    position: relative;
    z-index: 1;
    padding: 100px 60px;
  }

  .section-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    letter-spacing: 5px;
    color: var(--pink);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .section-label::before {
    content: '';
    width: 30px; height: 2px;
    background: var(--pink);
  }

  .section-title {
    font-family: 'Press Start 2P', monospace;
    font-size: clamp(18px, 3vw, 32px);
    line-height: 1.5;
    margin-bottom: 20px;
  }

  /* IDENTITY SECTION */
  .identity {
    background: var(--dark2);
    border-top: 1px solid rgba(255,230,0,0.08);
    border-bottom: 1px solid rgba(255,230,0,0.08);
  }

  .identity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
  }

  .identity-content .section-title {
    color: var(--yellow);
  }

  .identity-content p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(240,240,255,0.65);
    font-weight: 400;
    margin-bottom: 16px;
  }

  .identity-content p strong {
    color: var(--white);
    font-weight: 700;
  }

  .identity-pillars {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .pillar {
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    padding: 24px 28px;
    position: relative;
    transition: all 0.3s;
    overflow: hidden;
  }

  .pillar::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
  }

  .pillar:nth-child(1)::before { background: var(--yellow); }
  .pillar:nth-child(2)::before { background: var(--pink); }
  .pillar:nth-child(3)::before { background: var(--cyan); }
  .pillar:nth-child(4)::before { background: var(--orange); }

  .pillar:hover {
    background: rgba(255,255,255,0.04);
    transform: translateX(6px);
  }

  .pillar-num {
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    color: rgba(255,255,255,0.2);
    margin-bottom: 8px;
  }

  .pillar-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  .pillar:nth-child(1) .pillar-title { color: var(--yellow); }
  .pillar:nth-child(2) .pillar-title { color: var(--pink); }
  .pillar:nth-child(3) .pillar-title { color: var(--cyan); }
  .pillar:nth-child(4) .pillar-title { color: var(--orange); }

  .pillar p {
    font-size: 14px;
    color: rgba(240,240,255,0.5);
    line-height: 1.6;
    font-family: 'Share Tech Mono', monospace;
  }

  /* GAMES SECTION */
  .games-section {
    max-width: 1200px;
    margin: 0 auto;
  }

  .games-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
  }

  .games-header .section-title {
    color: var(--white);
  }

  .games-header .section-title span {
    color: var(--yellow);
  }

  .games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .game-card {
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    cursor: none;
    background: var(--dark3);
  }

  .game-card:first-child {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }

  .game-card-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.4s ease;
  }

  /* Game card pixel art backgrounds */
  .game-card:nth-child(1) .game-card-bg {
    background:
      radial-gradient(circle at 30% 60%, rgba(255,45,120,0.4) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(255,230,0,0.3) 0%, transparent 40%),
      linear-gradient(135deg, #0a0a1a, #1a0a2e);
  }

  .game-card:nth-child(2) .game-card-bg {
    background:
      radial-gradient(circle at 50% 50%, rgba(0,245,255,0.3) 0%, transparent 60%),
      linear-gradient(180deg, #0a1a1a, #001a20);
  }

  .game-card:nth-child(3) .game-card-bg {
    background:
      radial-gradient(circle at 70% 30%, rgba(255,107,0,0.4) 0%, transparent 50%),
      linear-gradient(135deg, #1a0800, #200e00);
  }

  .game-card:nth-child(4) .game-card-bg {
    background:
      radial-gradient(circle at 20% 70%, rgba(255,230,0,0.3) 0%, transparent 50%),
      linear-gradient(180deg, #1a1a00, #0d0d00);
  }

  .game-card:hover .game-card-bg {
    transform: scale(1.05);
  }

  /* Pixel grid decorations */
  .game-card-pixel {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 20px 20px;
  }

  .game-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
    transition: opacity 0.3s;
  }

  .game-card:hover .game-card-overlay {
    opacity: 0.7;
  }

  .game-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px;
  }

  .game-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: 9px;
    letter-spacing: 3px;
    padding: 4px 10px;
    margin-bottom: 10px;
    display: inline-block;
  }

  .game-card:nth-child(1) .game-tag { background: var(--pink); color: var(--white); }
  .game-card:nth-child(2) .game-tag { background: var(--cyan); color: var(--dark); }
  .game-card:nth-child(3) .game-tag { background: var(--orange); color: var(--dark); }
  .game-card:nth-child(4) .game-tag { background: var(--yellow); color: var(--dark); }

  .game-card h3 {
    font-family: 'Press Start 2P', monospace;
    font-size: clamp(10px, 1.5vw, 16px);
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.4;
  }

  .game-card p {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: rgba(240,240,255,0.5);
    line-height: 1.5;
  }

  .game-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-family: 'Press Start 2P', monospace;
    font-size: 9px;
    background: var(--yellow);
    color: var(--dark);
    padding: 14px 20px;
    border: none;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: none;
  }

  .game-card:hover .game-play-btn {
    transform: translate(-50%, -50%) scale(1);
  }

  /* COMMUNITY SECTION */
  .community {
    background: var(--dark2);
    border-top: 1px solid rgba(0,245,255,0.08);
  }

  .community-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .community-header {
    text-align: center;
    margin-bottom: 70px;
  }

  .community-header .section-label {
    justify-content: center;
  }

  .community-header .section-label::before { display: none; }
  .community-header .section-label::after {
    content: '';
    width: 30px; height: 2px;
    background: var(--pink);
  }

  .community-header .section-title {
    color: var(--white);
    font-size: clamp(16px, 2.5vw, 28px);
  }

  .community-header .section-title em {
    color: var(--cyan);
    font-style: normal;
  }

  .community-header p {
    font-size: 18px;
    color: rgba(240,240,255,0.5);
    max-width: 540px;
    margin: 20px auto 0;
    line-height: 1.7;
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
  }

  .community-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 60px;
  }

  .comm-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s;
    overflow: hidden;
  }

  .comm-card::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .comm-card:nth-child(1)::after { background: radial-gradient(circle at 50% 0%, rgba(255,45,120,0.08), transparent 70%); }
  .comm-card:nth-child(2)::after { background: radial-gradient(circle at 50% 0%, rgba(0,245,255,0.08), transparent 70%); }
  .comm-card:nth-child(3)::after { background: radial-gradient(circle at 50% 0%, rgba(255,230,0,0.08), transparent 70%); }

  .comm-card:hover::after { opacity: 1; }

  .comm-card:hover {
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-4px);
  }

  .comm-icon {
    font-size: 36px;
    margin-bottom: 20px;
    display: block;
    filter: grayscale(0.3);
  }

  .comm-card h3 {
    font-family: 'Press Start 2P', monospace;
    font-size: 12px;
    margin-bottom: 14px;
    line-height: 1.5;
  }

  .comm-card:nth-child(1) h3 { color: var(--pink); }
  .comm-card:nth-child(2) h3 { color: var(--cyan); }
  .comm-card:nth-child(3) h3 { color: var(--yellow); }

  .comm-card p {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    color: rgba(240,240,255,0.45);
    line-height: 1.8;
  }

  .comm-card .comm-badge {
    position: absolute;
    top: 20px; right: 20px;
    font-family: 'Press Start 2P', monospace;
    font-size: 7px;
    padding: 5px 10px;
    border: 1px solid;
    letter-spacing: 1px;
  }

  .comm-card:nth-child(1) .comm-badge { color: var(--pink); border-color: var(--pink); }
  .comm-card:nth-child(2) .comm-badge { color: var(--cyan); border-color: var(--cyan); }
  .comm-card:nth-child(3) .comm-badge { color: var(--yellow); border-color: var(--yellow); }

  /* STATS */
  .stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255,230,0,0.1);
    overflow: hidden;
  }

  .stat-item {
    padding: 40px 30px;
    text-align: center;
    border-right: 1px solid rgba(255,230,0,0.1);
    transition: background 0.3s;
  }

  .stat-item:last-child { border-right: none; }

  .stat-item:hover {
    background: rgba(255,230,0,0.04);
  }

  .stat-num {
    font-family: 'Press Start 2P', monospace;
    font-size: clamp(20px, 3vw, 36px);
    color: var(--yellow);
    text-shadow: 0 0 20px rgba(255,230,0,0.4);
    display: block;
    margin-bottom: 12px;
  }

  .stat-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: rgba(240,240,255,0.4);
    letter-spacing: 3px;
    text-transform: uppercase;
  }

  /* COLORS SECTION */
  .brand-section {
    max-width: 1200px;
    margin: 0 auto;
  }

  .brand-section .section-title {
    color: var(--white);
    margin-bottom: 50px;
  }

  .colors-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    margin-bottom: 60px;
  }

  .color-swatch {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
  }

  .color-swatch:hover { transform: scaleY(1.05); }

  .color-swatch::after {
    content: attr(data-name);
    position: absolute;
    bottom: 16px; left: 16px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
  }

  .color-swatch[data-color="yellow"] { background: var(--yellow); }
  .color-swatch[data-color="yellow"]::after { color: var(--dark); }

  .color-swatch[data-color="pink"] { background: var(--pink); }
  .color-swatch[data-color="pink"]::after { color: var(--white); }

  .color-swatch[data-color="cyan"] { background: var(--cyan); }
  .color-swatch[data-color="cyan"]::after { color: var(--dark); }

  .color-swatch[data-color="orange"] { background: var(--orange); }
  .color-swatch[data-color="orange"]::after { color: var(--white); }

  .color-swatch[data-color="dark"] { background: var(--dark3); border: 1px solid rgba(255,255,255,0.1); }
  .color-swatch[data-color="dark"]::after { color: rgba(255,255,255,0.4); }

  /* TYPE SECTION */
  .type-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-bottom: 60px;
  }

  .type-item {
    background: var(--dark2);
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.04);
  }

  .type-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 9px;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .type-display-1 {
    font-family: 'Press Start 2P', monospace;
    font-size: 28px;
    color: var(--yellow);
    line-height: 1.4;
    text-shadow: 3px 3px 0 var(--orange);
  }

  .type-display-2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: 4px;
    text-transform: uppercase;
  }

  .type-display-3 {
    font-family: 'Share Tech Mono', monospace;
    font-size: 14px;
    color: var(--cyan);
    line-height: 1.8;
  }

  .type-display-4 {
    font-family: 'Press Start 2P', monospace;
    font-size: 11px;
    color: var(--pink);
    line-height: 2;
    letter-spacing: 2px;
  }

  /* CTA FINAL */
  .cta-final {
    background: var(--dark2);
    border-top: 1px solid rgba(255,45,120,0.1);
    text-align: center;
    padding: 120px 60px;
  }

  .cta-final-inner {
    max-width: 700px;
    margin: 0 auto;
  }

  .cta-final .section-label {
    justify-content: center;
  }
  .cta-final .section-label::before { display: none; }
  .cta-final .section-label::after {
    content: '';
    width: 30px; height: 2px;
    background: var(--pink);
  }

  .cta-final h2 {
    font-family: 'Press Start 2P', monospace;
    font-size: clamp(16px, 3vw, 28px);
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 20px;
  }

  .cta-final h2 span { color: var(--yellow); }

  .cta-final p {
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    color: rgba(240,240,255,0.45);
    line-height: 1.8;
    margin-bottom: 50px;
  }

  .cta-final .btn-row {
    display: flex;
    gap: 20px;
    justify-content: center;
  }

  /* FOOTER */
  footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-logo {
    font-family: 'Press Start 2P', monospace;
    font-size: 12px;
    color: var(--yellow);
  }

  .footer-logo span { color: var(--pink); }

  .footer-copy {
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    color: rgba(255,255,255,0.2);
    letter-spacing: 2px;
  }

  .footer-socials {
    display: flex;
    gap: 20px;
  }

  .footer-socials a {
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    letter-spacing: 2px;
    transition: color 0.2s;
  }

  .footer-socials a:hover { color: var(--yellow); }

  /* FLOATING PIXELS */
  .pixel {
    position: fixed;
    width: 6px; height: 6px;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    animation: floatPixel linear infinite;
  }

  /* ===== GAME MODAL ===== */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8,8,16,0.96);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(6px);
  }
  .modal-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  .modal-box {
    width: min(92vw, 900px);
    background: var(--dark2);
    border: 1px solid rgba(255,230,0,0.2);
    box-shadow: 0 0 60px rgba(255,230,0,0.08), 0 0 120px rgba(255,45,120,0.06);
    position: relative;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.34,1.3,0.64,1);
    overflow: hidden;
  }
  .modal-overlay.active .modal-box {
    transform: translateY(0) scale(1);
  }

  /* Scanlines inside modal */
  .modal-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      0deg, transparent, transparent 2px,
      rgba(0,0,0,0.06) 2px, rgba(0,0,0,0.06) 4px
    );
    pointer-events: none;
    z-index: 10;
  }

  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255,230,0,0.1);
    background: rgba(0,0,0,0.3);
  }

  .modal-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 11px;
    color: var(--yellow);
    text-shadow: 0 0 15px rgba(255,230,0,0.5);
    letter-spacing: 2px;
  }

  .modal-badge {
    font-family: 'Share Tech Mono', monospace;
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--dark);
    background: var(--pink);
    padding: 4px 10px;
  }

  .modal-close {
    font-family: 'Press Start 2P', monospace;
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    background: none;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 12px;
    cursor: none;
    transition: all 0.2s;
    letter-spacing: 1px;
  }
  .modal-close:hover {
    color: var(--pink);
    border-color: var(--pink);
    box-shadow: 0 0 15px rgba(255,45,120,0.3);
  }

  .modal-body {
    display: grid;
    grid-template-columns: 1fr 260px;
  }

  /* Game iframe area */
  .modal-game-area {
    position: relative;
    background: #000;
    aspect-ratio: 16/10;
  }

  .modal-game-area iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }

  /* Splash screen before game loads */
  .game-splash {
    position: absolute;
    inset: 0;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 5;
    transition: opacity 0.4s;
  }
  .game-splash.hidden { opacity: 0; pointer-events: none; }

  .splash-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 14px;
    color: var(--yellow);
    text-shadow: 0 0 20px rgba(255,230,0,0.6), 3px 3px 0 var(--orange);
    text-align: center;
    line-height: 1.8;
  }

  .splash-sub {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: rgba(240,240,255,0.4);
    letter-spacing: 3px;
  }

  .splash-play-btn {
    font-family: 'Press Start 2P', monospace;
    font-size: 11px;
    color: var(--dark);
    background: var(--yellow);
    border: none;
    padding: 16px 32px;
    cursor: none;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    animation: splashPulse 1.2s ease-in-out infinite;
    transition: all 0.2s;
  }
  .splash-play-btn:hover {
    background: var(--pink);
    color: var(--white);
    box-shadow: 0 0 30px rgba(255,45,120,0.6);
  }
  @keyframes splashPulse {
    0%,100% { box-shadow: 0 0 20px rgba(255,230,0,0.4); }
    50% { box-shadow: 0 0 40px rgba(255,230,0,0.9); }
  }

  .splash-controls {
    display: flex;
    gap: 20px;
    margin-top: 8px;
  }
  .control-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .control-key {
    font-family: 'Press Start 2P', monospace;
    font-size: 9px;
    color: var(--cyan);
    border: 1px solid rgba(0,245,255,0.3);
    padding: 6px 10px;
    min-width: 36px;
    text-align: center;
  }
  .control-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 9px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 2px;
  }

  /* Sidebar */
  .modal-sidebar {
    border-left: 1px solid rgba(255,230,0,0.08);
    display: flex;
    flex-direction: column;
  }

  .sidebar-section {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .sidebar-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 9px;
    letter-spacing: 4px;
    color: var(--pink);
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .sidebar-label::before {
    content: '';
    width: 16px; height: 1px;
    background: var(--pink);
  }

  /* Leaderboard */
  .leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .lb-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    transition: background 0.2s;
  }
  .lb-row:hover { background: rgba(255,255,255,0.05); }

  .lb-row.gold   { border-color: rgba(255,230,0,0.25); }
  .lb-row.silver { border-color: rgba(200,200,220,0.2); }
  .lb-row.bronze { border-color: rgba(255,107,0,0.2); }

  .lb-rank {
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    width: 20px;
    text-align: center;
  }
  .lb-row.gold   .lb-rank { color: var(--yellow); }
  .lb-row.silver .lb-rank { color: #C8C8DC; }
  .lb-row.bronze .lb-rank { color: var(--orange); }
  .lb-row:not(.gold):not(.silver):not(.bronze) .lb-rank { color: rgba(255,255,255,0.3); }

  .lb-name {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: rgba(240,240,255,0.7);
    flex: 1;
    letter-spacing: 1px;
  }

  .lb-score {
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    color: var(--cyan);
  }

  /* Game info */
  .game-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .game-info-item {
    background: rgba(255,255,255,0.02);
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.04);
  }
  .game-info-key {
    font-family: 'Share Tech Mono', monospace;
    font-size: 8px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 2px;
    margin-bottom: 4px;
  }
  .game-info-val {
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    color: var(--yellow);
  }

  .modal-footer {
    padding: 14px 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.2);
  }
  .modal-footer-txt {
    font-family: 'Share Tech Mono', monospace;
    font-size: 9px;
    color: rgba(255,255,255,0.2);
    letter-spacing: 2px;
  }
  .fullscreen-btn {
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    color: var(--cyan);
    background: none;
    border: 1px solid rgba(0,245,255,0.2);
    padding: 7px 14px;
    cursor: none;
    transition: all 0.2s;
    letter-spacing: 1px;
  }
  .fullscreen-btn:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 15px rgba(0,245,255,0.2);
  }
   