/* style/slot-games.css */

/* General Styles */
.page-slot-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

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

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

.page-slot-games__section--dark {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6;
}

.page-slot-games__section-title {
  font-size: 2.8em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-slot-games__section-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__sub-title {
  font-size: 1.8em;
  color: #F2C14E; /* Gold */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-slot-games__content-block p,
.page-slot-games__list li {
  color: #F2FFF6;
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-slot-games__list {
  list-style: disc;
  text-align: left;
  max-width: 800px;
  margin: 0 auto 30px auto;
  padding-left: 25px;
}

.page-slot-games__list li {
  margin-bottom: 10px;
}

/* Hero Section */
.page-slot-games__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  background-color: #08160F; /* Fallback background */
  padding-top: 10px; /* Small top padding */
}

.page-slot-games__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  order: 1; /* Image first */
}

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

.page-slot-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  color: #F2FFF6;
  order: 2; /* Content after image */
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
}

.page-slot-games__hero-title {
  font-size: clamp(2.5em, 5vw, 4em);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.page-slot-games__hero-description {
  font-size: 1.3em;
  color: #F2FFF6;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Buttons */
.page-slot-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games__cta-button--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games__cta-button--primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-slot-games__cta-button--secondary {
  background: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-slot-games__cta-button--secondary:hover {
  background: #2AD16F;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-slot-games__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-slot-games__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-slot-games__cta-button--center {
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-slot-games__game-card,
.page-slot-games__promo-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #2E7A4E; /* Border */
}

.page-slot-games__game-image,
.page-slot-games__promo-image,
.page-slot-games__feature-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
  display: block;
}

.page-slot-games__game-title,
.page-slot-games__promo-title {
  font-size: 1.5em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-slot-games__game-text,
.page-slot-games__promo-text {
  color: #A7D9B8; /* Text Secondary */
  padding: 0 20px;
  margin-bottom: 25px;
  flex-grow: 1;
}

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

.page-slot-games__step-card {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid #2E7A4E;
  display: flex;
  flex-direction: column;
}

.page-slot-games__step-title {
  font-size: 1.6em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slot-games__step-text {
  color: #F2FFF6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* 2 Column Grid */
.page-slot-games__grid-2-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: left;
}

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

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

.page-slot-games__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  border-bottom: 1px solid #2E7A4E;
}

.page-slot-games__faq-item[open] .page-slot-games__faq-question {
  border-bottom: 1px solid #2E7A4E;
}

.page-slot-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #2AD16F; /* Primary color hint */
}

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

.page-slot-games__faq-answer {
  padding: 20px 25px;
  font-size: 1.05em;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
}

.page-slot-games__faq-answer p {
  margin-bottom: 0;
}

/* CTA Section */
.page-slot-games__section--cta {
  padding: 80px 0;
  background-color: #08160F;
}

.page-slot-games__container--flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-slot-games__section-title--cta {
  color: #F2C14E; /* Gold */
  font-size: 3em;
}

.page-slot-games__section-description--cta {
  max-width: 900px;
  font-size: 1.2em;
  color: #A7D9B8;
}

/* Responsive Styles */
@media (min-width: 769px) {
  .page-slot-games__grid-2-col {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
  .page-slot-games__hero-section {
    min-height: 700px;
  }
  .page-slot-games__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .page-slot-games__hero-content {
    position: relative;
    order: 2;
    padding: 100px 20px;
  }
}

@media (max-width: 768px) {
  .page-slot-games {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-slot-games__hero-section {
    padding: 20px 0;
    min-height: auto;
  }
  .page-slot-games__hero-title {
    font-size: 2.2em;
  }
  .page-slot-games__hero-description {
    font-size: 1em;
  }
  .page-slot-games__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-slot-games__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games__section-title {
    font-size: 2em;
  }
  .page-slot-games__sub-title {
    font-size: 1.5em;
  }
  .page-slot-games__game-grid,
  .page-slot-games__promo-grid,
  .page-slot-games__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-slot-games__list {
    padding-left: 20px;
  }
  .page-slot-games__section {
    padding: 40px 0;
  }
  .page-slot-games__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-slot-games__faq-answer {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-slot-games__container,
  .page-slot-games__hero-content,
  .page-slot-games__game-card,
  .page-slot-games__promo-card,
  .page-slot-games__step-card,
  .page-slot-games__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-slot-games__hero-image {
    height: 300px;
  }
  .page-slot-games__video-section {
    padding-top: 10px !important;
  }
}