    :root {
      --bg-main: #050814;
      --bg-alt: #0c1020;
      --accent: #f4b534;
      --accent-soft: rgba(244, 181, 52, 0.12);
      --text-main: #f7f7ff;
      --text-muted: #a5acc7;
      --card-bg: #111526;
      --border-subtle: rgba(255, 255, 255, 0.06);
      --radius-lg: 18px;
      --radius-xl: 26px;
      --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.35);
      --max-width: 1120px;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
      background: radial-gradient(circle at top, #11172b 0, #050814 55%, #000 100%);
      color: var(--text-main);
      line-height: 1.6;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
      border-radius: 16px;
    }

    .page {
      min-height: 100vh;
      padding: 24px 16px 64px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-inner {
      width: 100%;
      max-width: var(--max-width);
    }

    /* Header */

    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 40px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .brand-logo {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: radial-gradient(circle at 30% 20%, #ffd66b, #f0852d);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: #251300;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    }

    .brand-name {
      font-size: 1.1rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #fbe9b9;
    }

    nav {
      display: flex;
      gap: 12px;
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    nav a {
      padding: 6px 10px;
      border-radius: 999px;
      transition: background 0.2s ease, color 0.2s ease;
    }

    nav a:hover {
      background: rgba(255, 255, 255, 0.06);
      color: #ffffff;
    }

    /* Hero */

    .hero {
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
      gap: 32px;
      align-items: center;
      margin-bottom: 56px;
    }

    .hero-kicker {
      text-transform: uppercase;
      letter-spacing: 0.2em;
      font-size: 0.75rem;
      color: var(--accent);
      margin-bottom: 12px;
    }

    .hero-title {
      font-size: clamp(2.2rem, 4vw, 3rem);
      line-height: 1.1;
      margin-bottom: 14px;
    }

    .hero-title span {
      color: var(--accent);
    }

    .hero-subtitle {
      font-size: 0.98rem;
      color: var(--text-muted);
      max-width: 520px;
      margin-bottom: 20px;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 24px;
    }

    .hero-badge {
      font-size: 0.8rem;
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(8, 10, 20, 0.8);
      color: var(--text-muted);
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .btn {
      border-radius: 999px;
      padding: 10px 18px;
      font-size: 0.92rem;
      font-weight: 500;
      border: 1px solid transparent;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
      transition: transform 0.12s ease, box-shadow 0.12s ease,
        background 0.15s ease, border-color 0.15s ease;
    }

    .btn-primary {
      background: linear-gradient(135deg, #f4b534, #ff8f3c);
      color: #1b1204;
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.6);
    }

    .btn-ghost {
      background: rgba(9, 12, 28, 0.9);
      color: var(--text-main);
      border-color: rgba(255, 255, 255, 0.14);
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.06);
    }

    .hero-media {
      background: radial-gradient(circle at 0 0, #f4b53433 0, transparent 55%);
      border-radius: var(--radius-xl);
      padding: 14px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      box-shadow: var(--shadow-soft);
    }

    .hero-media-inner {
      background: linear-gradient(145deg, #10152d, #070a16);
      border-radius: calc(var(--radius-xl) - 6px);
      padding: 16px;
      position: relative;
      overflow: hidden;
    }

    .hero-media-tag {
      position: absolute;
      top: 14px;
      left: 16px;
      font-size: 0.75rem;
      padding: 3px 10px;
      border-radius: 999px;
      background: var(--accent-soft);
      color: var(--accent);
    }

    .hero-media-image {
      border-radius: 18px;
      overflow: hidden;
      margin-bottom: 10px;
    }

    .hero-media-caption {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    /* Sections */

    section {
      margin-bottom: 56px;
    }

    .section-kicker {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--accent);
      margin-bottom: 4px;
    }

    .section-title {
      font-size: 1.4rem;
      margin-bottom: 8px;
    }

    .section-subtitle {
      font-size: 0.95rem;
      color: var(--text-muted);
      max-width: 640px;
    }

    /* Vision */

    .vision-body {
      margin-top: 18px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-subtle);
      padding: 14px 16px;
      background: rgba(6, 8, 20, 0.7);
      font-size: 0.92rem;
      color: var(--text-muted);
    }

    .vision-points {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 18px;
      margin-top: 10px;
      font-size: 0.9rem;
    }

    .vision-pill {
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* Game cards */

    .games-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
      margin-top: 24px;
    }

    .game-card {
      background: radial-gradient(circle at top, #181f3a, #080a16);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-subtle);
      padding: 14px 14px 16px;
      box-shadow: var(--shadow-soft);
      display: flex;
      flex-direction: column;
      gap: 10px;
      position: relative;
      overflow: hidden;
    }

    .game-tagline-pill {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--accent);
      padding-bottom: 2px;
    }

    .game-title {
      font-size: 1.05rem;
      font-weight: 600;
      margin-bottom: 2px;
	  height: 50px;
    }

    .game-genre {
      font-size: 0.82rem;
      color: var(--text-muted);
      margin-bottom: 4px;
    }

    .game-image {
      border-radius: 12px;
      margin: 6px 0;
      background: linear-gradient(135deg, #2b345f, #151930);
      height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .game-desc {
      font-size: 0.88rem;
      color: var(--text-muted);
      flex: 1;
    }

    .game-bullets {
      margin-top: 8px;
      padding-left: 18px;
      font-size: 0.86rem;
      color: var(--text-muted);
    }

    .game-footer {
      margin-top: 10px;
      font-size: 0.8rem;
      color: var(--accent);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .pill-soft {
      padding: 3px 8px;
      border-radius: 999px;
      background: rgba(244, 181, 52, 0.12);
      color: var(--accent);
      font-size: 0.72rem;
    }

    /* CTA section */

    .cta {
      border-radius: var(--radius-xl);
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: radial-gradient(circle at top left, #f4b53422, #050814 60%);
      padding: 22px 18px;
      display: grid;
      grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.1fr);
      gap: 20px;
      align-items: center;
    }

    .cta-title {
      font-size: 1.3rem;
      margin-bottom: 6px;
    }

    .cta-text {
      font-size: 0.96rem;
      color: var(--text-muted);
      max-width: 520px;
      margin-bottom: 14px;
    }

    .cta-mini {
      font-size: 0.86rem;
      color: var(--text-muted);
      margin-top: 10px;
    }

    .cta-right {
      text-align: right;
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .cta-right span {
      display: inline-block;
      margin-bottom: 6px;
      font-weight: 500;
      color: var(--accent);
    }

    /* Footer */

    footer {
      margin-top: 40px;
      padding-top: 18px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      font-size: 0.8rem;
      color: var(--text-muted);
      display: flex;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

    /* Responsive */

    @media (max-width: 900px) {
      .hero {
        grid-template-columns: minmax(0, 1fr);
      }
      .hero-media {
        order: -1;
      }
      .games-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .cta {
        grid-template-columns: minmax(0, 1fr);
        text-align: left;
      }
      .cta-right {
        text-align: left;
      }
    }

    @media (max-width: 640px) {
      header {
        flex-direction: column;
        align-items: flex-start;
      }
      .games-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .page {
        padding-inline: 14px;
      }
    }
	
	
	/* video */
