/* style/slot-games.css */

/* Base styles for the slot-games page */
.page-slot-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.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-title {
  font-size: clamp(28px, 4vw, 42px);
  color: #26A9E0;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-slot-games__section-description {
  font-size: 18px;
  color: #f0f0f0;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

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

.page-slot-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

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

.page-slot-games__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-slot-games__hero-title {
  font-size: clamp(36px, 5vw, 60px);
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.1;
}

.page-slot-games__hero-description {
  font-size: clamp(18px, 2.5vw, 22px);
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__hero-cta-buttons,
.page-slot-games__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

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

.page-slot-games__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-slot-games__btn-primary:hover {
  background-color: #1a8cc4;
  border-color: #1a8cc4;
}

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

.page-slot-games__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-slot-games__btn-download {
  background-color: #EA7C07;
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-slot-games__btn-download:hover {
  background-color: #c96806;
  border-color: #c96806;
}

.page-slot-games__text-block {
  color: #f0f0f0;
  text-align: left;
}

.page-slot-games__text-block p {
  margin-bottom: 15px;
  font-size: 17px;
}

.page-slot-games__text-block a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-slot-games__text-block a:hover {
  color: #1a8cc4;
}

.page-slot-games__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  text-align: left;
  margin-top: 40px;
}

.page-slot-games__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-slot-games__content-wrapper .page-slot-games__text-block,
.page-slot-games__content-wrapper .page-slot-games__image-block {
  flex: 1;
}

.page-slot-games__image-block {
  text-align: center;
}

.page-slot-games__image-responsive {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

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

.page-slot-games__game-card,
.page-slot-games__promotion-card {
  background-color: rgba(255, 255, 255, 0.08); /* Light background for cards */
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  color: #ffffff;
}

.page-slot-games__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

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

.page-slot-games__card-text {
  font-size: 16px;
  color: #f0f0f0;
  flex-grow: 1;
}

.page-slot-games__card-text a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-slot-games__card-text a:hover {
  color: #1a8cc4;
}

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

/* Benefits List */
.page-slot-games__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-slot-games__benefit-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-slot-games__benefit-title {
  font-size: 22px;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-slot-games__benefit-item p {
  font-size: 16px;
  color: #f0f0f0;
}

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

.page-slot-games__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  height: 100%;
  box-sizing: border-box;
}

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

.page-slot-games__step-card p {
  font-size: 16px;
  color: #f0f0f0;
}

/* Strategies List */
.page-slot-games__strategy-list {
  list-style: disc;
  padding-left: 20px;
  margin-top: 20px;
  color: #f0f0f0;
  font-size: 17px;
}

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

.page-slot-games__strategy-list strong {
  color: #26A9E0;
}

/* FAQ Section */
.page-slot-games__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-slot-games__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  transition: all 0.3s ease;
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 600;
  color: #26A9E0;
  cursor: pointer;
  list-style: none; /* For details/summary */
}

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

.page-slot-games__faq-item[open] .page-slot-games__faq-question {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-slot-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  margin-left: 15px;
  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: #f0f0f0;
}

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

.page-slot-games__faq-answer a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-slot-games__faq-answer a:hover {
  color: #1a8cc4;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slot-games__content-wrapper {
    flex-direction: column;
  }
  .page-slot-games__content-wrapper--reverse {
    flex-direction: column;
  }
  .page-slot-games__hero-title {
    font-size: clamp(30px, 6vw, 48px);
  }
  .page-slot-games__hero-description {
    font-size: clamp(16px, 3vw, 20px);
  }
}

@media (max-width: 768px) {
  .page-slot-games__section {
    padding: 40px 0;
  }
  .page-slot-games__section-title {
    font-size: clamp(24px, 5vw, 36px);
  }
  .page-slot-games__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-slot-games__hero-section {
    min-height: 450px;
    padding-bottom: 40px;
  }
  .page-slot-games__hero-content {
    padding: 15px;
  }
  .page-slot-games__hero-title {
    font-size: clamp(28px, 7vw, 40px);
  }
  .page-slot-games__hero-description {
    font-size: clamp(15px, 3.5vw, 18px);
  }

  .page-slot-games__hero-cta-buttons,
  .page-slot-games__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary,
  .page-slot-games__btn-download {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-slot-games__container {
    padding: 0 15px;
  }

  .page-slot-games img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-slot-games__section,
  .page-slot-games__card,
  .page-slot-games__container,
  .page-slot-games__hero-section,
  .page-slot-games__content-wrapper,
  .page-slot-games__game-types-grid,
  .page-slot-games__promotions-grid,
  .page-slot-games__benefits-list,
  .page-slot-games__steps-grid,
  .page-slot-games__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

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

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

  .page-slot-games__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 15px;
  }
  .page-slot-games__text-block p, .page-slot-games__strategy-list li, .page-slot-games__card-text, .page-slot-games__benefit-item p, .page-slot-games__step-card p {
    font-size: 15px;
  }
  .page-slot-games__card-title, .page-slot-games__benefit-title, .page-slot-games__step-title {
    font-size: 20px;
  }
}