/* Tic-Tac-Toe Styles */
.game-board {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  grid-gap: 10px;
  justify-content: center;
  margin: 20px auto;
  padding: 10px;
  background-color: #000; /* Black background for contrast */
  border: 2px solid #FFD700; /* Golden border around the grid */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); /* Golden glowing effect */
}

.cell {
  width: 100px;
  height: 100px;
  background-color: #222; /* Darker background for cells */
  color: #FFD700; /* Golden text color */
  font-size: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.6); /* Glowing effect on cells */
}

.cell:hover {
  background-color: #333; /* Slightly lighter background on hover */
  transform: scale(1.1); /* Slightly enlarge on hover */
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.9); /* Intensify glow on hover */
}

.winner {
  margin-top: 20px;
  font-size: 24px;
  color: #FFD700; /* Golden color for winner message */
  text-align: center;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6); /* Subtle glowing effect */
}

button {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 18px;
  background-color: #222; /* Darker background for button */
  color: #FFD700; /* Golden text color */
  border: 2px solid #FFD700;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, box-shadow 0.3s, transform 0.2s;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); /* Subtle glow */
}

button:hover {
  background-color: #333; /* Slightly lighter background on hover */
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.9); /* Intensify glow on hover */
  transform: scale(1.05); /* Slightly enlarge on hover */
}


/* Responsive Design Improvements */
@media (max-width: 1200px) {
  #main-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  #wheel-container,
  .game-board,
  #settings-container {
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  #main-container {
    padding: 10px;
  }

  #spin-btn {
    width: 80px;
    height: 80px;
    font-size: 14px;
  }

  .tabs {
    flex-wrap: wrap;
    gap: 10px;
  }

  .tab-button {
    flex: 1 1 auto;
    text-align: center;
  }

  button {
    font-size: 14px;
    padding: 10px 16px;
  }
}

@media (max-width: 480px) {
  #main-container {
    flex-direction: column;
    gap: 20px;
  }

  #wheel-container {
    max-width: 300px;
    height: auto;
  }

  .game-board {
    grid-template-columns: repeat(3, 80px);
  }

  .cell {
    width: 80px;
    height: 80px;
    font-size: 24px;
  }

  button {
    font-size: 12px;
    padding: 8px 12px;
  }

  .tabs {
    flex-direction: column;
    gap: 5px;
  }
}
