/* style/slot-games-themed-slots.css */

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

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

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

.page-slot-games-themed-slots__section {
  padding: 60px 0;
  text-align: center;
}

.page-slot-games-themed-slots__section-title {
  font-size: 2.8em;
  font-weight: 700;
  color: var(--page-slot-games-themed-slots-gold-color);
  margin-bottom: 30px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.4);
}

.page-slot-games-themed-slots__text-block {
  font-size: 1.1em;
  color: var(--page-slot-games-themed-slots-text-secondary);
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-slot-games-themed-slots__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Rely on body for header offset, add small decorative padding-top */
  background-color: var(--page-slot-games-themed-slots-deep-green);
  overflow: hidden;
}

.page-slot-games-themed-slots__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.page-slot-games-themed-slots__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7);
}

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

.page-slot-games-themed-slots__hero-title {
  font-size: clamp(2.5em, 5vw, 3.5em);
  font-weight: 900;
  color: var(--page-slot-games-themed-slots-gold-color);
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(242, 193, 78, 0.7);
}

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

.page-slot-games-themed-slots__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.page-slot-games-themed-slots__btn-primary,
.page-slot-games-themed-slots__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-slot-games-themed-slots__btn-primary {
  background: var(--page-slot-games-themed-slots-button-gradient);
  color: var(--page-slot-games-themed-slots-text-main);
  border: 2px solid var(--page-slot-games-themed-slots-primary-color);
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-slot-games-themed-slots__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
  transform: translateY(-2px);
}

.page-slot-games-themed-slots__btn-secondary {
  background-color: transparent;
  color: var(--page-slot-games-themed-slots-gold-color);
  border: 2px solid var(--page-slot-games-themed-slots-gold-color);
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.2);
}

.page-slot-games-themed-slots__btn-secondary:hover {
  background-color: var(--page-slot-games-themed-slots-gold-color);
  color: var(--page-slot-games-themed-slots-background);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.4);
  transform: translateY(-2px);
}

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

.page-slot-games-themed-slots__theme-card {
  background-color: var(--page-slot-games-themed-slots-card-bg);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--page-slot-games-themed-slots-border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games-themed-slots__theme-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-slot-games-themed-slots__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-slot-games-themed-slots__card-title {
  font-size: 1.6em;
  color: var(--page-slot-games-themed-slots-gold-color);
  margin-bottom: 10px;
  font-weight: 700;
}

.page-slot-games-themed-slots__card-text {
  font-size: 1em;
  color: var(--page-slot-games-themed-slots-text-secondary);
  flex-grow: 1;
}

/* Benefits Section */
.page-slot-games-themed-slots__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games-themed-slots__benefit-item {
  background-color: var(--page-slot-games-themed-slots-card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid var(--page-slot-games-themed-slots-border-color);
}

.page-slot-games-themed-slots__benefit-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-slot-games-themed-slots__benefit-title {
  font-size: 1.5em;
  color: var(--page-slot-games-themed-slots-gold-color);
  margin-bottom: 10px;
  font-weight: 700;
}

.page-slot-games-themed-slots__benefit-text {
  color: var(--page-slot-games-themed-slots-text-secondary);
}

/* Guide & Strategy Sections */
.page-slot-games-themed-slots__guide-list,
.page-slot-games-themed-slots__strategy-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-slot-games-themed-slots__guide-list li,
.page-slot-games-themed-slots__strategy-list li {
  background-color: var(--page-slot-games-themed-slots-card-bg);
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid var(--page-slot-games-themed-slots-primary-color);
  color: var(--page-slot-games-themed-slots-text-main);
  font-size: 1.05em;
}

.page-slot-games-themed-slots__guide-list li strong,
.page-slot-games-themed-slots__strategy-list li strong {
  color: var(--page-slot-games-themed-slots-gold-color);
}

/* Promotions & Payment Sections */
.page-slot-games-themed-slots__promotion-list,
.page-slot-games-themed-slots__payment-list,
.page-slot-games-themed-slots__support-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-slot-games-themed-slots__promotion-list li,
.page-slot-games-themed-slots__payment-list li,
.page-slot-games-themed-slots__support-list li {
  background-color: var(--page-slot-games-themed-slots-card-bg);
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid var(--page-slot-games-themed-slots-secondary-color);
  color: var(--page-slot-games-themed-slots-text-main);
  font-size: 1.05em;
}

.page-slot-games-themed-slots__promotion-list a,
.page-slot-games-themed-slots__payment-list a {
  color: var(--page-slot-games-themed-slots-gold-color);
  text-decoration: none;
  font-weight: bold;
}

.page-slot-games-themed-slots__promotion-list a:hover,
.page-slot-games-themed-slots__payment-list a:hover {
  text-decoration: underline;
}

/* Call to Action */
.page-slot-games-themed-slots__call-to-action {
  background-color: var(--page-slot-games-themed-slots-deep-green);
  padding: 80px 0;
}

.page-slot-games-themed-slots__call-to-action .page-slot-games-themed-slots__section-title {
  color: var(--page-slot-games-themed-slots-gold-color);
}

.page-slot-games-themed-slots__call-to-action .page-slot-games-themed-slots__text-block {
  color: var(--page-slot-games-themed-slots-text-main);
}

/* FAQ Section */
.page-slot-games-themed-slots__faq-list {
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-slot-games-themed-slots__faq-item {
  background-color: var(--page-slot-games-themed-slots-card-bg);
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--page-slot-games-themed-slots-border-color);
}

.page-slot-games-themed-slots__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: var(--page-slot-games-themed-slots-gold-color);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-slot-games-themed-slots__faq-question:hover {
  background-color: rgba(var(--page-slot-games-themed-slots-primary-color), 0.1);
}

.page-slot-games-themed-slots__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--page-slot-games-themed-slots-gold-color);
  margin-left: 15px;
}

.page-slot-games-themed-slots__faq-item[open] .page-slot-games-themed-slots__faq-toggle {
  content: '−';
}

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

.page-slot-games-themed-slots__faq-answer p {
  margin-top: 0;
  margin-bottom: 0;
}

/* Ensure summary marker is hidden for details tag */
.page-slot-games-themed-slots__faq-item summary {
  list-style: none;
}

.page-slot-games-themed-slots__faq-item summary::-webkit-details-marker {
  display: none;
}

/* General image sizing */
.page-slot-games-themed-slots img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .page-slot-games-themed-slots__section-title {
    font-size: 2em;
  }

  .page-slot-games-themed-slots__hero-title {
    font-size: clamp(2em, 8vw, 2.8em);
  }

  .page-slot-games-themed-slots__hero-description {
    font-size: 1em;
  }

  .page-slot-games-themed-slots__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-slot-games-themed-slots__btn-primary,
  .page-slot-games-themed-slots__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    margin: 0 auto;
  }

  /* Image and container responsive */
  .page-slot-games-themed-slots img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-slot-games-themed-slots__section,
  .page-slot-games-themed-slots__container,
  .page-slot-games-themed-slots__card,
  .page-slot-games-themed-slots__hero-section,
  .page-slot-games-themed-slots__hero-image-wrapper,
  .page-slot-games-themed-slots__hero-content,
  .page-slot-games-themed-slots__theme-grid,
  .page-slot-games-themed-slots__benefits-grid,
  .page-slot-games-themed-slots__guide-list,
  .page-slot-games-themed-slots__strategy-list,
  .page-slot-games-themed-slots__promotion-list,
  .page-slot-games-themed-slots__payment-list,
  .page-slot-games-themed-slots__support-list,
  .page-slot-games-themed-slots__faq-list,
  .page-slot-games-themed-slots__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-slot-games-themed-slots__hero-section {
    padding-top: 10px !important;
  }

  .page-slot-games-themed-slots__theme-card,
  .page-slot-games-themed-slots__benefit-item,
  .page-slot-games-themed-slots__faq-item {
    padding: 20px;
  }

  .page-slot-games-themed-slots__card-image,
  .page-slot-games-themed-slots__benefit-icon {
    min-width: 200px !important;
    min-height: 200px !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-slot-games-themed-slots__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-slot-games-themed-slots__faq-answer {
    padding: 0 20px 15px 20px;
  }

  .page-slot-games-themed-slots__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-slot-games-themed-slots__cta-buttons > * {
    flex-grow: 1;
    min-width: unset;
  }
}