/* style/slot-games.css */

:root {
  --page-slot-games-bg: #08160F;
  --page-slot-games-card-bg: #11271B;
  --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;
  --page-slot-games-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-slot-games-light-text: #333333;
  --page-slot-games-light-bg-card: #ffffff;
}

.page-slot-games {
  background-color: var(--page-slot-games-bg); /* Body background from shared.css, this is for main content area */
  color: var(--page-slot-games-text-main);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-slot-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background: var(--page-slot-games-deep-green);
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit image height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-width: 1920px; /* Ensure image doesn't stretch too wide */
}

.page-slot-games__hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: 20px; /* Space between image and text */
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for readability */
  border-radius: 10px;
}

.page-slot-games__main-title {
  color: var(--page-slot-games-text-main);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.page-slot-games__hero-description {
  color: var(--page-slot-games-text-secondary);
  font-size: 1.1em;
  margin-bottom: 30px;
}

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

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-sizing: border-box;
  max-width: 100%;
}

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

.page-slot-games__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

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

.page-slot-games__btn-secondary:hover {
  background: rgba(var(--page-slot-games-border), 0.2);
  transform: translateY(-2px);
}

.page-slot-games__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-slot-games__btn-large {
  padding: 18px 35px;
  font-size: 1.1em;
}

.page-slot-games__section-title {
  color: var(--page-slot-games-text-main);
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-slot-games__section-title--dark-text {
  color: var(--page-slot-games-light-text);
}

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

.page-slot-games__section-description--dark-text {
  color: var(--page-slot-games-light-text);
}

.page-slot-games__introduction-section,
.page-slot-games__benefits-section,
.page-slot-games__promotions-section,
.page-slot-games__cta-final-section {
  padding: 80px 0;
  background-color: var(--page-slot-games-bg);
}

.page-slot-games__game-types-section,
.page-slot-games__guide-section,
.page-slot-games__faq-section {
  padding: 80px 0;
  background-color: var(--page-slot-games-light-bg-card);
}

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

.page-slot-games__light-bg {
  background-color: var(--page-slot-games-light-bg-card);
  color: var(--page-slot-games-light-text);
}

.page-slot-games__grid-2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

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

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

.page-slot-games__text-block p {
  margin-bottom: 15px;
  color: var(--page-slot-games-text-secondary);
}

.page-slot-games__introduction-section .page-slot-games__text-block p {
  color: var(--page-slot-games-text-secondary);
}

.page-slot-games__image-block img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-slot-games__card {
  background-color: var(--page-slot-games-card-bg);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--page-slot-games-text-main);
}

.page-slot-games__card--light-bg {
  background-color: var(--page-slot-games-light-bg-card);
  color: var(--page-slot-games-light-text);
  border: 1px solid #e0e0e0;
}

.page-slot-games__card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-slot-games__card-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: var(--page-slot-games-text-main);
}

.page-slot-games__card-title--dark-text {
  color: var(--page-slot-games-light-text);
}

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

.page-slot-games__card-text--dark-text {
  color: var(--page-slot-games-light-text);
}

.page-slot-games__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-slot-games__benefit-list {
  list-style: none;
  padding: 0;
}

.page-slot-games__benefit-item {
  background-color: var(--page-slot-games-card-bg);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-slot-games__benefit-title {
  color: var(--page-slot-games-text-main);
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-slot-games__benefit-item p {
  color: var(--page-slot-games-text-secondary);
}

.page-slot-games__grid-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-slot-games__step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: var(--page-slot-games-light-bg-card);
  color: var(--page-slot-games-light-text);
  border: 1px solid #e0e0e0;
}

.page-slot-games__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: var(--page-slot-games-deep-green);
  margin-bottom: 15px;
  background-color: rgba(var(--page-slot-games-deep-green), 0.1);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-slot-games__step-title--dark-text {
  color: var(--page-slot-games-light-text);
}

.page-slot-games__step-text {
  color: var(--page-slot-games-light-text);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-slot-games__step-text--dark-text {
  color: var(--page-slot-games-light-text);
}

.page-slot-games__tips-block {
  background-color: var(--page-slot-games-light-bg-card);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
  color: var(--page-slot-games-light-text);
}

.page-slot-games__tips-block h3 {
  color: var(--page-slot-games-light-text);
  margin-bottom: 20px;
}

.page-slot-games__tip-list {
  list-style: disc inside;
  padding-left: 0;
}

.page-slot-games__tip-list li {
  margin-bottom: 10px;
  color: var(--page-slot-games-light-text);
}

.page-slot-games__tip-list--dark-text li {
  color: var(--page-slot-games-light-text);
}

.page-slot-games__promo-card {
  background-color: var(--page-slot-games-card-bg);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  color: var(--page-slot-games-text-main);
}

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

.page-slot-games__promo-card h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: var(--page-slot-games-text-main);
}

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

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

.page-slot-games__faq-item {
  background-color: var(--page-slot-games-light-bg-card);
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
  color: var(--page-slot-games-light-text);
}

.page-slot-games__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-weight: bold;
  cursor: pointer;
  list-style: none; /* Remove default marker */
  color: var(--page-slot-games-light-text);
}

.page-slot-games__faq-item summary::-webkit-details-marker {
  display: none; /* Remove default marker for Webkit */
}

.page-slot-games__faq-question {
  color: var(--page-slot-games-light-text);
}

.page-slot-games__faq-qtext {
  color: var(--page-slot-games-light-text);
}

.page-slot-games__faq-qtext--dark-text {
  color: var(--page-slot-games-light-text);
}

.page-slot-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--page-slot-games-deep-green);
}

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

.page-slot-games__faq-answer {
  padding: 0 20px 20px;
  color: var(--page-slot-games-light-text);
}

.page-slot-games__faq-answer p {
  margin-bottom: 10px;
  color: var(--page-slot-games-light-text);
}

.page-slot-games__faq-answer--dark-text {
  color: var(--page-slot-games-light-text);
}

.page-slot-games__cta-final-section {
  text-align: center;
  padding: 100px 0;
  background-color: var(--page-slot-games-deep-green);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slot-games__grid-2-cols {
    grid-template-columns: 1fr;
  }
  .page-slot-games__hero-content {
    padding: 30px 15px;
  }
  .page-slot-games__main-title {
    font-size: 2em;
  }
  .page-slot-games__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-slot-games__hero-section {
    min-height: 400px;
    padding: 40px 15px;
    padding-top: 10px !important; /* body handles header offset */
  }
  .page-slot-games__hero-image-wrapper {
    max-height: 400px;
  }
  .page-slot-games__hero-image {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
  }
  .page-slot-games__hero-content {
    margin-top: 15px;
  }
  .page-slot-games__main-title {
    font-size: clamp(1.8em, 5vw, 2.5em);
  }
  .page-slot-games__section-title {
    font-size: clamp(1.8em, 5vw, 2.5em);
  }
  .page-slot-games__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-slot-games__introduction-section,
  .page-slot-games__benefits-section,
  .page-slot-games__promotions-section,
  .page-slot-games__cta-final-section,
  .page-slot-games__game-types-section,
  .page-slot-games__guide-section,
  .page-slot-games__faq-section {
    padding: 60px 0;
  }
  .page-slot-games__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games__grid-2-cols,
  .page-slot-games__grid-3-cols,
  .page-slot-games__grid-promo,
  .page-slot-games__grid-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .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;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-slot-games__card img {
    min-width: 100%;
  }
  .page-slot-games__section,
  .page-slot-games__card,
  .page-slot-games__container,
  .page-slot-games__text-block,
  .page-slot-games__image-block,
  .page-slot-games__promo-card,
  .page-slot-games__step-card,
  .page-slot-games__tips-block,
  .page-slot-games__faq-item,
  .page-slot-games__cta-buttons,
  .page-slot-games__button-group,
  .page-slot-games__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-slot-games__video-section {
    padding-top: 10px !important;
  }
  .page-slot-games video,
  .page-slot-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-slot-games__video-section,
  .page-slot-games__video-container,
  .page-slot-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-slot-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-slot-games__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

/* Ensure all content images meet minimum size in CSS */
.page-slot-games__introduction-section .page-slot-games__image-block img,
.page-slot-games__game-types-section .page-slot-games__card img,
.page-slot-games__benefits-section .page-slot-games__image-block img,
.page-slot-games__promotions-section .page-slot-games__promo-card img {
  min-width: 200px;
  min-height: 200px;
  width: 100%; /* Ensure they fill container on desktop too */
  height: auto;
}

/* Text color adjustments for light background sections */
.page-slot-games__light-bg h2,
.page-slot-games__light-bg h3,
.page-slot-games__light-bg p,
.page-slot-games__light-bg li,
.page-slot-games__light-bg a {
  color: var(--page-slot-games-light-text);
}

.page-slot-games__light-bg .page-slot-games__btn-secondary {
  color: var(--page-slot-games-deep-green);
  border-color: var(--page-slot-games-deep-green);
}

.page-slot-games__light-bg .page-slot-games__btn-secondary:hover {
  background: rgba(var(--page-slot-games-deep-green), 0.1);
}

.page-slot-games__light-bg .page-slot-games__step-number {
  color: var(--page-slot-games-deep-green);
  background-color: rgba(var(--page-slot-games-deep-green), 0.05);
}