/* style/game-reviews-classic-slots-analysis.css */
.page-game-reviews-classic-slots-analysis {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #0A192F;
  line-height: 1.6;
}

.page-game-reviews-classic-slots-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-reviews-classic-slots-analysis__hero-section {
  background: linear-gradient(135deg, #0A192F, #1A3A5F);
  padding: 100px 0 80px;
  text-align: center;
  color: #FFD700;
  position: relative;
  overflow: hidden;
}

.page-game-reviews-classic-slots-analysis__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-game-reviews-classic-slots-analysis__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

.page-game-reviews-classic-slots-analysis__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-game-reviews-classic-slots-analysis__btn--primary {
  background-color: #FFD700;
  color: #0A192F;
}

.page-game-reviews-classic-slots-analysis__btn--primary:hover {
  background-color: #FFEB3B;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-game-reviews-classic-slots-analysis__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-game-reviews-classic-slots-analysis__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-game-reviews-classic-slots-analysis__section {
  padding: 80px 0;
}

.page-game-reviews-classic-slots-analysis__section--dark {
  background-color: #1A2A40;
}

.page-game-reviews-classic-slots-analysis__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.page-game-reviews-classic-slots-analysis__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-game-reviews-classic-slots-analysis__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 768px) {
  .page-game-reviews-classic-slots-analysis__content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-game-reviews-classic-slots-analysis__content-grid--reverse {
    grid-template-areas: "image text";
  }
  .page-game-reviews-classic-slots-analysis__content-grid--reverse .page-game-reviews-classic-slots-analysis__text-content {
    grid-area: text;
  }
  .page-game-reviews-classic-slots-analysis__content-grid--reverse .page-game-reviews-classic-slots-analysis__image-wrapper {
    grid-area: image;
  }
}

.page-game-reviews-classic-slots-analysis__text-content h2 {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 25px;
  text-align: left;
}

.page-game-reviews-classic-slots-analysis__text-content p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-game-reviews-classic-slots-analysis__image-wrapper {
  text-align: center;
}

.page-game-reviews-classic-slots-analysis__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-game-reviews-classic-slots-analysis__highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-game-reviews-classic-slots-analysis__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  text-align: center;
}

.page-game-reviews-classic-slots-analysis__feature-item {
  background-color: #0A192F;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-top: 4px solid #FFD700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews-classic-slots-analysis__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.2);
}

.page-game-reviews-classic-slots-analysis__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.page-game-reviews-classic-slots-analysis__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-reviews-classic-slots-analysis__feature-item p {
  color: #C0C0C0;
  font-size: 1em;
}

.page-game-reviews-classic-slots-analysis__intro-text {
  text-align: center;
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

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

.page-game-reviews-classic-slots-analysis__strategy-item {
  background-color: #1A2A40;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #FFD700;
}

.page-game-reviews-classic-slots-analysis__strategy-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-reviews-classic-slots-analysis__strategy-item p {
  color: #C0C0C0;
  font-size: 1em;
}

.page-game-reviews-classic-slots-analysis__cta-section {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-game-reviews-classic-slots-analysis__cta-section p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-game-reviews-classic-slots-analysis__list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-game-reviews-classic-slots-analysis__list li {
  background-color: #1A2A40;
  padding: 15px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  border-left: 5px solid #FFD700;
  color: #E0E0E0;
  font-size: 1.1em;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.page-game-reviews-classic-slots-analysis__list li:hover {
  transform: translateX(5px);
}

.page-game-reviews-classic-slots-analysis__list li strong {
  color: #FFD700;
}

.page-game-reviews-classic-slots-analysis__section--cta {
  background: linear-gradient(45deg, #0A192F, #1A3A5F);
  text-align: center;
  padding: 100px 0;
}

.page-game-reviews-classic-slots-analysis__cta-heading {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 25px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.page-game-reviews-classic-slots-analysis__cta-text {
  font-size: 1.5em;
  margin-bottom: 50px;
  color: #E0E0E0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-reviews-classic-slots-analysis__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.page-game-reviews-classic-slots-analysis__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
  min-width: 220px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-game-reviews-classic-slots-analysis__hero-title {
    font-size: 2.8em;
  }
  .page-game-reviews-classic-slots-analysis__hero-subtitle {
    font-size: 1.2em;
  }
  .page-game-reviews-classic-slots-analysis__section-title {
    font-size: 2.2em;
  }
  .page-game-reviews-classic-slots-analysis__text-content h2 {
    font-size: 1.8em;
  }
  .page-game-reviews-classic-slots-analysis__cta-heading {
    font-size: 2.5em;
  }
  .page-game-reviews-classic-slots-analysis__cta-text {
    font-size: 1.3em;
  }
}

@media (max-width: 767px) {
  .page-game-reviews-classic-slots-analysis__hero-title {
    font-size: 2.2em;
  }
  .page-game-reviews-classic-slots-analysis__hero-subtitle {
    font-size: 1em;
  }
  .page-game-reviews-classic-slots-analysis__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-game-reviews-classic-slots-analysis__content-grid {
    grid-template-columns: 1fr;
  }
  .page-game-reviews-classic-slots-analysis__section-title {
    font-size: 1.8em;
  }
  .page-game-reviews-classic-slots-analysis__text-content h2 {
    font-size: 1.6em;
    text-align: center;
  }
  .page-game-reviews-classic-slots-analysis__intro-text {
    font-size: 1em;
  }
  .page-game-reviews-classic-slots-analysis__strategy-title {
    font-size: 1.4em;
  }
  .page-game-reviews-classic-slots-analysis__cta-heading {
    font-size: 2em;
  }
  .page-game-reviews-classic-slots-analysis__cta-text {
    font-size: 1.1em;
  }
  .page-game-reviews-classic-slots-analysis__cta-buttons {
    flex-direction: column;
  }
  .page-game-reviews-classic-slots-analysis__btn--large {
    width: 100%;
  }
  .page-game-reviews-classic-slots-analysis__section {
    padding: 60px 0;
  }
  .page-game-reviews-classic-slots-analysis__hero-section {
    padding: 80px 0 60px;
  }
}