/* style/slot-games.css */
.page-slot-games {
  font-family: Arial, sans-serif;
  color: #333333; /* Default text color for light background */
  background-color: #ffffff; /* Assuming body's --secondary-color is white */
  line-height: 1.6;
  padding-bottom: 40px;
}

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

/* --- Hero Section --- */
.page-slot-games__hero-section {
  display: flex;
  flex-direction: column; /* Ensure image is above content */
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, assuming body handles --header-offset */
  padding-bottom: 40px;
  background-color: #26A9E0; /* Brand primary color for dark section */
  color: #ffffff; /* White text for dark background */
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width */
  margin-bottom: 20px;
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover; /* Desktop: cover for aesthetic */
}

.page-slot-games__hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.page-slot-games__main-title {
  font-size: 2.8em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-slot-games__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-slot-games__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* --- General Section Styles --- */
.page-slot-games__section-title {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #26A9E0;
}

.page-slot-games__dark-section .page-slot-games__section-title {
  color: #ffffff;
}

.page-slot-games__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-slot-games__dark-section {
  background-color: #26A9E0;
  color: #ffffff;
}

/* --- Intro Section --- */
.page-slot-games__intro-section {
  padding: 40px 0;
}
.page-slot-games__intro-section p {
  text-align: center;
  margin-bottom: 15px;
  font-size: 1.1em;
}

/* --- Why Choose Section --- */
.page-slot-games__why-choose-section {
  padding: 40px 0;
  background-color: #f5f5f5; /* Light grey background */
}

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

.page-slot-games__feature-item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-slot-games__feature-item:hover {
  transform: translateY(-5px);
}

.page-slot-games__feature-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
  display: block;
}

.page-slot-games__feature-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-slot-games__feature-item p {
  font-size: 1em;
  color: #555555;
}

/* --- Game Types Section --- */
.page-slot-games__game-types-section {
  padding: 40px 0;
}

.page-slot-games__game-types-section p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-slot-games__game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns for desktop */
  gap: 20px;
  margin-top: 30px;
}

.page-slot-games__game-tile {
  display: block;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  padding: 15px;
  text-decoration: none;
  color: #ffffff;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-slot-games__game-tile:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.page-slot-games__game-image {
  width: 100%;
  aspect-ratio: 1/1; /* Square images */
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
  display: block;
}

.page-slot-games__game-title {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 5px;
}

.page-slot-games__game-description {
  font-size: 0.9em;
  color: #cccccc;
}

.page-slot-games__center-aligned {
  text-align: center;
  margin-top: 30px;
}

/* --- Guide Section --- */
.page-slot-games__guide-section {
  padding: 40px 0;
}

.page-slot-games__guide-list {
  list-style: none;
  padding: 0;
  counter-reset: guide-step;
  max-width: 800px;
  margin: 30px auto 0 auto;
}

.page-slot-games__guide-list li {
  position: relative;
  padding: 20px 20px 20px 60px;
  margin-bottom: 20px;
  background-color: #f9f9f9;
  border-left: 5px solid #26A9E0;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-slot-games__guide-list li::before {
  counter-increment: guide-step;
  content: counter(guide-step);
  position: absolute;
  left: 15px;
  top: 20px;
  width: 30px;
  height: 30px;
  background-color: #26A9E0;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1em;
}

.page-slot-games__guide-step-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-slot-games__guide-list p {
  font-size: 1em;
  color: #555555;
}

.page-slot-games__guide-list a {
  color: #EA7C07; /* Login color for links */
  text-decoration: none;
}

.page-slot-games__guide-list a:hover {
  text-decoration: underline;
}