/* Game Page Specific Styles */
.game-section {
  padding: 4rem 2rem;
}

.game-container {
  max-width: 1200px;
  margin: 0 auto;
}

.game-section h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--accent-color);
}

.game-iframe-container {
  position: relative;
  width: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  margin-bottom: 3rem;
  background-color: #000;
}

.game-iframe {
  border: none;
  display: block;
}

.game-description {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
}

.game-description h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.game-description p {
  margin-bottom: 1.5rem;
}

.game-description ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.game-description li {
  margin-bottom: 0.5rem;
}

.game-controls {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.game-control-button {
  background-color: var(--accent-color);
  color: var(--text-dark);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  margin: 0 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.game-control-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.fullscreen-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color var(--transition-speed) ease;
}

.fullscreen-button:hover {
  background-color: var(--accent-color);
}

.game-fullscreen .game-iframe-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  border-radius: 0;
}