/* style/slot-games.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #EA7C07; /* For login/accent, as per custom color */
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-color-light: #ffffff;
  --border-color: #e0e0e0;
}

.page-slot-games {
  font-family: 'Arial', sans-serif;
  color: var(--text-color-dark);
  line-height: 1.6;
  background-color: var(--background-color-light);
}

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

.page-slot-games__section {
  padding: 60px 0;
  text-align: center;
}

.page-slot-games__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-slot-games__section-description {
  font-size: 18px;
  color: #555555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* HERO Section */
.page-slot-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background: linear-gradient(135deg, var(--primary-color) 0%, #a9d9f0 100%); /* Light blue gradient */
  color: var(--text-color-light);
}

.page-slot-games__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-slot-games__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-slot-games__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

.page-slot-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-slot-games__hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-color-light);
}

.page-slot-games__hero-content p {
  font-size: 20px;
  line-height: 1.5;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: var(--text-color-light);
}

/* CTA Button */
.page-slot-games__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--secondary-color); /* #EA7C07 */
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-slot-games__cta-button:hover {
  background: #d46f06; /* Darken secondary color for hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Dark Section */
.page-slot-games__dark-section {
  background-color: var(--primary-color);
  color: var(--text-color-light);
}

.page-slot-games__dark-section .page-slot-games__section-title {
  color: var(--text-color-light);
}

.page-slot-games__dark-section .page-slot-games__section-description {
  color: rgba(255, 255, 255, 0.9);
}

/* Grid Layouts */
.page-slot-games__grid-2-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
  align-items: center;
  margin-top: 40px;
}

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

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

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

/* Text Blocks & Image Blocks */
.page-slot-games__text-block h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-slot-games__text-block p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.page-slot-games__image-block img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

/* Cards */
.page-slot-games__card {
  background: var(--background-color-light);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-color-dark);
}

.page-slot-games__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-slot-games__card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-slot-games__card h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-slot-games__card p {
  font-size: 16px;
  line-height: 1.6;
  color: #666666;
}

/* Feature Items */
.page-slot-games__feature-item img {
  width: 200px; /* Forced to 200px as per global image rule */
  height: 200px; /* Forced to 200px as per global image rule */
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
  object-fit: contain;
  margin-bottom: 15px;
}
.page-slot-games__feature-item h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-slot-games__feature-item p {
  font-size: 15px;
  color: #666666;
}

/* How to Play Steps */
.page-slot-games__steps-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
  text-align: left;
}

.page-slot-games__steps-list li {
  background: var(--background-color-light);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  counter-increment: step-counter;
  padding-left: 70px;
}

.page-slot-games__steps-list li::before {
  content: "0" counter(step-counter);
  position: absolute;
  left: 20px;
  top: 25px;
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  opacity: 0.7;
}

.page-slot-games__steps-list li h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-slot-games__steps-list li p {
  font-size: 16px;
  color: #555555;
}

.page-slot-games__highlight-text {
  font-weight: bold;
  color: var(--secondary-color);
}

/* Promotions & News */
.page-slot-games__promo-card, .page-slot-games__news-card {
  background: var(--background-color-light);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-color-dark);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.page-slot-games__promo-card:hover, .page-slot-games__news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}