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

.page-slot-games {
  color: var(--page-slot-games-text-main);
  background-color: var(--page-slot-games-bg-color);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-slot-games__card {
  background-color: var(--page-slot-games-card-bg);
  color: var(--page-slot-games-text-main);
  border: 1px solid var(--page-slot-games-border-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-slot-games__section-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__section-title {
  color: var(--page-slot-games-gold-color);
  font-size: 2.5em;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-slot-games__section-description {
  color: var(--page-slot-games-text-secondary);
  font-size: 1.1em;
}

/* Hero Section */
.page-slot-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 80px;
  overflow: hidden;
  text-align: center;
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  max-height: 675px;
  object-fit: cover;
  margin-bottom: 30px;
  border-radius: 10px;
}

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

.page-slot-games__main-title {
  color: var(--page-slot-games-gold-color);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.page-slot-games__hero-description {
  color: var(--page-slot-games-text-main);
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

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

.page-slot-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

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

.page-slot-games__btn-secondary:hover {
  transform: translateY(-3px);
  background-color: rgba(242, 193, 78, 0.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Video Section */
.page-slot-games__video-section {
  padding: 60px 20px;
  text-align: center;
}

.page-slot-games__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-slot-games__video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

.page-slot-games__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

/* Content Area */
.page-slot-games__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

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

.page-slot-games__feature-title {
  color: var(--page-slot-games-gold-color);
  font-size: 1.5em;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slot-games__feature-text {
  color: var(--page-slot-games-text-secondary);
}

/* How-To Section */
.page-slot-games__how-to-section {
  padding: 60px 20px;
  text-align: center;
}

.page-slot-games__how-to-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.page-slot-games__how-to-steps {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-slot-games__step-title {
  color: var(--page-slot-games-gold-color);
  font-size: 1.4em;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-slot-games__step-text {
  color: var(--page-slot-games-text-secondary);
  margin-bottom: 20px;
}

.page-slot-games__how-to-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-slot-games__how-to-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Popular Games Section */
.page-slot-games__popular-games-section {
  padding: 60px 20px;
  text-align: center;
}

.page-slot-games__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-slot-games__game-card {
  text-align: center;
}

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

.page-slot-games__game-title {
  color: var(--page-slot-games-gold-color);
  font-size: 1.3em;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-slot-games__game-description {
  color: var(--page-slot-games-text-secondary);
  font-size: 0.95em;
  margin-bottom: 20px;
}

/* Promotions Section */
.page-slot-games__promotions-section {
  padding: 60px 20px;
  text-align: center;
}

.page-slot-games__promotions-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.page-slot-games__promotions-list {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-slot-games__promo-title {
  color: var(--page-slot-games-gold-color);
  font-size: 1.4em;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-slot-games__promo-text {
  color: var(--page-slot-games-text-secondary);
  margin-bottom: 20px;
}

.page-slot-games__promotions-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-slot-games__promotions-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-slot-games__faq-section {
  padding: 60px 20px;
  text-align: center;
}

.page-slot-games__faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.page-slot-games__faq-item {
  text-align: left;
  cursor: pointer;
  border: 1px solid var(--page-slot-games-border-color);
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: var(--page-slot-games-gold-color);
  position: relative;
}

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

.page-slot-games__faq-question::marker {
  display: none;
}

.page-slot-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-slot-games__faq-answer {
  padding: 0 25px 20px;
  color: var(--page-slot-games-text-secondary);
  font-size: 1em;
  line-height: 1.6;
}

/* CTA Bottom Section */
.page-slot-games__cta-bottom-section {
  padding: 80px 20px;
  text-align: center;
}

.page-slot-games__cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-slot-games__cta-title {
  color: var(--page-slot-games-gold-color);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-slot-games__cta-description {
  color: var(--page-slot-games-text-main);
  font-size: 1.15em;
  margin-bottom: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-slot-games__hero-image {
    max-height: 500px;
  }
  .page-slot-games__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-slot-games__hero-section {
    padding: 10px 15px 60px;
  }
  .page-slot-games__main-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .page-slot-games__hero-description {
    font-size: 1em;
  }
  .page-slot-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-slot-games__video-section,
  .page-slot-games__content-area,
  .page-slot-games__how-to-section,
  .page-slot-games__popular-games-section,
  .page-slot-games__promotions-section,
  .page-slot-games__faq-section,
  .page-slot-games__cta-bottom-section {
    padding: 40px 15px;
  }

  .page-slot-games__section-title {
    font-size: 1.8em;
  }

  .page-slot-games__video-wrapper {
    padding-bottom: 56.25% !important; /* Ensure aspect ratio is maintained */
  }

  .page-slot-games__video-link,
  .page-slot-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
  }
  .page-slot-games__how-to-content,
  .page-slot-games__promotions-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-slot-games__how-to-image,
  .page-slot-games__promotions-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-slot-games__features-grid,
  .page-slot-games__games-grid {
    grid-template-columns: 1fr;
  }

  .page-slot-games__game-image {
    height: auto;
    min-height: 200px;
  }

  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  .page-slot-games__section,
  .page-slot-games__card,
  .page-slot-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-slot-games__video-section {
    padding-top: 10px !important;
  }
  .page-slot-games__cta-title {
    font-size: 1.8em;
  }
}

@media (max-width: 480px) {
  .page-slot-games__section-title {
    font-size: 1.5em;
  }
  .page-slot-games__main-title {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
  }
  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    font-size: 0.9em;
    padding: 10px 15px;
  }
}