/* style/slot-games.css */
.page-slot-games {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Ensure body background is respected */
}

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

.page-slot-games__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700; /* Gold color for titles */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-slot-games__section-description {
  font-size: 18px;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-slot-games__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
}

.page-slot-games__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-slot-games__text-block {
  flex: 1;
}

.page-slot-games__text-block p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-slot-games__text-block strong {
  color: #FFD700;
}

.page-slot-games__image-block {
  flex: 1;
  text-align: center;
}

.page-slot-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-slot-games__grid-layout--three-cols {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Hero Section */
.page-slot-games__hero-section {
  position: relative;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 120px; /* Adjusted for fixed header */
  margin-top: 0;
  background: linear-gradient(135deg, #000080, #0a0a0a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
}

.page-slot-games__hero-container {
  z-index: 10;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
}

.page-slot-games__hero-title {
  font-size: 52px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700; /* Gold title */
  line-height: 1.1;
}

.page-slot-games__hero-description {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-slot-games__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #000080; /* Dark blue text for contrast */
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  border: none;
}

.page-slot-games__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  margin-top: 40px;
  position: relative;
  z-index: 5;
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

/* Introduction Section */
.page-slot-games__introduction-section {
  padding: 80px 0;
  background-color: #0a0a0a; /* Dark background */
}

.page-slot-games__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

/* Types Section */
.page-slot-games__types-section {
  padding: 80px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background */
}

.page-slot-games__card {
  background: rgba(255, 255, 255, 0.05); /* Semi-transparent white for dark theme */
  border: 1px solid rgba(255, 215, 0, 0.2); /* Gold border */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-slot-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.page-slot-games__card-title {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-slot-games__card-image {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-slot-games__card-text {
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
  flex-grow: 1;
}

/* How to Play Section */
.page-slot-games__how-to-play-section {
  padding: 80px 0;
}

.page-slot-games__numbered-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.page-slot-games__numbered-list li {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  color: #f0f0f0;
}

.page-slot-games__numbered-list li::before {
  content: counter(list-item);
  counter-increment: list-item;
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  background-color: #FFD700;
  color: #000080;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.page-slot-games__button-primary {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #000080; /* Dark blue text for contrast */
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
  border: none;
  margin-top: 30px;
}

.page-slot-games__button-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

/* Features Section */
.page-slot-games__features-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-slot-games__feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 0, 128, 0.2); /* Dark blue border */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-slot-games__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 128, 0.2);
}

.page-slot-games__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: rgba(255, 215, 0, 0.1);
  padding: 10px;
}

.page-slot-games__feature-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-slot-games__feature-description {
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
  flex-grow: 1;
}

/* Promotions Section */
.page-slot-games__promotions-section {
  padding: 80px 0;
}

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

.page-slot-games__promo-card {
  background: rgba(0, 0, 128, 0.2); /* Dark blue semi-transparent */
  border: 1px solid #FFD700;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.page-slot-games__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-slot-games__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-slot-games__promo-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  padding: 20px 20px 10px;
}

.page-slot-games__promo-text {
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-slot-games__button-secondary {
  display: inline-block;
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
  padding: 10px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  margin: 0 20px 20px;
  align-self: flex-start;
}

.page-slot-games__button-secondary:hover {
  background-color: #FFD700;
  color: #000080;
  transform: translateY(-2px);
}

.page-slot-games__cta-center {
  text-align: center;
}

/* Tips Section */
.page-slot-games__tips-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-slot-games__bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__bullet-list li {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 15px;
  position: relative;
  padding-left: 35px;
  color: #f0f0f0;
}

.page-slot-games__bullet-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #FFD700;
  font-size: 28px;
  line-height: 1;
}

.page-slot-games__bullet-list li strong {
  color: #FFD700;
}

/* Why Choose Section */
.page-slot-games__why-choose-section {
  padding: 80px 0;
}