body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: linear-gradient(to bottom, #1a1a1a, #2c2c2c);
      color: #fff;
    }

    header {
      background: #000;
      padding: 20px;
      text-align: center;
      box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }

    header h1 {
      margin: 0;
      font-size: 2.5em;
      color: #ffd700;
      text-transform: uppercase;
    }

    nav {
      background: #333;
      padding: 10px;
      text-align: center;
    }

    nav a {
      color: #ffd700;
      margin: 0 15px;
      text-decoration: none;
      font-weight: 700;
    }

    nav a:hover {
      color: #fff;
    }

    .hero {
      background-image: url("martin.webp");
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      text-align: center;
      padding: 100px 20px;
      color: #fff;
    }

    .hero h2 {
      font-size: 3em;
      margin: 0;
      text-shadow: 2px 2px 5px #000;
    }

    .hero button {
      background: #ffd700;
      color: #000;
      border: none;
      padding: 15px 30px;
      font-size: 1.2em;
      cursor: pointer;
      margin-top: 20px;
      border-radius: 5px;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .hero button:hover {
      background: #fff;
      transform: scale(1.1);
      box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
    }

    .about, .games, .bonuses {
      padding: 50px 20px;
      text-align: center;
    }

    .about h2, .games h2, .bonuses h2 {
      font-size: 2em;
      color: #ffd700;
    }

    .about ul {
      list-style: none;
      padding: 0;
      text-align: left;
      max-width: 800px;
      margin: 20px auto;
    }

    .about ul li {
      margin: 10px 0;
      font-size: 1.1em;
    }

    .about ul li::before {
      content: "🎰 ";
      color: #ffd700;
    }

    .game-grid, .bonus-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }

    .game-card, .bonus-card {
      background: #333;
      padding: 10px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    }

    .game-card img {
      width: 100%;
      border-radius: 5px;
    }

    .game-card h3, .bonus-card h3 {
      margin: 10px 0;
      font-size: 1.2em;
    }

    .bonus-card {
      text-align: center;
    }

    .bonus-card p {
      margin: 5px 0;
      color: #ccc;
    }

    .bonus-card button {
      background: #ff4500;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .bonus-card button:hover {
      background: #ff6347;
    }

    footer {
      background: #000;
      text-align: center;
      padding: 20px;
      margin-top: 50px;
    }

    footer p {
      margin: 0;
      color: #ffd700;
    }