* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: linear-gradient(135deg, #ffe91f, #04040e);
  color: rgb(0, 0, 0);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgb(87, 84, 84);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #ffe91f;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #ffe91f;
}

.hero {
  text-align: center;
  margin: 40px 0;
}

.hero h2 {
  font-size: 32px;
}

.hero p {
  opacity: 0.8;
}

.game-container {
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 90px);
  gap: 15px;
  justify-content: center;
  margin: 30px 0;
}

.cell {
  width: 90px;
  height: 90px;
  background: #0f1301;
  color: #ffffff;
  font-size: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}


#spin-btn {
  padding: 12px 30px;
  font-size: 18px;
  border: none;
  border-radius: 25px;
  background: #0f1301;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

#spin-btn:hover {
  background: #ff9500;
  transform: scale(1.05);
}

#result {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
  color: #ff9500;
}

.footer {
  margin-top: auto;
  text-align: center;
  padding: 20px;
  background: #333;
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: repeat(3, 70px);
  }

  .cell {
    width: 70px;
    height: 70px;
  }

  .navbar {
    flex-direction: column;
    gap: 10px;
  }
}