.page-games-slot-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark gray for general text */
  background-color: #f8f8f8; /* Light background */
}

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

/* Hero Section */
.page-games-slot-games__hero {
  background: linear-gradient(135deg, #003366 0%, #0a4f91 100%); /* Dark blue gradient */
  color: #ffffff; /* White text on dark background */
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

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

.page-games-slot-games__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-games-slot-games__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-games-slot-games__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  max-width: 700px;
  z-index: 5;
}

.page-games-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7;
}

/* Buttons */
.page-games-slot-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-games-slot-games__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #003366; /* Navy Blue */
  border: 2px solid #FFD700;
}

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

.page-games-slot-games__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

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

.page-games-slot-games__btn--inline {
  padding: 10px 20px;
  font-size: 1em;
  margin: 5px;
}

.page-games-slot-games__btn--download {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #003366; /* Navy Blue */
  color: #ffffff; /* White */
  border: 2px solid #003366;
  padding: 12px 25px;
}

.page-games-slot-games__btn--download:hover {
  background-color: #0a4f91;
  border-color: #0a4f91;
}

.page-games-slot-games__download-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.page-games-slot-games__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* General Section Styling */
.page-games-slot-games__section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
}

.page-games-slot-games__section:nth-of-type(even) {
  background-color: #f0f0f0;
}

.page-games-slot-games__section-title {
  font-size: 2.5em;
  color: #003366; /* Navy Blue */
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-games-slot-games__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-games-slot-games__section-description--center {
  text-align: center;
}

.page-games-slot-games__section-description--small {
  font-size: 0.9em;
  margin-top: 20px;
}

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

.page-games-slot-games__feature-item {
  text-align: center;
  padding: 30px;
  background-color: #fefefe;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-slot-games__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-games-slot-games__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-games-slot-games__feature-title {
  font-size: 1.5em;
  color: #003366; /* Navy Blue */
  margin-bottom: 15px;
}

.page-games-slot-games__feature-text {
  font-size: 1em;
  color: #666666;
}

/* Game Categories */
.page-games-slot-games__game-category {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
  background-color: #fefefe;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.page-games-slot-games__game-category--reverse {
  flex-direction: row-reverse;
}

.page-games-slot-games__game-category-image-wrapper {
  flex: 1;
  min-width: 300px;
  height: 350px;
  overflow: hidden;
}

.page-games-slot-games__game-category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.page-games-slot-games__game-category:hover .page-games-slot-games__game-category-image {
  transform: scale(1.05);
}

.page-games-slot-games__game-category-content {
  flex: 2;
  padding: 40px;
  min-width: 350px;
}

.page-games-slot-games__category-title {
  font-size: 2em;
  color: #003366; /* Navy Blue */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-games-slot-games__category-text {
  margin-bottom: 15px;
  color: #444444;
}

.page-games-slot-games__category-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-games-slot-games__category-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  color: #555555;
}

.page-games-slot-games__category-list li::before {
  content: '✔';
  color: #FFD700; /* Gold checkmark */
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* How to Play Steps */
.page-games-slot-games__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-games-slot-games__step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 5px solid #003366;
}

.page-games-slot-games__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
  display: inline-block;
  background-color: #003366;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  box-shadow: 0 0 0 5px rgba(255, 215, 0, 0.3);
}

.page-games-slot-games__step-title {
  font-size: 1.8em;
  color: #003366; /* Navy Blue */
  margin-bottom: 15px;
}

.page-games-slot-games__step-text {
  color: #666666;
  margin-bottom: 20px;
}

/* Promotions */
.page-games-slot-games__promotions {
  background-color: #e6eef5;
}

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

.page-games-slot-games__promo-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-games-slot-games__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 3px solid #FFD700;
}

.page-games-slot-games__promo-title {
  font-size: 1.6em;
  color: #003366; /* Navy Blue */
  margin: 20px 15px 10px;
}

.page-games-slot-games__promo-text {
  padding: 0 15px 20px;
  color: #666666;
}

.page-games-slot-games__center-btn-wrapper {
  text-align: center;
  margin-top: 50px;
}

/* Mobile App Section */
.page-games-slot-games__mobile-app {
  background-color: #003366; /* Navy Blue */
  color: #ffffff; /* White text */
  padding: 80px 0;
}

.page-games-slot-games__mobile-app .page-games-slot-games__section-title {
  color: #FFD700; /* Gold title */
}

.page-games-slot-games__mobile-app .page-games-slot-games__section-description {
  color: #e0e0e0;
}

.page-games-slot-games__mobile-app-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.page-games-slot-games__mobile-app-content {
  flex: 1;
  min-width: 300px;
  padding-right: 40px;
}

.page-games-slot-games__mobile-app-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-games-slot-games__mobile-app-features li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #ffffff;
}

.page-games-slot-games__mobile-app-features li::before {
  content: '✅';
  position: absolute;
  left: 0;
  font-size: 1.2em;
  top: -2px;
}

.page-games-slot-games__download-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.page-games-slot-games__mobile-app-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-games-slot-games__mobile-app-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* FAQ Section */
.page-games-slot-games__faq {
  background-color: #f8f8f8;
}

.page-games-slot-games__faq-list {
  margin-top: 40px;
}

.page-games-slot-games__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  margin-bottom: 20px;
  padding: 25px;
}

.page-games-slot-games__faq-question {
  font-size: 1.4em;
  color: #003366; /* Navy Blue */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-games-slot-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-games-slot-games__faq-item.active .page-games-slot-games__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-games-slot-games__faq-answer {
  font-size: 1.1em;
  color: #555555;
  display: none; /* Hidden by default */
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 15px;
}

.page-games-slot-games__faq-item.active .page-games-slot-games__faq-answer {
  display: block;
}

/* Call to Action */
.page-games-slot-games__cta {
  background: linear-gradient(90deg, #003366, #0a4f91);
  color: #ffffff;
  text-align: center;
  padding: 70px 0;
}

.page-games-slot-games__cta-content {
  max-width: 900px;
}

.page-games-slot-games__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-games-slot-games__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  opacity: 0.9;
}

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

/* Floating Ads */
.page-games-slot-games__floating-ads {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-games-slot-games__floating-ad-item {
  display: flex;
  align-items: center;
  background-color: #003366;
  color: #ffffff;
  padding: 10px 15px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 2px solid #FFD700;
}

.page-games-slot-games__floating-ad-item:hover {
  transform: translateY(-5px);
  background-color: #0a4f91;
}

.page-games-slot-games__floating-ad-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
  border: 1px solid #FFD700;
}

.page-games-slot-games__floating-ad-text {
  font-weight: bold;
  font-size: 0.95em;
  white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-games-slot-games__hero-title {
    font-size: 2.5em;
  }
  .page-games-slot-games__hero-subtitle {
    font-size: 1.2em;
  }
  .page-games-slot-games__game-category-image-wrapper,
  .page-games-slot-games__game-category-content {
    flex: 1 1 100%;
    padding: 30px;
  }
  .page-games-slot-games__game-category--reverse {
    flex-direction: column;
  }
  .page-games-slot-games__mobile-app-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .page-games-slot-games__mobile-app-flex {
    flex-direction: column;
  }
  .page-games-slot-games__hero-image-wrapper {
    position: relative;
    width: 80%;
    margin-top: 30px;
  }
  .page-games-slot-games__hero {
    padding-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .page-games-slot-games__hero {
    min-height: 400px;
  }
  .page-games-slot-games__hero-title {
    font-size: 2em;
  }
  .page-games-slot-games__hero-subtitle {
    font-size: 1em;
  }
  .page-games-slot-games__section-title {
    font-size: 2em;
  }
  .page-games-slot-games__cta-title {
    font-size: 2.2em;
  }
  .page-games-slot-games__floating-ads {
    bottom: 10px;
    right: 10px;
    gap: 10px;
  }
  .page-games-slot-games__floating-ad-item {
    padding: 8px 12px;
  }
  .page-games-slot-games__floating-ad-image {
    width: 30px;
    height: 30px;
  }
  .page-games-slot-games__floating-ad-text {
    font-size: 0.85em;
  }
  .page-games-slot-games__download-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-games-slot-games__hero-title {
    font-size: 1.8em;
  }
  .page-games-slot-games__hero-subtitle {
    font-size: 0.9em;
  }
  .page-games-slot-games__btn {
    padding: 12px 20px;
    font-size: 0.9em;
  }
  .page-games-slot-games__section-title {
    font-size: 1.8em;
  }
  .page-games-slot-games__category-title {
    font-size: 1.5em;
  }
  .page-games-slot-games__step-title {
    font-size: 1.4em;
  }
  .page-games-slot-games__promo-title {
    font-size: 1.3em;
  }
  .page-games-slot-games__cta-title {
    font-size: 1.8em;
  }
  .page-games-slot-games__cta-description {
    font-size: 1.1em;
  }
  .page-games-slot-games__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}