body {
  font-family: Arial, sans-serif;
}

.scoreboard {
  font-size: 1.3rem;
  color: #003366;
}

.score {
  font-size: 2rem;
  color: #c31700;
}

.card-symbol {
  display: inline-block;
  margin: 2px 6px;
  font-family: 'Consolas', monospace;
  font-size: 1.34rem;
  vertical-align: middle;
}

.red {
  color: #e30022;
}

.black {
  color: #222;
}

.rank {
  font-size: 1.08rem;
  color: #343a40;
  margin-top: 8px;
}

.win {
  font-weight: bold;
  color: #09791e;
  font-size: 1.5rem;
}

.tie {
  font-weight: bold;
  color: #222292;
  font-size: 1.24rem;
}

.champion {
  font-size: 2.2rem;
  font-weight: bold;
  color: #ebc500;
  text-shadow: 1px 2px 6px #d19600;
  margin-top: 22px;
}
.game-btn {
  display: block;
  width: 85%;
  margin: 0.7em auto;
  padding: 0.8em 1.2em;
  border-radius: 9px;
  font-size: 1.08em;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: background 0.15s, color 0.15s, transform 0.12s;
  text-align: center;
  color: #fff;
  border: none;
  outline: none;
}
.game-btn.tic-tac { background: #32A852; }
.game-btn.santa-free { background: #CC0033; }
.game-btn.present { background: #F2A117; }
.game-btn.puzzle { background: #20A1CF; }
.game-btn.word-game { background: #8173C4; }
.game-btn.poker {background: #ADD8 ;}	

.game-btn:hover,
.game-btn:focus {
  filter: brightness(1.15);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  transform: translateY(-2px) scale(1.03);
  color: #FFF7EB;
}

@media(max-width:600px) {
  .dropdown-content { min-width: 95vw; left: 2.5vw; transform: none; }
  .game-btn { width: 98%; font-size: 1em; }
}

