/* style/slot-games-features-and-play.css */
.page-slot-games-features-and-play {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #1a1a2e; /* Inherited from body via shared.css */
}

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

.page-slot-games-features-and-play__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-slot-games-features-and-play__subsection-title {
  font-size: 1.8em;
  color: #FFFFFF;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slot-games-features-and-play__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-slot-games-features-and-play__text-block a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-slot-games-features-and-play__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-slot-games-features-and-play__list-item {
  margin-bottom: 10px;
}

/* Hero Section */
.page-slot-games-features-and-play__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
  box-sizing: border-box;
}

.page-slot-games-features-and-play__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-slot-games-features-and-play__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-slot-games-features-and-play__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-slot-games-features-and-play__hero-title {
  font-size: 3.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-slot-games-features-and-play__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-slot-games-features-and-play__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-slot-games-features-and-play__btn-primary,
.page-slot-games-features-and-play__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  width: auto;
  text-align: center;
}

.page-slot-games-features-and-play__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-slot-games-features-and-play__btn-primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
}

.page-slot-games-features-and-play__btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-slot-games-features-and-play__btn-secondary:hover {
  background-color: #FFFFFF;
  color: #26A9E0;
}

/* Content Sections */
.page-slot-games-features-and-play__content-section,
.page-slot-games-features-and-play__how-to-play-section,
.page-slot-games-features-and-play__safety-section {
  padding: 60px 0;
  color: #333333; /* For light background sections */
  background-color: #FFFFFF;
}

.page-slot-games-features-and-play__content-section .page-slot-games-features-and-play__section-title,
.page-slot-games-features-and-play__content-section .page-slot-games-features-and-play__subsection-title,
.page-slot-games-features-and-play__content-section .page-slot-games-features-and-play__text-block,
.page-slot-games-features-and-play__content-section .page-slot-games-features-and-play__list-item {
  color: #333333;
}