/* Game Page Styles */

/* Game Hero Section */
.game-hero {
  background: linear-gradient(135deg, #2d1b4e, #1a0d2e);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.game-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(138, 43, 226, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.game-hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.game-character {
  flex: 0 0 300px;
}

.game-character .character-frame {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #d4af37, #ffd700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
  animation: float 3s ease-in-out infinite;
}

.game-character .character {
  font-size: 8rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.game-info {
  flex: 1;
}

.game-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.game-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 30px;
  max-width: 600px;
}

.game-features {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 175, 55, 0.1);
  padding: 12px 20px;
  border-radius: 25px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.feature:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 1.5rem;
}

.feature span:last-child {
  font-weight: 500;
  color: #d4af37;
}

.btn-play {
  background: linear-gradient(135deg, #d4af37, #ffd700);
  color: #1a0d2e;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 15px 40px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-play:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(212, 175, 55, 0.4);
}

/* Game Details Section */
.game-details {
  padding: 80px 0;
  background: #1a0d2e;
}

.game-details-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.game-screenshots h2,
.game-instructions h2 {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 30px;
  text-align: center;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.screenshot-placeholder {
  background: linear-gradient(135deg, #2d1b4e, #1a0d2e);
  border: 2px solid #d4af37;
  border-radius: 15px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.screenshot-placeholder:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.screenshot-placeholder span {
  font-size: 3rem;
  display: block;
  margin-bottom: 10px;
}

.screenshot-placeholder p {
  color: #d4af37;
  font-weight: 500;
}

.instructions-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.instruction {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(212, 175, 55, 0.05);
  padding: 25px;
  border-radius: 15px;
  border-left: 4px solid #d4af37;
  transition: all 0.3s ease;
}

.instruction:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateX(5px);
}

.step-number {
  background: linear-gradient(135deg, #d4af37, #ffd700);
  color: #1a0d2e;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content h3 {
  color: #d4af37;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.step-content p {
  color: #e0e0e0;
  line-height: 1.6;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .game-hero-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .game-character {
    flex: none;
  }

  .game-character .character-frame {
    width: 250px;
    height: 250px;
  }

  .game-character .character {
    font-size: 6rem;
  }

  .game-title {
    font-size: 2.5rem;
  }

  .game-features {
    justify-content: center;
  }

  .game-details-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .screenshots-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .game-hero {
    padding: 60px 0;
  }

  .game-character .character-frame {
    width: 200px;
    height: 200px;
  }

  .game-character .character {
    font-size: 4rem;
  }

  .game-title {
    font-size: 2rem;
  }

  .game-description {
    font-size: 1rem;
  }

  .game-features {
    flex-direction: column;
    align-items: center;
  }

  .feature {
    width: 100%;
    justify-content: center;
  }

  .instruction {
    flex-direction: column;
    text-align: center;
  }
}
