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

    body {
      font-family: 'Segoe UI', Tahoma, sans-serif;
      background-color: #0e0e0e;
      color: #e0e0e0;
      line-height: 1.6;
    }

    header {
      background: #111;
      padding: 20px;
      text-align: center;
      border-bottom: 2px solid #c6a664;
    }

    header h1 {
      font-size: 2rem;
      color: #c6a664;
      letter-spacing: 2px;
    }

    nav {
      margin-top: 10px;
    }

    nav a {
      color: #e0e0e0;
      margin: 0 10px;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s;
    }

    nav a:hover {
      color: #c6a664;
    }

    section {
      padding: 80px 20px;
      text-align: center;
    }

    .hero {
      background: url('https://images.unsplash.com/photo-1614064642370-3b9bd0b054b5?auto=format&fit=crop&w=1400&q=60') center/cover no-repeat;
      color: white;
      text-shadow: 1px 1px 8px black;
      height: 90vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .hero h2 {
      font-size: 2.5rem;
      margin-bottom: 15px;
    }

    .hero p {
      font-size: 1.2rem;
      max-width: 600px;
    }

    .games {
      background: #1a1a1a;
    }

    .games h2 {
      color: #c6a664;
      margin-bottom: 20px;
    }

    .game-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .game-card {
      background: #111;
      border: 1px solid #333;
      border-radius: 8px;
      width: 250px;
      padding: 20px;
      transition: transform 0.3s, border-color 0.3s;
    }

    .game-card:hover {
      transform: scale(1.05);
      border-color: #c6a664;
    }

    .contact {
      background: #0f0f0f;
    }

    .contact h2 {
      color: #c6a664;
      margin-bottom: 20px;
    }

    .discord-btn {
      background: #5865F2;
      color: white;
      padding: 12px 25px;
      border: none;
      border-radius: 6px;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s;
      text-decoration: none;
      display: inline-block;
    }

    .discord-btn:hover {
      background: #4752C4;
    }

    footer {
      background: #111;
      text-align: center;
      padding: 15px;
      font-size: 0.9rem;
      border-top: 1px solid #222;
      color: #777;
    }
