.page-slot-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Main text color based on dark background */
  background-color: #0A0A0A; /* Main background color */
}

.page-slot-games h1, .page-slot-games h2, .page-slot-games h3 {
  color: #FFD36B; /* Highlight color for headings */
  margin-bottom: 20px;
  font-weight: 700;
}

.page-slot-games h1 {
  font-size: clamp(2em, 5vw, 3.5em); /* Responsive H1 font size */
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-slot-games h2 {
  font-size: clamp(1.8em, 4vw, 2.8em);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(255, 211, 107, 0.3);
}

.page-slot-games h3 {
  font-size: clamp(1.4em, 3vw, 2em);
  margin-bottom: 15px;
}

.page-slot-games p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-slot-games a {
  color: #F2C14E;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-slot-games a:hover {
  color: #FFD36B;
  text-decoration: underline;
}

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

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

.page-slot-games__dark-bg {
  background-color: #111111;
}

/* Hero Section */
.page-slot-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, larger bottom for content */
  overflow: hidden;
}

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

.page-slot-games__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

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

.page-slot-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
  padding: 0 20px;
}

.page-slot-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #FFF6D6; /* Button text color */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid #F2C14E;
}

.page-slot-games__cta-button:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Intro Section */
.page-slot-games__intro-section {
  background-color: #0A0A0A;
  text-align: center;
}

/* Why Choose Section */
.page-slot-games__why-choose-section {
  background-color: #111111;
}

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

.page-slot-games__feature-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-slot-games__feature-card img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-slot-games__feature-card h3 {
  color: #F2C14E;
  font-size: 1.3em;
}

.page-slot-games__cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.page-slot-games__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #FFF6D6;
  border: 2px solid #F2C14E;
}

.page-slot-games__btn-secondary {
  background: #111111;
  color: #F2C14E;
  border: 2px solid #F2C14E;
}

.page-slot-games__btn-secondary:hover {
  background: #F2C14E;
  color: #111111;
}

/* Popular Games Section */
.page-slot-games__popular-games-section {
  background-color: #0A0A0A;
}

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

.page-slot-games__game-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 10px;
  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;
}

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

.page-slot-games__game-card img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-slot-games__game-card h3 {
  color: #FFD36B;
  font-size: 1.2em;
}

.page-slot-games__game-button {
  display: inline-block;
  padding: 10px 25px;
  background: #F2C14E;
  color: #111111; /* Dark text on brand color button */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-slot-games__game-button:hover {
  background: #FFD36B;
  color: #111111;
}

/* How to Play Section */
.page-slot-games__how-to-play-section {
  background-color: #111111;
}

.page-slot-games__numbered-list {
  list-style: none;
  counter-reset: step-counter;
  padding-left: 0;
  margin-top: 30px;
}

.page-slot-games__numbered-list li {
  counter-increment: step-counter;
  margin-bottom: 20px;
  padding-left: 40px;
  position: relative;
  font-size: 1.1em;
}

.page-slot-games__numbered-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #F2C14E;
  color: #111111;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
}

/* Providers Section */
.page-slot-games__providers-section {
  background-color: #0A0A0A;
}

.page-slot-games__provider-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games__provider-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  color: #FFF6D6;
  font-size: 1.1em;
}

.page-slot-games__provider-list img {
  
  
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: 8px;
  background-color: #111111;
  padding: 10px;
  border: 1px solid #3A2A12;
}

/* Responsible Gaming Section */
.page-slot-games__responsible-gaming-section {
  background-color: #111111;
}

.page-slot-games__bullet-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-slot-games__bullet-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-slot-games__bullet-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #F2C14E;
  font-size: 1.2em;
  line-height: 1;
}

/* FAQ Section */
.page-slot-games__faq-section {
  background-color: #0A0A0A;
}

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

details.page-slot-games__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border color */
  overflow: hidden;
  background-color: #111111; /* Card BG */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

details.page-slot-games__faq-item summary.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

details.page-slot-games__faq-item summary.page-slot-games__faq-question::-webkit-details-marker {
  display: none;
}

details.page-slot-games__faq-item summary.page-slot-games__faq-question:hover {
  background-color: #1D1D1D;
}

.page-slot-games__faq-qtext {
  flex: 1;
  font-size: 1.15em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFF6D6;
}

.page-slot-games__faq-toggle {
  font-size: 2em;
  font-weight: bold;
  color: #F2C14E;
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-slot-games__faq-item[open] .page-slot-games__faq-toggle {
  color: #FFD36B;
}

details.page-slot-games__faq-item .page-slot-games__faq-answer {
  padding: 0 25px 25px;
  background-color: #1D1D1D;
  border-radius: 0 0 10px 10px;
  color: #FFF6D6;
  font-size: 1em;
}

/* CTA Banner Section */
.page-slot-games__cta-banner {
  background-color: #111111;
  text-align: center;
  padding: 80px 0;
  border-top: 1px solid #3A2A12;
}

.page-slot-games__cta-container {
  max-width: 800px;
}

.page-slot-games__cta-title {
  color: #FFD36B;
  font-size: clamp(1.8em, 4vw, 2.8em);
  margin-bottom: 20px;
}

.page-slot-games__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games__features-grid,
  .page-slot-games__game-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-slot-games {
    font-size: 15px;
  }

  .page-slot-games h1 {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-slot-games h2 {
    font-size: clamp(1.5em, 6vw, 2.2em);
    margin-bottom: 30px;
  }

  .page-slot-games h3 {
    font-size: clamp(1.2em, 5vw, 1.8em);
  }

  .page-slot-games p {
    font-size: 1em;
  }

  .page-slot-games__hero-section {
    padding: 10px 15px 40px;
  }

  .page-slot-games__hero-image {
    margin-bottom: 20px;
  }

  .page-slot-games__hero-image img,
  .page-slot-games__feature-card img,
  .page-slot-games__game-card img,
  .page-slot-games__provider-list img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-slot-games__section,
  .page-slot-games__container,
  .page-slot-games__feature-card,
  .page-slot-games__game-card,
  .page-slot-games__cta-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games__cta-button,
  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary,
  .page-slot-games a[class*="button"],
  .page-slot-games a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-slot-games__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-slot-games__feature-card,
  .page-slot-games__game-card {
    padding: 20px;
  }

  .page-slot-games__numbered-list li,
  .page-slot-games__bullet-list li {
    padding-left: 30px;
    font-size: 1em;
  }

  .page-slot-games__numbered-list li::before {
    width: 25px;
    height: 25px;
    font-size: 1em;
  }

  details.page-slot-games__faq-item summary.page-slot-games__faq-question {
    padding: 15px;
  }

  .page-slot-games__faq-qtext {
    font-size: 1em;
  }

  .page-slot-games__faq-toggle {
    font-size: 1.8em;
    width: 25px;
  }

  details.page-slot-games__faq-item .page-slot-games__faq-answer {
    padding: 0 15px 15px;
  }

  .page-slot-games__cta-banner {
    padding: 60px 15px;
  }

  .page-slot-games__cta-title {
    font-size: clamp(1.5em, 6vw, 2.2em);
  }
}

@media (max-width: 480px) {
  .page-slot-games__features-grid,
  .page-slot-games__game-list {
    grid-template-columns: 1fr;
  }

  .page-slot-games__provider-list {
    gap: 20px;
  }
}