/* Game Page Styles */
.game-wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: var(--space-3);
  text-align: center;
}

.game-description {
  max-width: 800px;
  margin: 0 auto var(--space-4);
}

.game-container {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(5, 9, 20, 0.7);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(160, 233, 255, 0.2);
  margin-bottom: var(--space-4);
}

.game-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--twilight-navy), var(--deep-space));
  z-index: 1;
}

.game-placeholder-content {
  max-width: 400px;
  text-align: center;
}

.game-placeholder h2 {
  margin-bottom: var(--space-3);
  color: var(--celestial-gold);
}

.game-controls {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  margin-bottom: var(--space-3);
}

.btn-fullscreen,
.btn-sound {
  background: rgba(160, 233, 255, 0.1);
  color: var(--sky-glow-blue);
  border: 1px solid rgba(160, 233, 255, 0.3);
  padding: var(--space-1) var(--space-3);
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  font-weight: 600;
}

.btn-fullscreen:hover,
.btn-sound:hover {
  background: rgba(160, 233, 255, 0.2);
  color: var(--star-white);
}

.game-navigation {
  margin-top: var(--space-3);
}

/* Game Cards Custom Hover Effects */
.game-card[data-game="sky-reel"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(245, 197, 66, 0) 70%, rgba(245, 197, 66, 0.1) 100%);
  opacity: 0;
  transition: opacity var(--transition-speed) ease;
  z-index: 1;
  pointer-events: none;
}

.game-card[data-game="sky-reel"]:hover::before {
  opacity: 1;
}

.game-card[data-game="cloud-maze"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(160, 233, 255, 0) 70%, rgba(160, 233, 255, 0.1) 100%);
  opacity: 0;
  transition: opacity var(--transition-speed) ease;
  z-index: 1;
  pointer-events: none;
}

.game-card[data-game="cloud-maze"]:hover::before {
  opacity: 1;
}

.game-card[data-game="rune-flip"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(138, 79, 255, 0) 70%, rgba(138, 79, 255, 0.1) 100%);
  opacity: 0;
  transition: opacity var(--transition-speed) ease;
  z-index: 1;
  pointer-events: none;
}

.game-card[data-game="rune-flip"]:hover::before {
  opacity: 1;
}

.game-card[data-game="star-spinner"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 108, 173, 0) 70%, rgba(255, 108, 173, 0.1) 100%);
  opacity: 0;
  transition: opacity var(--transition-speed) ease;
  z-index: 1;
  pointer-events: none;
}

.game-card[data-game="star-spinner"]:hover::before {
  opacity: 1;
}

.game-card[data-game="celestika-clash"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(138, 79, 255, 0) 70%, rgba(138, 79, 255, 0.1) 100%);
  opacity: 0;
  transition: opacity var(--transition-speed) ease;
  z-index: 1;
  pointer-events: none;
}

.game-card[data-game="celestika-clash"]:hover::before {
  opacity: 1;
}

.game-card[data-game="ascendant-dice"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(245, 197, 66, 0) 70%, rgba(245, 197, 66, 0.1) 100%);
  opacity: 0;
  transition: opacity var(--transition-speed) ease;
  z-index: 1;
  pointer-events: none;
}

.game-card[data-game="ascendant-dice"]:hover::before {
  opacity: 1;
}