/* style/slot-games.css */
.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__dark-bg {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-slot-games__card-bg {
  background-color: #11271B;
  color: #F2FFF6;
}

.page-slot-games__section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #F2FFF6;
  margin-bottom: 40px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.page-slot-games__sub-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  color: #F2FFF6;
  margin-top: 30px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-slot-games__description {
  font-size: clamp(16px, 2vw, 20px);
  color: #A7D9B8;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-slot-games p {
  margin-bottom: 15px;
  color: #F2FFF6;
}

.page-slot-games ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #F2FFF6;
}

.page-slot-games ul li::before {
  content: '✔';
  color: #57E38D; /* Glow */
  position: absolute;
  left: 0;
  top: 0;
}

.page-slot-games a {
  color: #57E38D;
  text-decoration: none;
}

.page-slot-games a:hover {
  text-decoration: underline;
}

/* Buttons */
.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
}

.page-slot-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-slot-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-slot-games__btn-secondary {
  background-color: transparent;
  color: #57E38D;
  border: 2px solid #57E38D;
}

.page-slot-games__btn-secondary:hover {
  background-color: rgba(87, 227, 141, 0.1);
  color: #F2FFF6;
}

.page-slot-games__btn-small {
  padding: 8px 20px;
  font-size: 16px;
}

.page-slot-games__btn-large {
  padding: 15px 40px;
  font-size: 20px;
}

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

/* Hero Section */
.page-slot-games__hero-section {
  position: relative;
  padding: 10px 0 60px 0; /* body handles header offset, this is decorative */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

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

.page-slot-games__main-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: #F2FFF6;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.page-slot-games__hero-content .page-slot-games__description {
  font-size: clamp(18px, 2.5vw, 24px);
  color: #A7D9B8;
  margin-bottom: 40px;
}

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

/* Intro Section */
.page-slot-games__intro-section {
  padding-top: 40px;
}

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

@media (min-width: 768px) {
  .page-slot-games__grid-2-columns {
    grid-template-columns: 1fr 1fr;
  }
}

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

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

.page-slot-games__card {
  background-color: #11271B;
  border-radius: 15px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 450px; /* Ensure cards have a minimum height */
}

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

.page-slot-games__card-title {
  font-size: 24px;
  font-weight: 700;
  color: #F2FFF6;
  margin-bottom: 10px;
}

.page-slot-games__card-text {
  font-size: 16px;
  color: #A7D9B8;
  flex-grow: 1;
  margin-bottom: 20px;
}

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

.page-slot-games__step-item {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-slot-games__step-icon {
  background-color: #57E38D; /* Glow */
  color: #08160F;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-slot-games__step-title {
  font-size: 22px;
  font-weight: 700;
  color: #F2FFF6;
  margin-bottom: 10px;
}

.page-slot-games__step-text {
  font-size: 16px;
  color: #A7D9B8;
}

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

.page-slot-games__feature-card {
  background-color: #11271B;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-slot-games__feature-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min size for content images */
  min-height: 200px;
}

.page-slot-games__feature-title {
  font-size: 22px;
  font-weight: 700;
  color: #F2FFF6;
  margin-bottom: 10px;
}

.page-slot-games__feature-text {
  font-size: 16px;
  color: #A7D9B8;
}

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

.page-slot-games__promo-card {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.page-slot-games__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-slot-games__promo-content {
  padding: 25px;
}

.page-slot-games__promo-title {
  font-size: 24px;
  font-weight: 700;
  color: #F2FFF6;
  margin-bottom: 10px;
}

.page-slot-games__promo-text {
  font-size: 16px;
  color: #A7D9B8;
  margin-bottom: 20px;
}

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

.page-slot-games__faq-item {
  background-color: #11271B;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 600;
  color: #F2FFF6;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

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

.page-slot-games__faq-toggle {
  font-size: 24px;
  line-height: 1;
  color: #57E38D;
  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 25px;
  font-size: 16px;
  color: #A7D9B8;
  border-top: 1px solid #2E7A4E; /* Border */
  margin-top: -1px;
}

.page-slot-games__faq-answer p {
  margin-top: 15px;
  margin-bottom: 0;
  color: #A7D9B8;
}

/* Conclusion Section */
.page-slot-games__conclusion-section {
  padding-bottom: 80px;
}

/* Global image settings for content area */
.page-slot-games img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Ensures images fill their space without distortion */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-slot-games__hero-image-wrapper {
    max-height: 550px;
  }
}

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

  .page-slot-games__hero-section {
    padding-bottom: 40px;
  }

  .page-slot-games__hero-image-wrapper {
    max-height: 400px;
  }

  .page-slot-games__main-title {
    font-size: clamp(32px, 8vw, 48px);
  }

  .page-slot-games__hero-content .page-slot-games__description {
    font-size: clamp(16px, 3vw, 20px);
  }

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

  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    width: 100%;
  }

  .page-slot-games__grid-2-columns {
    grid-template-columns: 1fr;
  }

  .page-slot-games__game-cards-grid,
  .page-slot-games__grid-steps,
  .page-slot-games__features-grid,
  .page-slot-games__promo-cards-grid {
    grid-template-columns: 1fr;
  }

  .page-slot-games__card,
  .page-slot-games__step-item,
  .page-slot-games__feature-card,
  .page-slot-games__promo-card {
    padding: 20px;
  }

  .page-slot-games__section-title {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 30px;
  }

  .page-slot-games__sub-title {
    font-size: clamp(20px, 5vw, 28px);
  }

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

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

  /* Mobile specific overrides for images, videos, buttons */
  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important; /* Ensure content images fill container */
    height: auto !important;
    display: block !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;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games__hero-section {
    padding-top: 10px !important; /* body handles --header-offset, this is decorative */
  }

  .page-slot-games__cta-button,
  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary,
  .page-slot-games a[class*="button"],
  .page-slot-games a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .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;
    padding-left: 0px;
    padding-right: 0px;
    flex-wrap: wrap !important;
    gap: 15px; /* Adjust gap for column layout */
    flex-direction: column;
  }

  .page-slot-games__feature-icon {
    min-width: unset;
    min-height: unset;
    width: 80px;
    height: 80px;
  }
  .page-slot-games__card-image, .page-slot-games__promo-image {
    min-width: 200px;
    min-height: 150px;
    height: auto;
  }
}