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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Inter, Arial, Helvetica, sans-serif;
      background: #050505;
      color: #ffffff;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 28%),
        radial-gradient(circle at 80% 0%, rgba(255,255,255,0.06), transparent 24%),
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: auto, auto, 64px 64px, 64px 64px;
      pointer-events: none;
      z-index: -1;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }

    header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 10;
      backdrop-filter: blur(18px);
      background: rgba(5, 5, 5, 0.72);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav {
      height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      font-size: 18px;
      letter-spacing: 0.22em;
      font-weight: 800;
      display: flex;
      align-items: center;
      min-height: 38px;
    }

    .logo img {
      display: block;
      max-height: 44px;
      max-width: 220px;
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      gap: 28px;
      font-size: 13px;
      color: #bdbdbd;
    }

    .nav-links a:hover {
      color: #ffffff;
    }

    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 74px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 60px;
      align-items: center;
    }

    .eyebrow {
      color: #bdbdbd;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      font-size: 12px;
      margin-bottom: 26px;
    }

    h1 {
      font-size: clamp(52px, 8vw, 118px);
      line-height: 0.92;
      letter-spacing: -0.08em;
      margin-bottom: 32px;
    }

    .hero p {
      max-width: 620px;
      color: #b8b8b8;
      font-size: 18px;
      line-height: 1.75;
      margin-bottom: 38px;
    }

    .buttons {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn {
      padding: 15px 22px;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 999px;
      font-size: 14px;
      transition: 0.25s ease;
    }

    .btn.primary {
      background: #ffffff;
      color: #000000;
      border-color: #ffffff;
    }

    .btn:hover {
      transform: translateY(-2px);
      border-color: #ffffff;
    }

    .showcase {
      position: relative;
      min-height: 520px;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 34px;
      background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02));
      overflow: hidden;
      box-shadow: 0 35px 120px rgba(0,0,0,0.45);
    }

    .showcase::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.16), transparent 55%),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.035), rgba(255,255,255,0.035) 1px, transparent 1px, transparent 10px);
      opacity: 0.65;
    }

    .showcase-content {
      position: absolute;
      inset: 34px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .showcase-title {
      font-size: 46px;
      font-weight: 900;
      line-height: 0.95;
      letter-spacing: -0.05em;
      margin-bottom: 18px;
    }

    .showcase-meta {
      color: #cfcfcf;
      font-size: 14px;
      line-height: 1.7;
    }

    section {
      padding: 110px 0;
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 30px;
      margin-bottom: 42px;
    }

    h2 {
      font-size: clamp(36px, 5vw, 70px);
      letter-spacing: -0.06em;
      line-height: 0.95;
    }

    .section-head p, .about-text {
      max-width: 660px;
      color: #a9a9a9;
      line-height: 1.8;
      font-size: 16px;
    }

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

    .card {
      border: 1px solid rgba(255,255,255,0.11);
      background: rgba(255,255,255,0.035);
      border-radius: 26px;
      padding: 28px;
      min-height: 220px;
      transition: 0.25s ease;
    }

    .card:hover {
      transform: translateY(-5px);
      border-color: rgba(255,255,255,0.35);
      background: rgba(255,255,255,0.06);
    }

    .card span {
      display: block;
      color: #777;
      font-size: 12px;
      letter-spacing: 0.2em;
      margin-bottom: 26px;
    }

    .card h3 {
      font-size: 23px;
      margin-bottom: 16px;
    }

    .card p {
      color: #a8a8a8;
      line-height: 1.7;
      font-size: 15px;
    }

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

    .game {
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 30px;
      overflow: hidden;
      background: #0d0d0d;
    }

    .game-art {
      height: 280px;
      background:
        linear-gradient(135deg, rgba(255,255,255,0.18), transparent),
        radial-gradient(circle at 50% 35%, rgba(255,255,255,0.18), transparent 34%),
        #111;
      position: relative;
    }

    .game-art::after {
      content: "GAME ART";
      position: absolute;
      inset: auto 24px 22px auto;
      color: rgba(255,255,255,0.32);
      font-size: 12px;
      letter-spacing: 0.22em;
    }

    .game-body {
      padding: 26px;
    }

    .status {
      color: #cfcfcf;
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .game h3 {
      font-size: 24px;
      margin-bottom: 12px;
    }

    .game p {
      color: #a7a7a7;
      line-height: 1.65;
      font-size: 15px;
      min-height: 74px;
    }

    .coverage {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .tag {
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 999px;
      padding: 12px 18px;
      color: #cfcfcf;
      background: rgba(255,255,255,0.035);
    }

    .contact-box {
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 34px;
      padding: 46px;
      background: linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.025));
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 34px;
    }

    .contact-box h2 {
      margin-bottom: 20px;
    }

    .contact-box p {
      color: #a9a9a9;
      line-height: 1.8;
    }

    .contact-list {
      display: grid;
      gap: 14px;
    }

    .contact-item {
      padding: 18px;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 18px;
      color: #dcdcdc;
      background: rgba(0,0,0,0.2);
    }

    footer {
      padding: 34px 0;
      color: #777;
      font-size: 13px;
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    @media (max-width: 900px) {
      .hero-grid,
      .contact-box {
        grid-template-columns: 1fr;
      }

      .cards,
      .games {
        grid-template-columns: 1fr;
      }

      .nav-links {
        display: none;
      }

      section {
        padding: 80px 0;
      }

      .showcase {
        min-height: 420px;
      }
    }
  
.game-art{background-size:cover;background-position:center;}
