/* style/slot-games.css */
.page-slot-games {
  font-family: 'Arial', sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  line-height: 1.6;
}

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

.page-slot-games__hero-section {
  padding-top: 10px; /* Small top padding as body handles header offset */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover; /* Cover for desktop, will change to contain for mobile */
  display: block;
}

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

.page-slot-games__hero-title {
  font-size: 3.2em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFD36B; /* Glow */
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.6);
  line-height: 1.2;
}

.page-slot-games__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.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 {
  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-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-slot-games__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff;
  border: none;
}

.page-slot-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.4);
}

.page-slot-games__btn-secondary {
  background-color: #111111; /* Card BG */
  color: #FFD36B; /* Glow */
  border: 2px solid #FFD36B; /* Glow */
}

.page-slot-games__btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.4);
  background-color: #222222;
}

.page-slot-games__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #FFD36B;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(255, 211, 107, 0.4);
}

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

.page-slot-games__introduction-section,
.page-slot-games__why-choose-section,
.page-slot-games__promotions-section,
.page-slot-games__faq-section {
  padding: 60px 0;
}

.page-slot-games__dark-bg {
  background-color: #111111; /* Card BG */
}

.page-slot-games__text-block {
  font-size: 1.05em;
  margin-bottom: 15px;
  color: #FFF6D6;
  text-align: justify;
}

.page-slot-games__text-link {
  color: #FFD36B;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-slot-games__text-link:hover {
  color: #FFD86A;
  text-decoration: underline;
}

.page-slot-games__game-showcase-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-slot-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
}

.page-slot-games__game-card {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 250px;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slot-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(255, 211, 107, 0.3);
}

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

.page-slot-games__game-title {
  font-size: 1.4em;
  color: #FFD36B;
  margin: 15px 10px 10px;
  flex-grow: 1;
}

.page-slot-games__game-button {
  display: block;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff;
  padding: 10px 15px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0 0 12px 12px;
  transition: background-color 0.3s ease;
}

.page-slot-games__game-button:hover {
  background: linear-gradient(180deg, #FFE89A 0%, #FDD14D 100%);
}

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

.page-slot-games__feature-item {
  background-color: #0A0A0A; /* Background */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-slot-games__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 211, 107, 0.2);
}

.page-slot-games__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-slot-games__feature-title {
  font-size: 1.6em;
  color: #FFD36B;
  margin-bottom: 10px;
}

.page-slot-games__feature-text {
  font-size: 1em;
  color: #FFF6D6;
  text-align: justify;
}

.page-slot-games__strategy-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-slot-games__strategy-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games__strategy-item {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
}

.page-slot-games__strategy-title {
  font-size: 1.5em;
  color: #FFD36B;
  margin-bottom: 15px;
}

.page-slot-games__strategy-text {
  font-size: 1em;
  color: #FFF6D6;
  text-align: justify;
}

.page-slot-games__strategy-cta {
  margin-top: 40px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

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

.page-slot-games__promo-card {
  background-color: #0A0A0A; /* Background */
  border: 1px solid #3A2A12;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(255, 211, 107, 0.3);
}

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

.page-slot-games__promo-title {
  font-size: 1.4em;
  color: #FFD36B;
  margin: 15px 20px 10px;
}

.page-slot-games__promo-text {
  font-size: 1em;
  color: #FFF6D6;
  padding: 0 20px 20px;
  text-align: justify;
}

.page-slot-games__promotions-cta {
  margin-top: 40px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__registration-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.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-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games__step-title {
  font-size: 1.4em;
  color: #FFD36B;
  margin-bottom: 10px;
}

.page-slot-games__step-text {
  font-size: 1em;
  color: #FFF6D6;
}

.page-slot-games__registration-cta {
  margin-top: 40px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__faq-section {
  padding: 60px 0;
}

.page-slot-games__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-slot-games__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: 600;
  color: #FFD36B;
  cursor: pointer;
  background-color: #1a1a1a;
  list-style: none; /* For details/summary */
}

.page-slot-games__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker */
}

.page-slot-games__faq-question:hover {
  background-color: #2a2a2a;
}

.page-slot-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #FFD36B;
}

.page-slot-games__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #FFF6D6;
  text-align: justify;
}

.page-slot-games__contact-cta-section {
  padding: 60px 0;
  background-color: #0A0A0A;
  text-align: center;
}

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

/* Mobile responsive styles */
@media (max-width: 768px) {
  .page-slot-games__container {
    padding: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-slot-games__hero-section {
    padding-top: 10px !important;
    margin-bottom: 30px;
  }

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

  .page-slot-games__hero-image {
    object-fit: contain !important; /* Contain for mobile hero */
    width: 100% !important;
    height: auto !important;
    max-height: 300px;
    aspect-ratio: unset !important;
  }

  .page-slot-games__hero-title {
    font-size: 2em;
    margin-top: 15px;
  }

  .page-slot-games__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-slot-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-slot-games__section-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-slot-games__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  /* Game Grid */
  .page-slot-games__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* 2 columns for mobile */
    gap: 20px;
    overflow-x: hidden;
  }

  .page-slot-games__game-card {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1.4; /* Adjust card aspect ratio for mobile */
  }

  .page-slot-games__game-image {
    height: auto;
    aspect-ratio: 1 / 1; /* Make image square */
    object-fit: cover;
  }

  .page-slot-games__game-title {
    font-size: 1.1em;
    margin: 10px 5px;
  }

  .page-slot-games__game-button {
    padding: 8px 10px;
    font-size: 0.9em;
  }

  /* General content images */
  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !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;
  }

  /* Features Grid */
  .page-slot-games__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-slot-games__feature-item {
    padding: 20px;
  }

  .page-slot-games__feature-icon {
    width: 80px;
    height: 80px;
  }

  .page-slot-games__feature-title {
    font-size: 1.4em;
  }

  /* Strategy Section */
  .page-slot-games__strategy-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-slot-games__strategy-item {
    padding: 20px;
  }

  .page-slot-games__strategy-title {
    font-size: 1.3em;
  }

  .page-slot-games__strategy-cta {
    width: 100%;
  }

  /* Promotions Section */
  .page-slot-games__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-slot-games__promo-image {
    height: auto;
  }

  .page-slot-games__promotions-cta {
    width: 100%;
  }

  /* Registration Section */
  .page-slot-games__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-slot-games__registration-cta {
    width: 100%;
  }

  /* FAQ Section */
  .page-slot-games__faq-question {
    font-size: 1em;
    padding: 15px;
  }

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

  .page-slot-games__contact-cta-section .page-slot-games__cta-buttons {
    padding: 0;
  }
}