/* style/slot-games.css */

/* Base styles for the page */
.page-slot-games {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* 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__dark-bg {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-slot-games__medium-bg {
  background-color: #11271B; /* Card BG, used for slightly lighter sections */
  color: #F2FFF6; /* Text Main */
}

.page-slot-games__section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: bold;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-slot-games__text-block {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-slot-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: 2px solid transparent;
}

.page-slot-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px #57E38D; /* Glow */
}

.page-slot-games__btn-secondary {
  background-color: transparent;
  color: #F2C14E; /* Gold */
  border: 2px solid #2E7A4E; /* Border */
}

.page-slot-games__btn-secondary:hover {
  background-color: #2E7A4E; /* Border */
  color: #F2FFF6; /* Text Main */
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
}

.page-slot-games__btn-inline {
  margin-top: 20px;
}

.page-slot-games__btn-small {
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 6px;
}

/* Hero Section */
.page-slot-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom for content */
  overflow: hidden;
}

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

.page-slot-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

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

.page-slot-games__main-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.7);
}

.page-slot-games__description {
  font-size: clamp(18px, 2.5vw, 24px);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Intro Section */
.page-slot-games__intro-section {
  padding: 80px 0;
  text-align: center;
}

/* Features Section */
.page-slot-games__features-section {
  padding: 80px 0;
}

.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-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games__feature-icon {
  width: 100%;
  height: auto;
  max-width: 150px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

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

/* Game Showcase Section */
.page-slot-games__game-showcase-section {
  padding: 80px 0;
}

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

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

.page-slot-games__game-thumbnail {
  width: 100%;
  height: 200px; /* Fixed height for thumbnails */
  object-fit: cover;
}

.page-slot-games__game-title {
  font-size: 20px;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin: 20px 15px 10px;
}

.page-slot-games__game-title a {
  color: inherit;
  text-decoration: none;
}

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

.page-slot-games__game-description {
  font-size: 15px;
  color: #A7D9B8; /* Text Secondary */
  margin: 0 15px 20px;
  flex-grow: 1;
}

.page-slot-games__game-card .page-slot-games__btn-secondary {
  margin: 0 15px 20px;
}

.page-slot-games__view-all-games {
  text-align: center;
  margin-top: 50px;
}

/* Promotions Section */
.page-slot-games__promotions-section {
  padding: 80px 0;
}

.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: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.page-slot-games__promo-image {
  width: 100%;
  height: 200px; /* Fixed height for promo images */
  object-fit: cover;
}

.page-slot-games__promo-title {
  font-size: 22px;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin: 20px 20px 10px;
}

.page-slot-games__promo-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  margin: 0 20px 20px;
  flex-grow: 1;
}

.page-slot-games__promo-card .page-slot-games__btn-secondary {
  margin: 0 20px 20px;
}

.page-slot-games__view-all-promos {
  text-align: center;
  margin-top: 50px;
}

/* FAQ Section */
.page-slot-games__faq-section {
  padding: 80px 0;
}

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

.page-slot-games__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-slot-games__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  cursor: pointer;
  list-style: none; /* Remove default marker */
}

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

.page-slot-games__faq-toggle {
  font-size: 24px;
  line-height: 1;
  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-top: 15px;
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-slot-games__faq-answer ol,
.page-slot-games__faq-answer ul {
  margin-left: 20px;
  margin-bottom: 10px;
  text-align: left;
}

.page-slot-games__faq-answer li {
  margin-bottom: 5px;
}

/* CTA Section */
.page-slot-games__cta-section {
  padding: 80px 0;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-slot-games__main-title {
    font-size: clamp(32px, 5vw, 56px);
  }

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

  .page-slot-games__features-grid,
  .page-slot-games__game-cards-grid,
  .page-slot-games__promo-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-slot-games__hero-section {
    padding-bottom: 40px;
  }

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

  .page-slot-games__description {
    font-size: clamp(15px, 3vw, 18px);
  }

  .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;
    padding: 12px 20px;
    font-size: 16px;
  }

  .page-slot-games__intro-section,
  .page-slot-games__features-section,
  .page-slot-games__game-showcase-section,
  .page-slot-games__promotions-section,
  .page-slot-games__faq-section,
  .page-slot-games__cta-section {
    padding: 50px 0;
  }

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

  .page-slot-games__text-block {
    font-size: 16px;
  }

  /* Mobile image and container responsive styles */
  .page-slot-games img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

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

  .page-slot-games__container,
  .page-slot-games__hero-content,
  .page-slot-games__cta-buttons,
  .page-slot-games__view-all-games,
  .page-slot-games__view-all-promos {
    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;
  }

  .page-slot-games__faq-item summary {
    font-size: 18px;
  }

  .page-slot-games__faq-answer {
    font-size: 15px;
  }
}