    body {
      margin: 0;
      font-family: 'Trebuchet MS', Tahoma, sans-serif;
      background: #0b0f1a;
      color: #e5e7eb;
    }

    /* Top RPG-style header */
    .header {
      background: linear-gradient(180deg, #111827, #020617);
      border-bottom: 3px solid #22c55e;
      padding: 20px;
      text-align: center;
    }

    .header h1 {
      margin: 0;
      font-size: 2.2rem;
      letter-spacing: 2px;
    }

    .header p {
      margin-top: 10px;
      font-size: 0.95rem;
      color: #9ca3af;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Container */
    .container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 40px;
      max-width: 1200px;
      margin: auto;
    }

    /* RPG-style card */
    .card {
      position: relative;
      background: #020617;
      border: 2px solid #1f2937;
      border-radius: 12px;
      padding: 20px;
      transition: all 0.3s ease;
      box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
    }

    .card:hover {
      transform: translateY(-6px);
      border-color: #22c55e;
      box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    }

    .card h2 {
      margin: 0;
      font-size: 1.6rem;
      color: #22c55e;
    }

    .meta {
      font-size: 0.8rem;
      color: #9ca3af;
      margin: 8px 0 15px 0;
    }

    .desc {
      font-size: 0.9rem;
      line-height: 1.4;
    }

    /* RPG UI style footer bar inside card */
    .footer-bar {
      margin-top: 15px;
      padding-top: 10px;
      border-top: 1px solid #1f2937;
      font-size: 0.8rem;
      display: flex;
      justify-content: space-between;
      color: #6b7280;
    }

    /* Coming Soon Overlay */
    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.85);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
      font-size: 1.3rem;
      font-weight: bold;
      border-radius: 12px;
    }

    .coming-soon:hover .overlay {
      opacity: 1;
    }

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

    .logo {
  width: 80px;
  margin-bottom: 10px;
  image-rendering: pixelated; /* 🔥 great if it's pixel art */
}