/* style/game-reviews-slots.css */
.page-game-reviews-slots {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light text for dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

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

/* Hero Section */
.page-game-reviews-slots__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%); /* Dark gradient */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-game-reviews-slots__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_geometric_pattern,dark_gold]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-game-reviews-slots__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-game-reviews-slots__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-game-reviews-slots__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-game-reviews-slots__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-reviews-slots__hero-button:hover {
  background-color: #e5c100; /* Darker gold on hover */
  transform: translateY(-2px);
}

.page-game-reviews-slots__hero-image-wrapper {
  margin-top: 40px;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
}

.page-game-reviews-slots__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* General Section Styling */
.page-game-reviews-slots__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  position: relative;
}

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

.page-game-reviews-slots__text-block {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #CCCCCC;
}

/* Intro Section */
.page-game-reviews-slots__intro-section {
  padding: 60px 0;
  background-color: #242c3a; /* Slightly lighter dark background */
}

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

.page-game-reviews-slots__feature-item {
  background-color: #1A202C; /* Darker card background */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews-slots__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-game-reviews-slots__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.6));
}

.page-game-reviews-slots__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-game-reviews-slots__feature-description {
  color: #B0B0B0;
}

.page-game-reviews-slots__cta-button {
  display: block;
  width: fit-content;
  margin: 50px auto 0;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-reviews-slots__cta-button:hover {
  background-color: #e5c100;
  transform: translateY(-2px);
}

/* Review List Section */
.page-game-reviews-slots__review-list {
  padding: 60px 0;
  background-color: #1A202C;
}

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

.page-game-reviews-slots__game-card {
  background-color: #242c3a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-game-reviews-slots__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-game-reviews-slots__game-card-content {
  padding: 25px;
}

.page-game-reviews-slots__game-card-title {
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-game-reviews-slots__game-card-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-reviews-slots__game-card-title a:hover {
  color: #e5c100;
  text-decoration: underline;
}

.page-game-reviews-slots__game-card-meta {
  font-size: 0.9em;
  color: #A0A0A0;
  margin-bottom: 15px;
}

.page-game-reviews-slots__game-card-description {
  color: #CCCCCC;
  margin-bottom: 20px;
}

.page-game-reviews-slots__game-card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-game-reviews-slots__game-card-button:hover {
  background-color: #e5c100;
  transform: translateY(-1px);
}

/* Strategy Guide Section */
.page-game-reviews-slots__strategy-guide {
  padding: 60px 0;
  background-color: #242c3a;
}

.page-game-reviews-slots__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-reviews-slots__strategy-list li {
  background-color: #1A202C;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #E0E0E0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #FFD700;
}

.page-game-reviews-slots__strategy-highlight {
  color: #FFD700;
  font-weight: bold;
}

/* FAQ Section */
.page-game-reviews-slots__faq {
  padding: 60px 0;
  background-color: #1A202C;
}

.page-game-reviews-slots__accordion {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-reviews-slots__accordion-item {
  background-color: #242c3a;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-slots__accordion-header {
  background-color: #FFD700; /* Gold header */
  color: #1A202C; /* Dark text on gold */
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-game-reviews-slots__accordion-header:hover {
  background-color: #e5c100;
}

.page-game-reviews-slots__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-game-reviews-slots__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-game-reviews-slots__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background-color: #1A202C;
  color: #E0E0E0;
}

.page-game-reviews-slots__accordion-content p {
  padding: 15px 0;
  margin: 0;
}

.page-game-reviews-slots__accordion-content a {
  color: #FFD700;
  text-decoration: none;
}

.page-game-reviews-slots__accordion-content a:hover {
  text-decoration: underline;
}

/* Conclusion Section */
.page-game-reviews-slots__conclusion {
  padding: 80px 0;
  background: linear-gradient(135deg, #242c3a 0%, #1A202C 100%);
  text-align: center;
}

.page-game-reviews-slots__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 60px;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.page-game-reviews-slots__cta-button--large:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-reviews-slots__hero-title {
    font-size: 3em;
  }
  .page-game-reviews-slots__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-game-reviews-slots__hero {
    flex-direction: column;
    padding: 60px 15px;
  }
  .page-game-reviews-slots__hero-title {
    font-size: 2.5em;
  }
  .page-game-reviews-slots__hero-description {
    font-size: 1em;
  }
  .page-game-reviews-slots__hero-image-wrapper {
    margin-top: 30px;
  }
  .page-game-reviews-slots__section-title {
    font-size: 2em;
    padding-top: 40px;
  }
  .page-game-reviews-slots__intro-section, .page-game-reviews-slots__review-list, .page-game-reviews-slots__strategy-guide, .page-game-reviews-slots__faq, .page-game-reviews-slots__conclusion {
    padding: 40px 0;
  }
  .page-game-reviews-slots__features-grid, .page-game-reviews-slots__game-cards-grid {
    grid-template-columns: 1fr;
  }
  .page-game-reviews-slots__feature-item, .page-game-reviews-slots__game-card {
    margin-bottom: 20px;
  }
  .page-game-reviews-slots__cta-button, .page-game-reviews-slots__cta-button--large {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-reviews-slots__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-game-reviews-slots__accordion-content p {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-game-reviews-slots__hero-title {
    font-size: 2em;
  }
  .page-game-reviews-slots__section-title {
    font-size: 1.8em;
  }
  .page-game-reviews-slots__hero-button, .page-game-reviews-slots__cta-button {
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-game-reviews-slots__game-card-title {
    font-size: 1.4em;
  }
  .page-game-reviews-slots__strategy-list li {
    font-size: 1em;
  }
  .page-game-reviews-slots__accordion-header {
    font-size: 1em;
  }
}