/* style/game-reviews-slots-review.css */

/* General page styling */
.page-game-reviews-slots-review {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main color on dark body background */
  background-color: #0A0A0A; /* Page background color */
}

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

/* Hero Section */
.page-game-reviews-slots-review__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image on top, text below */
  align-items: center;
  text-align: center;
  padding-bottom: 60px; /* Space below content */
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #0A0A0A; /* Ensure consistent background */
}

.page-game-reviews-slots-review__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width if needed */
  margin-bottom: 40px; /* Space between image and text */
}

.page-game-reviews-slots-review__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255, 211, 107, 0.4); /* Glow effect */
}

.page-game-reviews-slots-review__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-game-reviews-slots-review__main-title {
  font-size: clamp(2.5em, 5vw, 3.2em); /* Responsive H1 font size */
  color: #FFD36B; /* Glow color for main title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

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

.page-game-reviews-slots-review__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Buttons */
.page-game-reviews-slots-review__btn-primary,
.page-game-reviews-slots-review__btn-secondary,
.page-game-reviews-slots-review__btn-small {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box; /* Ensure padding is included in width */
  text-align: center;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow long words to break */
}

.page-game-reviews-slots-review__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Custom button gradient */
  color: #0A0A0A; /* Dark text for contrast on bright gradient */
  border: 2px solid transparent;
}

.page-game-reviews-slots-review__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 211, 107, 0.5);
}

.page-game-reviews-slots-review__btn-secondary {
  background: #111111; /* Card BG color */
  color: #FFD36B; /* Glow color for text */
  border: 2px solid #3A2A12; /* Border color */
}

.page-game-reviews-slots-review__btn-secondary:hover {
  background: #FFD36B;
  color: #111111;
  border-color: #FFD36B;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 211, 107, 0.3);
}

.page-game-reviews-slots-review__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #0A0A0A;
  border: 2px solid transparent;
}

.page-game-reviews-slots-review__btn-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 211, 107, 0.4);
}

/* Section Titles & Text */
.page-game-reviews-slots-review__section-title {
  font-size: 2.2em;
  color: #FFD36B; /* Glow color */
  text-align: center;
  margin-bottom: 30px;
  margin-top: 60px;
  font-weight: bold;
}

.page-game-reviews-slots-review__text-block {
  font-size: 1.1em;
  color: #FFF6D6; /* Text Main color */
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* Featured Slots Section */
.page-game-reviews-slots-review__featured-slots {
  padding: 60px 0;
  background-color: #0A0A0A;
}

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

.page-game-reviews-slots-review__slot-card {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 20px;
  border: 1px solid #3A2A12; /* Border color */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-game-reviews-slots-review__slot-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #3A2A12;
}

.page-game-reviews-slots-review__slot-card-title {
  font-size: 1.5em;
  color: #FFD36B;
  margin-bottom: 10px;
}

.page-game-reviews-slots-review__slot-card-description {
  color: #FFF6D6;
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Features Section */
.page-game-reviews-slots-review__features-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-game-reviews-slots-review__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-game-reviews-slots-review__feature-item {
  background-color: #111111;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
}

.page-game-reviews-slots-review__feature-icon {
  width: 100px; /* Adjusted from 200px to fit as an icon better */
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%; /* Make them round */
  border: 2px solid #FFD36B; /* Glow border */
}

.page-game-reviews-slots-review__feature-title {
  font-size: 1.3em;
  color: #FFD36B;
  margin-bottom: 10px;
}

.page-game-reviews-slots-review__feature-description {
  color: #FFF6D6;
  font-size: 0.9em;
}

/* Bonuses Section */
.page-game-reviews-slots-review__bonuses-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

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

.page-game-reviews-slots-review__bonus-card {
  background-color: #111111;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
  text-align: center;
}

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

.page-game-reviews-slots-review__bonus-description {
  color: #FFF6D6;
  font-size: 1em;
  margin-bottom: 25px;
}

/* How to Play Section */
.page-game-reviews-slots-review__how-to-play {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-game-reviews-slots-review__steps-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
}

.page-game-reviews-slots-review__steps-list li {
  background-color: #111111;
  border-radius: 12px;
  padding: 25px 30px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #3A2A12;
  color: #FFF6D6;
  font-size: 1.1em;
}

.page-game-reviews-slots-review__step-number {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #0A0A0A;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.2em;
  flex-shrink: 0;
}

.page-game-reviews-slots-review__steps-list li strong {
  color: #FFD36B;
}

.page-game-reviews-slots-review__cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Responsible Gaming Section */
.page-game-reviews-slots-review__responsible-gaming {
  padding: 60px 0;
  background-color: #0A0A0A;
  text-align: center;
}

/* Why Choose Section */
.page-game-reviews-slots-review__why-choose {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-game-reviews-slots-review__advantages-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two columns for desktop */
  gap: 20px 30px;
}

.page-game-reviews-slots-review__advantages-list li {
  background-color: #111111;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid #3A2A12;
  color: #FFF6D6;
  font-size: 1.05em;
}