/* General Styling */
body {
  font-family: Arial, sans-serif;
  background-color: #1e1e1e;
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

h1 {
  margin-top: 20px;
  font-size: 2rem;
}

/* Game Area */
#game-area {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 20px;
}

/* Player and Dealer Sections */
#dealer, #player {
  background: #333;
  padding: 20px;
  border-radius: 10px;
  width: 40%;
  min-width: 300px;
  min-height: 380px;
  margin: 0 10px;
}

h2 {
  margin: 0 0 10px;
}

/* Cards Display */
#dealer-cards, #player-cards {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
}

#dealer-cards img, #player-cards img {
  width: 100px;
  height: auto;
  border-radius: 5px;
}

/* Score Styling */
#dealer-score, #player-score {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 10px 0;
}

/* Buttons */
button {
  background-color: #ffcc00;
  border: none;
  padding: 10px 20px;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 10px;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

button:hover {
  background-color: #e6b800;
}

button:disabled {
  background-color: #888;
  cursor: not-allowed;
}

/* Game Result */
#result {
  font-size: 1.5rem;
  margin-top: 20px;
  font-weight: bold;
  color: #ffcc00;
}

@media (max-width: 768px) {
  #dealer {
    margin-bottom: 20px;
  }
}
