.page-game-reviews-card-games-strategy {
  font-family: 'Arial', sans-serif;
  color: #F0F8FF; /* Light text on dark background */
  background-color: #0A192F;
  line-height: 1.6;
}

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

.page-game-reviews-card-games-strategy__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A192F 0%, #203A5F 100%);
  color: #F0F8FF;
  position: relative;
  overflow: hidden;
}

.page-game-reviews-card-games-strategy__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
  opacity: 0.7;
  z-index: 0;
}

.page-game-reviews-card-games-strategy__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-game-reviews-card-games-strategy__hero h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-game-reviews-card-games-strategy__hero-image {
  margin-top: 40px;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
}

.page-game-reviews-card-games-strategy__hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-card-games-strategy__section {
  padding: 60px 0;
  background-color: #0A192F;
  color: #F0F8FF;
}

.page-game-reviews-card-games-strategy__section:nth-of-type(odd) {
  background-color: #1A2A40;
}

.page-game-reviews-card-games-strategy__section h2 {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-game-reviews-card-games-strategy__section h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-game-reviews-card-games-strategy__section h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-game-reviews-card-games-strategy__section p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-game-reviews-card-games-strategy__section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-game-reviews-card-games-strategy__section ul li {
  background-color: #1A2A40;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 1.05em;
}

.page-game-reviews-card-games-strategy__section ul li::before {
  content: '✔';
  color: #FFD700;
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.2em;
  line-height: 1;
}

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

.page-game-reviews-card-games-strategy__card {
  background-color: #1A2A40;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews-card-games-strategy__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.page-game-reviews-card-games-strategy__card img {
  max-width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-game-reviews-card-games-strategy__card h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-top: 0;
}

.page-game-reviews-card-games-strategy__game-strategy {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
  padding: 30px;
  background-color: #1A2A40;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.page-game-reviews-card-games-strategy__game-strategy:nth-of-type(even) {
  background-color: #0A192F;
  border: 1px solid #FFD700;
}

.page-game-reviews-card-games-strategy__game-strategy img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-card-games-strategy__game-strategy h3 {
  color: #FFD700;
  font-size: 2em;
  margin-top: 0;
  text-align: center;
}

.page-game-reviews-card-games-strategy__game-strategy ul {
  list-style: disc;
  margin-left: 20px;
  text-align: left;
  width: 100%;
  max-width: 700px;
}

.page-game-reviews-card-games-strategy__game-strategy ul li {
  background-color: transparent;
  box-shadow: none;
  padding: 5px 0;
  margin-bottom: 8px;
  font-size: 1.05em;
  color: #F0F8FF;
}

.page-game-reviews-card-games-strategy__game-strategy ul li::before {
  content: '•';
  color: #FFD700;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-game-reviews-card-games-strategy__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  margin: 10px;
  cursor: pointer;
  border: none;
}

.page-game-reviews-card-games-strategy__btn--primary {
  background-color: #FFD700;
  color: #0A192F;
}

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

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

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

.page-game-reviews-card-games-strategy__cta-section {
  text-align: center;
  margin-top: 50px;
  padding: 40px;
  background-color: #0A192F;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  border: 1px solid #FFD700;
}

.page-game-reviews-card-games-strategy__cta-section p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #F0F8FF;
}

.page-game-reviews-card-games-strategy__faq-item {
  background-color: #1A2A40;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-card-games-strategy__faq-item h3 {
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.6em;
}

.page-game-reviews-card-games-strategy__faq-item p {
  color: #F0F8FF;
  font-size: 1.05em;
}

.page-game-reviews-card-games-strategy__section--conclusion {
  text-align: center;
  padding-bottom: 80px;
}

.page-game-reviews-card-games-strategy__section--conclusion p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-game-reviews-card-games-strategy .highlight {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-reviews-card-games-strategy__hero h1 {
    font-size: 2.8em;
  }
  .page-game-reviews-card-games-strategy__section h2 {
    font-size: 2em;
  }
  .page-game-reviews-card-games-strategy__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-game-reviews-card-games-strategy__hero {
    padding: 60px 15px;
  }
  .page-game-reviews-card-games-strategy__hero h1 {
    font-size: 2.2em;
  }
  .page-game-reviews-card-games-strategy__hero p {
    font-size: 1em;
  }
  .page-game-reviews-card-games-strategy__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 8px;
  }
  .page-game-reviews-card-games-strategy__section {
    padding: 40px 0;
  }
  .page-game-reviews-card-games-strategy__section h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-game-reviews-card-games-strategy__section h3 {
    font-size: 1.5em;
  }
  .page-game-reviews-card-games-strategy__grid {
    grid-template-columns: 1fr;
  }
  .page-game-reviews-card-games-strategy__game-strategy {
    padding: 20px;
  }
  .page-game-reviews-card-games-strategy__game-strategy h3 {
    font-size: 1.8em;
  }
  .page-game-reviews-card-games-strategy__cta-section {
    padding: 30px 15px;
  }
  .page-game-reviews-card-games-strategy__cta-section p {
    font-size: 1.1em;
  }
  .page-game-reviews-card-games-strategy__faq-item {
    padding: 20px;
  }
  .page-game-reviews-card-games-strategy__faq-item h3 {
    font-size: 1.4em;
  }
  .page-game-reviews-card-games-strategy__section--conclusion p {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-game-reviews-card-games-strategy__hero h1 {
    font-size: 1.8em;
  }
  .page-game-reviews-card-games-strategy__hero-image {
    margin-top: 20px;
  }
  .page-game-reviews-card-games-strategy__section h2 {
    font-size: 1.6em;
  }
  .page-game-reviews-card-games-strategy__btn {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }
  .page-game-reviews-card-games-strategy__hero-content {
    padding: 0 10px;
  }
  .page-game-reviews-card-games-strategy__game-strategy ul li {
    font-size: 0.95em;
  }
}