/* Game Details Page */
.game-details-page {
  background: var(--bg-primary);
  min-height: 100vh;
}

/* Game Hero Section */
.game-hero {
  background: var(--gradient-dark);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.game-hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.game-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 212, 255, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.game-hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-primary);
  text-align: center;
  padding: 0 20px;
}

.game-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--primary-color);
  border-radius: 50px;
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.badge-icon {
  font-size: 1.2rem;
}

.game-hero-title-badge,
.game-hero-subtitle-badge {
  display: block;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 8px 16px;
  margin: 0 auto 0.5rem auto;
  box-shadow: none;
  backdrop-filter: blur(10px);
  width: fit-content;
}

.game-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.game-hero-subtitle-badge {
  margin-bottom: 2rem;
}

.game-hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 0;
  color: #ffffff;
}

.game-hero-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.game-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface-primary);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  flex-shrink: 0;
  transition: var(--transition-normal);
}

.game-meta-item:hover {
  background: var(--surface-elevated);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.game-meta-item i {
  font-size: 1.2rem;
}

/* Game Content */
.game-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: start;
}

/* Game Main Content */
.game-main {
  background: var(--surface-primary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  min-height: 600px;
}

.game-info {
  margin-bottom: 3rem;
}

.game-info-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border-color);
  gap: 2rem;
}

.game-title-section h1 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
}

.game-platform-badge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.game-platform-badge.xbox {
  background: var(--gradient-secondary);
  color: var(--text-primary);
}

.game-platform-badge.pc {
  background: var(--gradient-primary);
  color: var(--text-primary);
}

.game-rating-section {
  text-align: right;
  min-width: 200px;
}

.game-rating-big {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-warning);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.game-rating-stars {
  color: var(--accent-warning);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.game-rating-count {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
}

.game-description {
  line-height: 1.8;
  color: var(--text-secondary);
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 800px;
}

.game-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.game-feature {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.game-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.game-feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.game-feature h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.game-feature p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* Game Sidebar */
.game-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.game-purchase {
  background: var(--surface-primary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.game-purchase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.game-purchase-image-container {
  width: 100%;
  max-width: 350px;
  margin: 0 auto 2rem;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 5;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.game-purchase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-purchase-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #3498db, #2980b9);
  display: none;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  text-align: center;
  padding: 1rem;
}

.game-purchase-price {
  margin-bottom: 2rem;
  text-align: center;
}

.game-price-current {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.game-price-original {
  font-size: 1.4rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 1rem;
  font-weight: 500;
}

.game-purchase-btn {
  width: 100%;
  padding: 1.25rem 2rem;
  background: var(--gradient-secondary);
  color: var(--text-primary);
  border: none;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-normal);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.game-purchase-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  filter: brightness(1.1);
}

.game-purchase-info {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 1.5rem;
}

.game-purchase-info h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.game-purchase-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.game-purchase-info ul {
  list-style: none;
  padding: 0;
}

.game-purchase-info li {
  color: #666;
  font-size: 0.9rem;
  padding: 0.25rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.game-purchase-info li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
}

/* Related Games */
.related-games {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 20px;
}

.related-games h2 {
  color: #2c3e50;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 2rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.related-game-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.related-game-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.related-game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.related-game-image {
  height: 180px;
  position: relative;
}

.related-game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-game-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #3498db, #2980b9);
  display: none;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  text-align: center;
  padding: 1rem;
}

.related-game-content {
  padding: 1rem;
}

.related-game-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.related-game-platform {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.related-game-platform.xbox {
  background: linear-gradient(135deg, #107c10, #0f5f0f);
  color: white;
}

.related-game-platform.pc {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
}

.related-game-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  margin-top: 0.5rem;
}

.related-game-price .original-price {
  text-decoration: line-through;
  color: #95a5a6;
  font-size: 0.9rem;
  font-weight: 400;
}

.related-game-price .current-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #27ae60;
}

.related-game-btn {
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  border: none;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.related-game-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Responsive Design */
@media (min-width: 1400px) {
  .game-content {
    max-width: 1600px;
    grid-template-columns: 1fr 450px;
    gap: 5rem;
  }

  .game-main {
    padding: 4rem;
  }

  .game-purchase {
    padding: 3rem;
  }
}

@media (max-width: 1280px) {
  .game-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1000px;
  }

  .game-sidebar {
    position: static;
    order: -1;
  }

  .game-main {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .game-hero {
    height: 50vh;
  }

  .game-hero-title {
    font-size: 2rem;
  }

  .game-hero-subtitle {
    font-size: 1rem;
  }

  .game-hero-meta {
    gap: 0.5rem;
    padding: 0 1rem;
    flex-direction: row;
  }

  .game-content {
    padding: 2rem 15px;
  }

  .game-main {
    padding: 1.5rem;
  }

  .game-info-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .game-title-section h1 {
    font-size: 2rem;
  }

  .game-rating-section {
    text-align: left;
  }

  .game-features {
    grid-template-columns: 1fr;
  }

  .screenshots-grid {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 360px) {
  .game-hero-title {
    font-size: 1.8rem;
  }

  .game-content {
    padding: 1rem 10px;
  }

  .game-main {
    padding: 1rem;
  }

  .game-title-section h1 {
    font-size: 1.8rem;
  }

  .game-price-current {
    font-size: 2rem;
  }
}

/* Game Tabs */
.game-tabs {
  display: flex;
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 0.75rem;
  margin-bottom: 3rem;
  border: 1px solid var(--border-color);
  overflow-x: auto;
  box-shadow: var(--shadow-sm);
}

.tab-btn {
  flex: 1;
  padding: 1.25rem 2rem;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 15px;
  transition: var(--transition-normal);
  white-space: nowrap;
  min-width: 150px;
  position: relative;
}

.tab-btn:hover {
  color: var(--primary-color);
  background: rgba(0, 212, 255, 0.1);
}

.tab-btn.active {
  background: var(--gradient-primary);
  color: var(--text-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.tab-content {
  position: relative;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* System Requirements */
.requirements-content h3 {
  color: var(--text-primary);
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.requirements-section {
  background: var(--surface-primary);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 1.5rem;
}

.requirements-section h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.requirements-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.requirements-list li {
  color: var(--text-secondary);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.requirements-list li:last-child {
  border-bottom: none;
}

.requirements-list .requirement-label {
  font-weight: 600;
  color: var(--text-primary);
}

.requirements-list .requirement-value {
  color: var(--text-secondary);
  text-align: right;
}

/* Reviews Section */
.reviews-content h3 {
  color: var(--text-primary);
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.reviews-summary {
  background: var(--surface-primary);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: center;
}

.rating-overview {
  text-align: center;
}

.rating-score {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.rating-stars {
  font-size: 1.5rem;
  color: var(--accent-warning);
  margin-bottom: 0.5rem;
}

.rating-count {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rating-label {
  min-width: 30px;
  color: var(--text-primary);
  font-weight: 600;
}

.rating-progress {
  flex: 1;
  height: 8px;
  background: var(--bg-secondary);
  border-radius: 4px;
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.rating-percent {
  min-width: 35px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-align: right;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-item {
  background: var(--surface-primary);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 1.5rem;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-weight: 700;
}

.reviewer-name {
  color: var(--text-primary);
  font-weight: 600;
}

.review-rating {
  color: var(--accent-warning);
  font-size: 1.1rem;
}

.review-text {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Media Gallery */
.media-content h3 {
  color: var(--text-primary);
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.media-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.media-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: var(--surface-primary);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
  cursor: pointer;
}

.media-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.media-item img,
.media-item video {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.media-placeholder {
  width: 100%;
  height: 200px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 2rem;
}

/* Game Features Sidebar */
.game-features-sidebar {
  background: var(--surface-primary);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.game-features-sidebar h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  color: var(--text-secondary);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Related Games Header */
.related-header {
  text-align: center;
  margin-bottom: 3rem;
}

.related-header h2 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
}

.related-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Updated Game Content */
.game-content {
  background: var(--bg-secondary);
  padding: 3rem 0;
}

.game-main {
  background: var(--surface-primary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.game-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.game-purchase {
  background: var(--surface-primary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

/* Updated Game Info */
.game-info-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-color);
}

.game-title-section h1 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
}

.game-platform-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.game-platform-badge.xbox {
  background: var(--gradient-secondary);
  color: var(--text-primary);
}

.game-platform-badge.pc {
  background: var(--gradient-primary);
  color: var(--text-primary);
}

.game-rating-section {
  text-align: right;
}

.game-rating-big {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-warning);
  margin-bottom: 0.5rem;
}

.game-rating-stars {
  color: var(--accent-warning);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.game-rating-count {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.game-description {
  line-height: 1.8;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.game-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.game-feature {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition-normal);
}

.game-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.game-feature-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.game-feature h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.game-feature p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Updated Purchase Section */
.game-purchase-image-container {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 1.5rem;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 5;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
}

.game-purchase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-purchase-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-weight: bold;
  text-align: center;
  padding: 1rem;
}

.game-purchase-price {
  margin-bottom: 1.5rem;
}

.game-price-current {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.game-price-original {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 1rem;
}

.game-purchase-btn {
  width: 100%;
  padding: 16px;
  background: var(--gradient-secondary);
  color: var(--text-primary);
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
  margin-bottom: 1rem;
}

.game-purchase-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  filter: brightness(1.1);
}

.game-purchase-info {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.game-purchase-info h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.game-purchase-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.game-purchase-info ul {
  list-style: none;
  padding: 0;
}

.game-purchase-info li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 0.25rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.game-purchase-info li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* Updated Related Games */
.related-games {
  background: var(--bg-primary);
  padding: 3rem 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.related-game-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.related-game-card {
  background: var(--surface-primary);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  height: 100%;
}

.related-game-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.related-game-image {
  height: 180px;
  position: relative;
}

.related-game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-game-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-weight: bold;
  text-align: center;
  padding: 1rem;
}

.related-game-content {
  padding: 1rem;
}

.related-game-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.related-game-platform {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.related-game-platform.xbox {
  background: var(--gradient-secondary);
  color: var(--text-primary);
}

.related-game-platform.pc {
  background: var(--gradient-primary);
  color: var(--text-primary);
}

.related-game-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  margin-top: 0.5rem;
}

.related-game-price .original-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 400;
}

.related-game-price .current-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-color);
}

.related-game-btn {
  width: 100%;
  padding: 10px;
  background: var(--gradient-primary);
  color: var(--text-primary);
  border: none;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
}

.related-game-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  filter: brightness(1.1);
}

/* Responsive Design Updates */
@media (max-width: 1024px) {
  .reviews-summary {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .requirements-grid {
    grid-template-columns: 1fr;
  }

  .media-gallery {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .game-tabs {
    flex-direction: column;
    gap: 0.5rem;
  }

  .tab-btn {
    min-width: auto;
  }

  .game-hero {
    padding: 2rem 0;
  }

  .game-hero-title {
    font-size: 2rem;
  }

  .game-hero-meta {
    gap: 0.5rem;
    padding: 0 1rem;
    flex-direction: row;
  }

  .game-content {
    padding: 2rem 0;
  }

  .game-main {
    padding: 1.5rem;
  }

  .game-info-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .game-title-section h1 {
    font-size: 2rem;
  }

  .game-rating-section {
    text-align: left;
  }

  .game-features {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  .game-hero-title {
    font-size: 1.8rem;
  }

  .game-content {
    padding: 1rem 0;
  }

  .game-main {
    padding: 1rem;
  }

  .game-title-section h1 {
    font-size: 1.8rem;
  }

  .game-price-current {
    font-size: 2rem;
  }

  .media-gallery {
    grid-template-columns: 1fr;
  }
}
