.page-slot-games {
  font-family: 'Arial', sans-serif;
  color: #FFF1E8; /* Text Main */
  background: #140C0C; /* Body Background from shared.css is #140C0C, so main content should have light text */
  line-height: 1.6;
}

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

.page-slot-games__section {
  padding: 60px 0;
  position: relative;
  overflow: hidden; /* For mobile overflow */
}

.page-slot-games__section--light {
  background: #f5f5f5; /* Example light background if needed, but primary is dark */
  color: #333333;
}

.page-slot-games__dark-bg {
  background: #140C0C; /* Consistent with body background */
  color: #FFF1E8; /* Light text */
}

.page-slot-games__section-title {
  font-size: 3em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #F3C54D; /* Gold */
  line-height: 1.2;
}

.page-slot-games__section-title--light {
  color: #F3C54D; /* Gold text for dark background */
}

/* HERO Section */
.page-slot-games__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles header offset */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden; /* For responsiveness */
}

.page-slot-games__hero-image {
  width: 100%;
  max-height: 600px; /* Limit hero image height */
  overflow: hidden;
}

.page-slot-games__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-slot-games__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -80px; /* Overlap slightly with image for visual flow */
  border-radius: 15px;
  background: rgba(42, 18, 18, 0.9); /* Card BG with slight transparency */
  border: 1px solid #6A1E1E; /* Border */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
  color: #FFF1E8; /* Text Main */
}

.page-slot-games__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 800;
  margin-bottom: 20px;
  color: #F3C54D; /* Gold */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-slot-games__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF1E8; /* Text Main */
}

.page-slot-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
  max-width: 100%; /* For mobile */
  box-sizing: border-box; /* For mobile */
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-slot-games__btn-primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button gradient */
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 176, 74, 0.4);
}

.page-slot-games__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-slot-games__btn-secondary {
  background: #2A1212; /* Card BG */
  color: #FFF1E8; /* Text Main */
  border: 2px solid #6A1E1E; /* Border */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games__btn-secondary:hover {
  background: #1e0a0a;
  transform: translateY(-2px);
}

.page-slot-games__btn-large {
  min-width: 220px;
}

/* General Text Blocks */
.page-slot-games__article-body {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.05em;
  color: #FFF1E8; /* Text Main */
}

.page-slot-games__article-body p {
  margin-bottom: 20px;
}

.page-slot-games__article-body h3 {
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #F3C54D; /* Gold */
  padding: 0 15px;
}

.page-slot-games__article-figure {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  max-width: 800px;
}

.page-slot-games__ordered-list,
.page-slot-games__unordered-list {
  list-style-position: inside;
  margin-bottom: 20px;
  padding-left: 20px;
  color: #FFF1E8; /* Text Main */
}

.page-slot-games__ordered-list li,
.page-slot-games__unordered-list li {
  margin-bottom: 10px;
}

.page-slot-games__text-block--light {
  color: #FFF1E8; /* Text Main */
}

/* Product Grid */
.page-slot-games__products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games__product-card,
.page-slot-games__advantage-card {
  background: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  color: #FFF1E8; /* Text Main */
}

.page-slot-games__product-card img,
.page-slot-games__advantage-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-slot-games__product-card h3,
.page-slot-games__advantage-card h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #F3C54D; /* Gold */
  padding: 0 15px;
}

.page-slot-games__product-card p,
.page-slot-games__advantage-card p {
  font-size: 0.95em;
  margin-bottom: 20px;
  padding: 0 15px;
  color: #FFF1E8; /* Text Main */
}

.page-slot-games__product-card .page-slot-games__btn-primary {
  margin-top: auto;
}

/* Advantage Grid */
.page-slot-games__advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}