 :root {
      --ink: #0b0c10;
      --smoke: #f1f1f1;
      --stone: #b3b7bf;
      --ember: #ff5f1f;
      --ember-dark: #b63a0c;
      --slate: #141922;
      --steel: #1d2430;
      --shadow: rgba(0, 0, 0, 0.3);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: "Space Grotesk", system-ui, sans-serif;
      color: var(--smoke);
      background: radial-gradient(1200px 600px at 20% -10%, #243145 0%, rgba(36, 49, 69, 0) 60%),
        radial-gradient(900px 500px at 90% 20%, #2b1b1b 0%, rgba(43, 27, 27, 0) 55%),
        linear-gradient(180deg, #0b0c10 0%, #0f141c 45%, #0b0c10 100%);
      min-height: 100vh;
      overflow-x: hidden;
    }

    .grain {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }

    .page {
      position: relative;
      z-index: 1;
      max-width: 1200px;
      margin: 0 auto;
      padding: 48px 24px 90px;
    }

    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }

    .nav {
      display: flex;
      gap: 16px;
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .nav a {
      color: var(--smoke);
      text-decoration: none;
      opacity: 0.8;
    }

    .nav a:hover {
      opacity: 1;
    }

    .hero {
      margin-top: 70px;
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
      gap: 36px;
      align-items: center;
    }

    .hero h1 {
      font-family: "Bebas Neue", sans-serif;
      font-size: clamp(2.8rem, 4vw, 4rem);
      letter-spacing: 2px;
      line-height: 0.95;
    }

    .hero p {
      margin-top: 18px;
      font-size: 1.05rem;
      line-height: 1.7;
      color: var(--stone);
    }

    .cta-row {
      margin-top: 28px;
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn {
      padding: 12px 20px;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      border: 1px solid transparent;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .btn-primary {
      background: var(--ember);
      color: #111;
      box-shadow: 0 10px 24px rgba(255, 95, 31, 0.35);
    }

    .btn-outline {
      color: var(--smoke);
      border-color: rgba(255, 255, 255, 0.2);
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    }

    .hero-panel {
      background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 24px;
      padding: 26px;
      box-shadow: 0 22px 44px var(--shadow);
    }

    .hero-panel h3 {
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .hero-panel ul {
      list-style: none;
      margin-top: 16px;
      display: grid;
      gap: 14px;
      color: var(--stone);
    }

    .hero-panel li {
      display: flex;
      gap: 12px;
      align-items: center;
      font-size: 0.95rem;
    }

    .pulse {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: var(--ember);
      box-shadow: 0 0 0 0 rgba(255, 95, 31, 0.6);
      animation: pulse 2.2s infinite;
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(255, 95, 31, 0.6);
      }

      70% {
        box-shadow: 0 0 0 12px rgba(255, 95, 31, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(255, 95, 31, 0);
      }
    }

    .section-title {
      margin: 70px 0 20px;
      font-size: 1.4rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--stone);
    }

    .games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 22px;
    }

    .game-card {
      background: linear-gradient(160deg, var(--steel), var(--slate));
      border-radius: 20px;
      padding: 22px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 16px 30px var(--shadow);
      display: flex;
      flex-direction: column;
      gap: 16px;
      position: relative;
      overflow: hidden;
      transition: transform 0.2s ease, border-color 0.2s ease;
    }

    .game-media {
      display: grid;
      grid-template-columns: 72px 1fr;
      gap: 14px;
      align-items: stretch;
    }

    .media-slot {
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.04);
      display: grid;
      place-items: center;
      color: var(--stone);
      font-size: 0.7rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      text-align: center;
      padding: 10px;
    }

    .media-slot.icon {
      height: 72px;
      width: 72px;
    }

    .media-slot.icon img {
      max-width: 100%;
    }


    .media-slot.art img {
      max-width: 100%;
    }

    .game-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255, 255, 255, 0.2);
    }

    .game-tag {
      font-size: 0.7rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--ember);
    }

    .game-title {
      font-size: 1.5rem;
      font-family: "Bebas Neue", sans-serif;
      letter-spacing: 1px;
    }

    .game-meta {
      color: var(--stone);
      font-size: 0.9rem;
    }

    .game-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .coming {
      border: 1px dashed rgba(255, 255, 255, 0.2);
      background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    }

    .studio {
      margin-top: 70px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 18px;
    }

    .studio-card {
      padding: 18px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: var(--stone);
      font-size: 0.95rem;
      line-height: 1.6;
    }

    footer {
      margin-top: 80px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 0.85rem;
      color: var(--stone);
    }

    footer a {
      color: var(--stone);
      text-decoration: none;
    }

    footer a:hover {
      color: var(--smoke);
    }

    .reveal {
      opacity: 0;
      transform: translateY(20px);
      animation: reveal 0.8s ease forwards;
    }

    .reveal.delay-1 {
      animation-delay: 0.1s;
    }

    .reveal.delay-2 {
      animation-delay: 0.2s;
    }

    .reveal.delay-3 {
      animation-delay: 0.3s;
    }

    @keyframes reveal {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 900px) {
      .hero {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 600px) {
      .page {
        padding: 32px 18px 70px;
      }

      .nav {
        width: 100%;
        justify-content: flex-start;
      }
    }