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

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

.page-game-reviews-card-games__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #304E85 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-reviews-card-games__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 L 0 10" fill="none" stroke="%231A3A70" stroke-width="0.5"/></pattern><rect width="100%" height="100%" fill="url(%23grid)" opacity="0.1"/></svg>');
  opacity: 0.3;
  z-index: 0;
}

.page-game-reviews-card-games__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-game-reviews-card-games__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-game-reviews-card-games__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.page-game-reviews-card-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-card-games__btn--primary {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

.page-game-reviews-card-games__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
}

.page-game-reviews-card-games__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-game-reviews-card-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-3px);
}

.page-game-reviews-card-games__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-game-reviews-card-games__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-game-reviews-card-games__intro-section,
.page-game-reviews-card-games__game-list-section,
.page-game-reviews-card-games__advantages-section,
.page-game-reviews-card-games__strategy-section,
.page-game-reviews-card-games__faq-section,
.page-game-reviews-card-games__final-cta-section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-reviews-card-games__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-game-reviews-card-games__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-game-reviews-card-games__intro-section p,
.page-game-reviews-card-games__strategy-section p,
.page-game-reviews-card-games__final-cta-section p {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 20px;
}

.page-game-reviews-card-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-game-reviews-card-games__image--full-width {
  width: 100%;
}

.page-game-reviews-card-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-game-reviews-card-games__game-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-game-reviews-card-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.page-game-reviews-card-games__card-title {
  font-size: 1.5em;
  color: #0A2463;
  margin: 20px 20px 10px;
}

.page-game-reviews-card-games__card-title a {
  color: #0A2463;
  text-decoration: none;
}

.page-game-reviews-card-games__card-title a:hover {
  color: #FFD700;
}

.page-game-reviews-card-games__card-description {
  font-size: 1em;
  color: #555;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-game-reviews-card-games__game-card .page-game-reviews-card-games__btn {
  align-self: flex-start;
  margin: 0 20px 20px;
}

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

.page-game-reviews-card-games__advantage-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-game-reviews-card-games__advantage-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-game-reviews-card-games__advantage-item h3 {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-game-reviews-card-games__advantage-item p {
  font-size: 1em;
  color: #666;
}

.page-game-reviews-card-games__cta-block {
  background-color: #0A2463;
  color: #fff;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.page-game-reviews-card-games__cta-block-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-game-reviews-card-games__cta-block p {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-reviews-card-games__strategy-section ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-game-reviews-card-games__strategy-section li {
  background-color: #f9f9f9;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #444;
}

.page-game-reviews-card-games__strategy-section li strong {
  color: #0A2463;
  font-size: 1.1em;
}

.page-game-reviews-card-games__faq-item {
  background-color: #f9f9f9;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-game-reviews-card-games__faq-item h3 {
  color: #0A2463;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-game-reviews-card-games__faq-item p {
  color: #555;
  font-size: 1em;
}

.page-game-reviews-card-games__faq-item a {
  color: #0A2463;
  text-decoration: underline;
}

.page-game-reviews-card-games__faq-item a:hover {
  color: #FFD700;
}

.page-game-reviews-card-games__final-cta-section {
  text-align: center;
  background-color: #0A2463;
  color: #fff;
  padding: 80px 0;
}

.page-game-reviews-card-games__final-cta-section .page-game-reviews-card-games__section-title {
  color: #FFD700;
}

.page-game-reviews-card-games__final-cta-section p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.2em;
}

.page-game-reviews-card-games__final-cta-section p a {
  color: #FFD700;
  text-decoration: underline;
}

.page-game-reviews-card-games__final-cta-section p a:hover {
  color: #e6c200;
}

.page-game-reviews-card-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-reviews-card-games__main-title {
    font-size: 2.8em;
  }
  .page-game-reviews-card-games__subtitle {
    font-size: 1.3em;
  }
  .page-game-reviews-card-games__section-title {
    font-size: 2em;
  }
  .page-game-reviews-card-games__game-grid,
  .page-game-reviews-card-games__advantages-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-game-reviews-card-games__hero-cta,
  .page-game-reviews-card-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-reviews-card-games__btn--large {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .page-game-reviews-card-games__hero-section {
    padding: 80px 0;
  }
  .page-game-reviews-card-games__main-title {
    font-size: 2.2em;
  }
  .page-game-reviews-card-games__subtitle {
    font-size: 1.1em;
  }
  .page-game-reviews-card-games__section-title {
    font-size: 1.8em;
  }
  .page-game-reviews-card-games__intro-section p,
  .page-game-reviews-card-games__strategy-section p,
  .page-game-reviews-card-games__final-cta-section p {
    font-size: 1em;
  }
  .page-game-reviews-card-games__advantage-item h3 {
    font-size: 1.2em;
  }
  .page-game-reviews-card-games__cta-block-title {
    font-size: 1.8em;
  }
  .page-game-reviews-card-games__cta-block p {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-game-reviews-card-games__hero-section {
    padding: 60px 0;
  }
  .page-game-reviews-card-games__main-title {
    font-size: 1.8em;
  }
  .page-game-reviews-card-games__subtitle {
    font-size: 1em;
  }
  .page-game-reviews-card-games__section-title {
    font-size: 1.5em;
  }
  .page-game-reviews-card-games__btn {
    padding: 12px 20px;
    font-size: 0.9em;
  }
  .page-game-reviews-card-games__btn--large {
    width: 90%;
    font-size: 1em;
  }
  .page-game-reviews-card-games__game-grid,
  .page-game-reviews-card-games__advantages-grid {
    grid-template-columns: 1fr;
  }
  .page-game-reviews-card-games__game-card .page-game-reviews-card-games__btn {
    width: calc(100% - 40px);
    text-align: center;
  }
  .page-game-reviews-card-games__faq-item h3 {
    font-size: 1.1em;
  }
}