@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600&display=swap');

body {
  font-family: 'Cinzel', serif;
  background: radial-gradient(circle at center, #1a1a1a 0%, #0b0b0b 100%);
  color: #ffd700;
  text-align: center;
  margin: 0;
  padding: 0;
}

.game-container {
  max-width: 700px;
  margin: 30px auto;
  background: rgba(25, 25, 25, 0.95);
  border: 2px solid #ffd700;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 0 25px #ffcc00;
}
.cards {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.card {
  width: 60px;
  height: 90px;
  border: 1.5px solid black;
  border-radius: 8px;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5px;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  user-select: none;
  cursor: default;
  color: black;
  position: relative;
}

.card.red {
  color: red;
}

.card .top-left,
.card .bottom-right {
  font-size: 16px;
}
.card-back {
  background-color: #222;
  color: transparent;
  border-radius: 6px;
  width: 50px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 24px;
  border: 2px solid #555;
  user-select: none;
}


.card .bottom-right {
  transform: rotate(180deg);
  position: absolute;
  bottom: 5px;
  right: 5px;
}

.card .center {
  font-size: 32px;
  text-align: center;
  line-height: 1;
}


.cards {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 15px 0;
  flex-wrap: wrap;
}

.card {
  width: 60px;
  height: 90px;
  background: white;
  color: black;
  border-radius: 8px;
  font-weight: bold;
  font-size: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 6px;
  box-shadow: 2px 2px 8px #000;
  position: relative;
}

.card.red {
  color: crimson;
}

.card.hidden {
  background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/5/54/Card_back_01.svg/1024px-Card_back_01.svg.png') center center / cover no-repeat;
  color: transparent;
  box-shadow: none;
}

.hand {
  margin: 10px 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hand.active {
  border: 2px dashed gold;
  padding: 5px;
  margin-top: 10px;
}

.actions button {
  padding: 10px 20px;
  margin: 5px;
  font-weight: bold;
  border-radius: 5px;
  background-color: #ffd700;
  border: none;
  color: #000;
  cursor: pointer;
  transition: 0.3s;
}

.actions button:hover {
  background-color: #e6c200;
}
