:root {
  --primary-color: #F2C14E;
  --secondary-color: #FFD36B;
  --card-bg: #111111;
  --body-bg: #0A0A0A;
  --text-main: #FFF6D6;
  --border-color: #3A2A12;
  --glow-color: #FFD36B;
  --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-slot-games {
  font-family: 'Arial', sans-serif;
  color: var(--text-main); /* Default text color for the page */
  background-color: var(--body-bg);
  line-height: 1.6;
}

.page-slot-games a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-slot-games a:hover {
  color: var(--primary-color);
}

.page-slot-games__section {
  padding: 60px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

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

.page-slot-games__section-title {
  font-size: 3em;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-slot-games__section-description {
  font-size: 1.2em;
  color: var(--text-main);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* HERO Section */
.page-slot-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, main offset handled by body */
  overflow: hidden;
}

.page-slot-games__hero-container {
  position: relative;
  max-width: 1920px;
  width: 100%;
  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;
}

.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;
}

.page-slot-games__main-title {
  font-size: clamp(2.5em, 5vw, 4.5em);
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-slot-games__intro-text {
  font-size: clamp(1.1em, 2vw, 1.4em);
  color: var(--text-main);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-slot-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-slot-games__btn-secondary {
  background: none;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  box-shadow: none;
}

.page-slot-games__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--body-bg);
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.3);
}

/* About Slots Section */
.page-slot-games__about-slots .page-slot-games__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-slot-games__about-slots .page-slot-games__text-block {
  flex: 1;
  min-width: 300px;
}

.page-slot-games__about-slots .page-slot-games__image-block {
  flex: 1;
  min-width: 300px;
}

.page-slot-games__about-slots .page-slot-games__image-block img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-slot-games__about-slots p {
  color: var(--text-main);
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-slot-games__about-slots strong {
  color: var(--primary-color);
}

/* Game Types Section */
.page-slot-games__game-types {
  background-color: var(--card-bg);
}

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

.page-slot-games__grid-item {
  background: var(--body-bg);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.page-slot-games__grid-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.page-slot-games__grid-title {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-slot-games__grid-item p {
  color: var(--text-main);
  font-size: 1em;
}

.page-slot-games__center-cta {
  margin-top: 50px;
}

/* Benefits Section */
.page-slot-games__benefits .page-slot-games__content-wrapper {
  display: flex;
  flex-wrap: wrap-reverse;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-slot-games__benefits .page-slot-games__image-block {
  flex: 1;
  min-width: 300px;
}

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

.page-slot-games__benefits .page-slot-games__text-block {
  flex: 1;
  min-width: 300px;
}

.page-slot-games__list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.page-slot-games__list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23F2C14E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  color: var(--text-main);
  font-size: 1.05em;
}

.page-slot-games__list li strong {
  color: var(--secondary-color);
}

/* How To Play Section */
.page-slot-games__how-to-play {
  background-color: var(--body-bg);
}

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

.page-slot-games__step-item {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-slot-games__step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--button-gradient);
  color: #ffffff;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-slot-games__step-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-slot-games__step-item p {
  color: var(--text-main);
  font-size: 1em;
}

/* Strategy Section */
.page-slot-games__strategy {
  background-color: var(--card-bg);
}

.page-slot-games__strategy-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0 auto;
  max-width: 900px;
  text-align: left;
}

.page-slot-games__strategy-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23FFD36B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"></path></svg>') no-repeat left top 5px;
  background-size: 20px;
  padding-left: 35px;
  margin-bottom: 20px;
  color: var(--text-main);
  font-size: 1.05em;
}

.page-slot-games__strategy-list li strong {
  color: var(--secondary-color);
}

/* Promotions Section */
.page-slot-games__promotions {
  background-color: var(--body-bg);
}

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

.page-slot-games__promo-card {
  background: var(--card-bg);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slot-games__promo-card img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-slot-games__promo-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-slot-games__promo-card p {
  color: var(--text-main);
  font-size: 1em;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Security & Support Section */
.page-slot-games__security-support {
  background-color: var(--card-bg);
}

/* FAQ Section */
.page-slot-games__faq {
  background-color: var(--body-bg);
}

.page-slot-games__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

details.page-slot-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--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;
  color: var(--text-main);
}

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: rgba(var(--primary-color-rgb), 0.1);
}

.page-slot-games__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--primary-color);
}

.page-slot-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-slot-games__faq-item .page-slot-games__faq-answer {
  padding: 0 25px 20px;
  background: var(--body-bg);
  border-radius: 0 0 8px 8px;
  color: var(--text-main);
  font-size: 1em;
}

/* Conclusion Section */
.page-slot-games__conclusion {
  background-color: var(--card-bg);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-slot-games {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-slot-games__section {
    padding: 40px 15px;
  }

  .page-slot-games__section-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-slot-games__section-description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  /* Hero */
  .page-slot-games__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-slot-games__hero-image img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 8px;
  }

  .page-slot-games__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-slot-games__intro-text {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-slot-games__cta-buttons {
    flex-direction: column;
    gap: 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 20px;
    font-size: 1em;
  }

  /* All image containers */
  .page-slot-games__section,
  .page-slot-games__card,
  .page-slot-games__container,
  .page-slot-games__content-wrapper,
  .page-slot-games__grid,
  .page-slot-games__promo-grid,
  .page-slot-games__steps-grid,
  .page-slot-games__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0px;
    padding-right: 0px;
  }

  .page-slot-games__about-slots .page-slot-games__content-wrapper,
  .page-slot-games__benefits .page-slot-games__content-wrapper {
    flex-direction: column;
  }

  .page-slot-games__about-slots .page-slot-games__text-block,
  .page-slot-games__benefits .page-slot-games__text-block,
  .page-slot-games__about-slots .page-slot-games__image-block,
  .page-slot-games__benefits .page-slot-games__image-block {
    min-width: unset;
    width: 100%;
  }

  .page-slot-games__list li,
  .page-slot-games__strategy-list li {
    font-size: 0.95em;
  }

  .page-slot-games__promo-card img {
     /* Adjust height for mobile cards */
  }

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

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

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