/* style/game-reviews.css */
.page-game-reviews {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.page-game-reviews__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-game-reviews__hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #2D3E50 0%, #F39C12 100%);
  color: #fff;
  text-align: center;
}

.page-game-reviews__hero-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  margin-right: 40px;
  text-align: left;
}

.page-game-reviews__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.2;
}

.page-game-reviews__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #eee;
}

.page-game-reviews__hero-cta {
  display: inline-block;
  background-color: #F39C12;
  color: #2D3E50;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-game-reviews__hero-cta:hover {
  background-color: #e08e0b;
  transform: translateY(-2px);
}

.page-game-reviews__hero-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-game-reviews__hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* General Section Styles */
.page-game-reviews__intro, 
.page-game-reviews__categories, 
.page-game-reviews__deeper-insight, 
.page-game-reviews__strategies, 
.page-game-reviews__cta-section {
  padding: 60px 0;
}

.page-game-reviews__section-title {
  font-size: 2.2em;
  color: #2D3E50;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.page-game-reviews__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #F39C12;
  border-radius: 2px;
}

.page-game-reviews__text-content {
  font-size: 1.05em;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

.page-game-reviews__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-game-reviews__list li {
  background: #f1f1f1;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #F39C12;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  font-size: 1.05em;
  color: #444;
}

.page-game-reviews__list li strong {
  color: #2D3E50;
}

/* Categories Grid */
.page-game-reviews__category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-reviews__category-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-game-reviews__category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-game-reviews__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-game-reviews__category-card h3 {
  font-size: 1.5em;
  margin: 20px 15px 10px;
  color: #2D3E50;
}

.page-game-reviews__category-card h3 a {
  color: #2D3E50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-reviews__category-card h3 a:hover {
  color: #F39C12;
}

.page-game-reviews__card-description {
  font-size: 0.95em;
  color: #666;
  padding: 0 15px 20px;
  flex-grow: 1;
}

.page-game-reviews__card-cta {
  display: inline-block;
  background-color: #F39C12;
  color: #2D3E50;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.page-game-reviews__card-cta:hover {
  background-color: #e08e0b;
}

/* Strategy Grid */
.page-game-reviews__strategies {
  background-color: #f1f1f1;
}

.page-game-reviews__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-reviews__strategy-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease;
}

.page-game-reviews__strategy-card:hover {
  transform: translateY(-5px);
}

.page-game-reviews__strategy-card h3 {
  font-size: 1.4em;
  color: #2D3E50;
  margin-bottom: 15px;
}

.page-game-reviews__strategy-card p {
  color: #555;
  font-size: 0.95em;
}

/* CTA Section */
.page-game-reviews__cta-section {
  background: #2D3E50;
  color: #fff;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-game-reviews__cta-content {
  position: relative;
  z-index: 1;
}

.page-game-reviews__cta-section .page-game-reviews__section-title {
  color: #fff;
}

.page-game-reviews__cta-section .page-game-reviews__section-title::after {
  background-color: #F39C12;
}

.page-game-reviews__cta-section .page-game-reviews__text-content {
  color: #eee;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-game-reviews__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.page-game-reviews__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-game-reviews__button--primary {
  background-color: #F39C12;
  color: #2D3E50;
}

.page-game-reviews__button--primary:hover {
  background-color: #e08e0b;
  transform: translateY(-2px);
}

.page-game-reviews__button--secondary {
  background-color: transparent;
  border: 2px solid #F39C12;
  color: #F39C12;
}

.page-game-reviews__button--secondary:hover {
  background-color: #F39C12;
  color: #2D3E50;
  transform: translateY(-2px);
}

.page-game-reviews__cta-image {
  max-width: 300px;
  height: auto;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Floating Ad Menu */
.page-game-reviews__floating-ad {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #F39C12;
  color: #2D3E50;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  max-width: 300px;
  text-align: center;
  transform: translateX(120%); /* Hidden by default */
  transition: transform 0.5s ease-in-out;
}

.page-game-reviews__floating-ad.show {
  transform: translateX(0);
}

.page-game-reviews__floating-ad-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #2D3E50;
}

.page-game-reviews__floating-ad-description {
  font-size: 0.95em;
  margin-bottom: 15px;
  color: #444;
}

.page-game-reviews__floating-ad-cta {
  display: inline-block;
  background-color: #2D3E50;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-game-reviews__floating-ad-cta:hover {
  background-color: #4a5d73;
}

.page-game-reviews__floating-ad-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.5em;
  color: #2D3E50;
  cursor: pointer;
  line-height: 1;
}

.page-game-reviews__floating-ad-close:hover {
  color: #000;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-reviews__hero-content {
    margin-right: 0;
    text-align: center;
  }

  .page-game-reviews__hero-title {
    font-size: 2.2em;
  }

  .page-game-reviews__hero-image {
    margin-top: 40px;
  }

  .page-game-reviews__section-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-game-reviews__hero {
    padding: 60px 20px;
  }

  .page-game-reviews__hero-title {
    font-size: 2em;
  }

  .page-game-reviews__hero-description {
    font-size: 1em;
  }

  .page-game-reviews__hero-cta {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-reviews__intro, 
  .page-game-reviews__categories, 
  .page-game-reviews__deeper-insight, 
  .page-game-reviews__strategies, 
  .page-game-reviews__cta-section {
    padding: 40px 0;
  }

  .page-game-reviews__section-title {
    font-size: 1.6em;
  }

  .page-game-reviews__category-grid, .page-game-reviews__strategy-grid {
    grid-template-columns: 1fr;
  }

  .page-game-reviews__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-game-reviews__floating-ad {
    max-width: 90%;
    left: 5%;
    right: 5%;
    transform: translateX(0) translateY(120%); /* Hidden by default */
    bottom: 10px;
  }

  .page-game-reviews__floating-ad.show {
    transform: translateX(0) translateY(0);
  }
}

@media (max-width: 480px) {
  .page-game-reviews__hero-title {
    font-size: 1.8em;
  }

  .page-game-reviews__section-title {
    font-size: 1.4em;
  }

  .page-game-reviews__list li {
    padding: 10px 15px;
    font-size: 0.95em;
  }

  .page-game-reviews__category-card h3 {
    font-size: 1.3em;
  }

  .page-game-reviews__card-description {
    font-size: 0.9em;
  }

  .page-game-reviews__button {
    width: 100%;
    box-sizing: border-box;
  }
}