/* style/slot-games.css */

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

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

.page-slot-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom */
  overflow: hidden;
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

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

.page-slot-games__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  box-sizing: border-box;
}

.page-slot-games__main-title {
  font-size: clamp(2.2rem, 4vw + 1rem, 3.5rem);
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0px 0px 10px rgba(242, 193, 78, 0.5);
}

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

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

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
}

.page-slot-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

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

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

.page-slot-games__btn-secondary:hover {
  background-color: #F2C14E;
  color: #08160F; /* Background */
  transform: translateY(-2px);
}

.page-slot-games__section-title {
  font-size: clamp(1.8rem, 3vw + 1rem, 2.8rem);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0px 0px 8px rgba(242, 193, 78, 0.3);
}

.page-slot-games__section-description {
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

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

/* Why Choose Us Section */
.page-slot-games__why-choose-us .page-slot-games__section-description {
  margin-bottom: 60px;
}

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

.page-slot-games__feature-card {
  padding: 40px 25px;
}

.page-slot-games__feature-icon {
  width: 100%;
  max-width: 180px;
  height: auto;
  margin-bottom: 25px;
  border-radius: 8px;
  object-fit: cover;
}

.page-slot-games__feature-title {
  font-size: 1.5rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

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

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

.page-slot-games__game-type-card {
  overflow: hidden;
}

.page-slot-games__game-type-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-slot-games__game-type-title {
  font-size: 1.6rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-slot-games__game-type-text {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

/* How to Play Section */
.page-slot-games__numbered-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-slot-games__numbered-list li {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #2E7A4E; /* Border */
  position: relative;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.page-slot-games__numbered-list li::before {
  counter-increment: step-counter;
  content: "0" counter(step-counter);
  position: absolute;
  top: -15px;
  left: 20px;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  font-size: 1.8rem;
  font-weight: bold;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #57E38D; /* Glow */
  box-shadow: 0 0 15px rgba(87, 227, 141, 0.6);
}

.page-slot-games__list-title {
  font-size: 1.4rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  margin-top: 20px;
}

.page-slot-games__list-text {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

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

/* Bonuses and Promotions Section */
.page-slot-games__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

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

.page-slot-games__promo-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-slot-games__promo-title {
  font-size: 1.4rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-slot-games__promo-text {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
}

/* Security and Support Section */
.page-slot-games__security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-slot-games__security-item {
  padding: 35px 25px;
}

.page-slot-games__security-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-slot-games__security-title {
  font-size: 1.4rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-slot-games__security-text {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
}

/* FAQ Section */
.page-slot-games__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-slot-games__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  overflow: hidden;
  color: #F2FFF6; /* Text Main */
  text-align: left;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: #F2C14E; /* Gold */
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #2E7A4E; /* Border */
  user-select: none;
}

.page-slot-games__faq-question:hover {
  background-color: #11A84E; /* Main Color */
}

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

.page-slot-games__faq-toggle {
  font-size: 1.5rem;
  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: 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  background-color: #11271B; /* Card BG */
}

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

/* Final CTA Section */
.page-slot-games__cta-final {
  text-align: center;
  padding-bottom: 80px;
}

.page-slot-games__cta-final .page-slot-games__section-title {
  margin-bottom: 25px;
}

.page-slot-games__cta-final .page-slot-games__section-description {
  margin-bottom: 40px;
}

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

/* Responsive styles */
@media (max-width: 1024px) {
  .page-slot-games__section {
    padding: 40px 20px;
  }
  .page-slot-games__hero-content {
    padding: 30px 20px;
  }
  .page-slot-games__main-title {
    font-size: clamp(2rem, 5vw + 1rem, 3rem);
  }
  .page-slot-games__section-title {
    font-size: clamp(1.6rem, 4vw + 1rem, 2.4rem);
  }
}

@media (max-width: 768px) {
  .page-slot-games__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-slot-games__hero-content {
    padding: 20px 15px;
  }
  .page-slot-games__main-title {
    font-size: clamp(1.8rem, 6vw + 1rem, 2.5rem);
  }
  .page-slot-games__hero-description {
    font-size: 1rem;
  }
  .page-slot-games__hero-cta {
    flex-direction: column;
    align-items: center;
  }
  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    width: 100% !important;
    max-width: 300px !important;
    padding: 12px 20px;
    font-size: 1rem;
  }
  .page-slot-games__section {
    padding: 30px 15px;
  }
  .page-slot-games__section-title {
    font-size: clamp(1.5rem, 5vw + 1rem, 2rem);
  }
  .page-slot-games__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  .page-slot-games__features-grid,
  .page-slot-games__game-type-grid,
  .page-slot-games__promo-grid,
  .page-slot-games__security-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-slot-games__card {
    padding: 25px 20px;
  }
  .page-slot-games__feature-icon,
  .page-slot-games__promo-image,
  .page-slot-games__security-image {
    max-width: 150px;
  }
  .page-slot-games__list-title {
    font-size: 1.25rem;
  }
  .page-slot-games__numbered-list li::before {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    top: -10px;
    left: 15px;
  }
  .page-slot-games__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-slot-games__faq-answer {
    padding: 15px 20px;
    font-size: 0.9rem;
  }
  /* Mobile image responsiveness */
  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-slot-games__hero-image-wrapper,
  .page-slot-games__feature-card,
  .page-slot-games__game-type-card,
  .page-slot-games__promo-card,
  .page-slot-games__security-item,
  .page-slot-games__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-slot-games__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-slot-games__faq-item {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .page-slot-games__main-title {
    font-size: clamp(1.5rem, 7vw + 1rem, 2.2rem);
  }
  .page-slot-games__section-title {
    font-size: clamp(1.3rem, 6vw + 1rem, 1.8rem);
  }
  .page-slot-games__numbered-list li::before {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    top: -10px;
    left: 10px;
  }
  .page-slot-games__list-title {
    font-size: 1.1rem;
  }
  .page-slot-games__faq-question {
    font-size: 0.95rem;
  }
}