/* style/slot-games.css */

/* Custom Colors */
:root {
  --page-slot-games-primary-color: #11A84E;
  --page-slot-games-secondary-color: #22C768;
  --page-slot-games-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-slot-games-card-bg: #11271B;
  --page-slot-games-background: #08160F;
  --page-slot-games-text-main: #F2FFF6;
  --page-slot-games-text-secondary: #A7D9B8;
  --page-slot-games-border: #2E7A4E;
  --page-slot-games-glow: #57E38D;
  --page-slot-games-gold: #F2C14E;
  --page-slot-games-divider: #1E3A2A;
  --page-slot-games-deep-green: #0A4B2C;
}

/* Base styles for the page */
.page-slot-games {
  font-family: 'Arial', sans-serif;
  color: var(--page-slot-games-text-main); /* Main text color for dark background */
  background-color: var(--page-slot-games-background); /* Main background color */
}

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

.page-slot-games__section {
  padding: 80px 0;
  text-align: center;
}

.page-slot-games__dark-bg {
  background-color: var(--page-slot-games-background);
  color: var(--page-slot-games-text-main);
}

.page-slot-games__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-slot-games__section-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--page-slot-games-text-main);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.page-slot-games__light-bg .page-slot-games__section-title {
  color: #333333;
}

.page-slot-games__description,
.page-slot-games__text-block {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--page-slot-games-text-secondary);
}

.page-slot-games__light-bg .page-slot-games__description,
.page-slot-games__light-bg .page-slot-games__text-block {
  color: #555555;
}

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

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

/* Buttons */
.page-slot-games__btn-primary,
.page-slot-games__btn-secondary,
.page-slot-games__btn-link {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games__btn-primary {
  background: var(--page-slot-games-button-gradient);
  color: var(--page-slot-games-text-main);
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-slot-games__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

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

.page-slot-games__btn-secondary:hover {
  background: var(--page-slot-games-primary-color);
  color: var(--page-slot-games-text-main);
  transform: translateY(-2px);
}

.page-slot-games__btn-link {
  background: none;
  color: var(--page-slot-games-gold);
  border: 1px solid var(--page-slot-games-gold);
  padding: 10px 20px;
  font-size: 0.95rem;
}

.page-slot-games__btn-link:hover {
  background: var(--page-slot-games-gold);
  color: #333333;
}

.page-slot-games__btn-large {
  padding: 18px 40px;
  font-size: 1.25rem;
}

/* Hero Section */
.page-slot-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 80px 0; /* body handles top padding, use small decorative padding here */
  min-height: 600px;
  overflow: hidden;
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 0;
}

.page-slot-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

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

.page-slot-games__main-title {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--page-slot-games-text-main);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

.page-slot-games__hero-section .page-slot-games__description {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: var(--page-slot-games-text-main);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

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

/* Feature Grid (Why Choose) */
.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 {
  padding: 30px;
  border-radius: 12px;
  background-color: var(--page-slot-games-card-bg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--page-slot-games-border);
  color: var(--page-slot-games-text-main);
}

.page-slot-games__feature-card .page-slot-games__card-title {
  font-size: 1.6rem;
  color: var(--page-slot-games-gold);
  margin-bottom: 15px;
}

.page-slot-games__feature-card .page-slot-games__card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--page-slot-games-text-secondary);
}

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

.page-slot-games__game-card {
  background-color: var(--page-slot-games-card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
  border: 1px solid var(--page-slot-games-border);
  color: var(--page-slot-games-text-main);
}

.page-slot-games__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-slot-games__game-card .page-slot-games__card-title {
  font-size: 1.4rem;
  color: var(--page-slot-games-gold);
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-slot-games__game-card .page-slot-games__card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--page-slot-games-text-secondary);
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-slot-games__btn-link {
  margin-top: 10px;
}

/* How to Play Steps */
.page-slot-games__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-slot-games__step-item {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  counter-increment: step-counter;
  position: relative;
  padding-left: 70px;
  color: #333333;
}

.page-slot-games__step-item::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 20px;
  width: 40px;
  height: 40px;
  background: var(--page-slot-games-primary-color);
  color: var(--page-slot-games-text-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: bold;
}

.page-slot-games__step-title {
  font-size: 1.5rem;
  color: var(--page-slot-games-primary-color);
  margin-bottom: 10px;
}

.page-slot-games__step-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
}

.page-slot-games__step-item a {
  color: var(--page-slot-games-primary-color);
  text-decoration: underline;
}

.page-slot-games__step-item a:hover {
  color: var(--page-slot-games-deep-green);
}

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

.page-slot-games__promo-card {
  background-color: var(--page-slot-games-card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
  border: 1px solid var(--page-slot-games-border);
  color: var(--page-slot-games-text-main);
}

.page-slot-games__promo-card .page-slot-games__card-title {
  font-size: 1.6rem;
  color: var(--page-slot-games-gold);
  margin-bottom: 15px;
}

.page-slot-games__promo-card .page-slot-games__card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--page-slot-games-text-secondary);
  margin-bottom: 20px;
}

/* Tips & Strategies */
.page-slot-games__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-slot-games__tip-item {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  color: #333333;
}

.page-slot-games__tip-title {
  font-size: 1.5rem;
  color: var(--page-slot-games-primary-color);
  margin-bottom: 10px;
}

.page-slot-games__tip-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
}

/* Mobile Experience */
.page-slot-games__mobile-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-slot-games__mobile-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-slot-games__mobile-text {
  max-width: 500px;
  text-align: left;
}

.page-slot-games__mobile-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: var(--page-slot-games-text-secondary);
}

/* FAQ Section */
.page-slot-games__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-slot-games__faq-item {
  background-color: #ffffff;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  color: #333333;
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--page-slot-games-primary-color);
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}

.page-slot-games__faq-item[open] .page-slot-games__faq-question {
  background-color: #f0f0f0;
  border-bottom: none;
}

.page-slot-games__faq-question:hover {
  background-color: #f0f0f0;
}

.page-slot-games__faq-qtext {
  flex-grow: 1;
  color: #333333;
}

.page-slot-games__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--page-slot-games-primary-color);
}

.page-slot-games__faq-item[open] .page-slot-games__faq-toggle {
  transform: rotate(45deg);
}

.page-slot-games__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  line-height: 1.7;
  color: #555555;
}

.page-slot-games__faq-item details > summary {
  list-style: none;
}

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

/* Final CTA */
.page-slot-games__cta-final {
  padding: 100px 0;
  background-color: var(--page-slot-games-deep-green);
  border-top: 5px solid var(--page-slot-games-primary-color);
}

.page-slot-games__cta-final .page-slot-games__section-title {
  color: var(--page-slot-games-text-main);
  margin-bottom: 25px;
}

.page-slot-games__cta-final .page-slot-games__description {
  color: var(--page-slot-games-text-secondary);
  max-width: 700px;
  margin-bottom: 50px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-slot-games__hero-content {
    padding: 20px;
  }

  .page-slot-games__main-title {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
  }

  .page-slot-games__hero-section .page-slot-games__description {
    font-size: 1.2rem;
  }

  .page-slot-games__mobile-content {
    flex-direction: column;
    gap: 30px;
  }

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

@media (max-width: 768px) {
  .page-slot-games__section {
    padding: 40px 0;
  }

  .page-slot-games__hero-section {
    min-height: 500px;
    padding-bottom: 50px;
  }

  .page-slot-games__main-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .page-slot-games__hero-section .page-slot-games__description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

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

  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary,
  .page-slot-games__btn-link {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-slot-games__container,
  .page-slot-games__cta-buttons,
  .page-slot-games__features-grid,
  .page-slot-games__game-grid,
  .page-slot-games__promo-grid,
  .page-slot-games__mobile-content,
  .page-slot-games__faq-list {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }

  .page-slot-games img,
  .page-slot-games video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-slot-games__hero-image {
    filter: brightness(0.6); /* Slightly less dark on mobile */
  }

  .page-slot-games__step-item {
    padding-left: 60px;
  }

  .page-slot-games__step-item::before {
    left: 15px;
    top: 15px;
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }

  .page-slot-games__faq-question {
    font-size: 1.1rem;
    padding: 15px 20px;
  }

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

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

  .page-slot-games__cta-final .page-slot-games__section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }
}