/* Game Detail Page Styles */
.detail-header {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}
.detail-header img {
  width: 320px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}
.detail-info {
  flex: 1;
}
.detail-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 12px;
}
.detail-rating {
  color: #ff9800;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.detail-desc {
  font-size: 1rem;
  color: #444;
  margin-bottom: 16px;
}
.related-games {
  margin-top: 40px;
}
.related-games .games-grid {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .detail-header {
    flex-direction: column;
    gap: 16px;
  }
  .detail-header img {
    width: 100%;
    height: 160px;
  }
}

body {
  background: #181A2A;
  color: #D1D5DB;
}

.detail-header, .detail-footer {
  background: #23264A;
  color: #FFFFFF;
}

.detail-title, h1, h2, h3 {
  color: #6C63FF;
}

.btn, button {
  background: linear-gradient(90deg, #6C63FF 0%, #00C3FF 100%);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 2px 8px #23264A;
}

.card, .detail-panel, .panel {
  background: #23264A;
  border: 1px solid #31345B;
}

a {
  color: #00C3FF;
}

a:hover {
  color: #00FFB0;
}

hr, .divider {
  border-color: #31345B;
} 