/* style/slot-games-types-features.css */
:root {
  --page-slot-games-types-features-primary-color: #11A84E;
  --page-slot-games-types-features-secondary-color: #22C768;
  --page-slot-games-types-features-background-color: #08160F;
  --page-slot-games-types-features-card-bg: #11271B;
  --page-slot-games-types-features-text-main: #F2FFF6;
  --page-slot-games-types-features-text-secondary: #A7D9B8;
  --page-slot-games-types-features-border-color: #2E7A4E;
  --page-slot-games-types-features-glow-color: #57E38D;
  --page-slot-games-types-features-gold-color: #F2C14E;
  --page-slot-games-types-features-divider-color: #1E3A2A;
  --page-slot-games-types-features-deep-green-color: #0A4B2C;
  --page-slot-games-types-features-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-slot-games-types-features {
  background-color: var(--page-slot-games-types-features-background-color);
  color: var(--page-slot-games-types-features-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-slot-games-types-features__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px 20px; /* body handles header offset, this is decorative top padding */
  background-color: var(--page-slot-games-types-features-background-color);
  overflow: hidden;
}

.page-slot-games-types-features__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px; /* Space between image and content */
  display: flex;
  justify-content: center;
}

.page-slot-games-types-features__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 20px var(--page-slot-games-types-features-glow-color);
}

.page-slot-games-types-features__hero-content {
  max-width: 900px;
  text-align: center;
  color: var(--page-slot-games-types-features-text-main);
  z-index: 1; /* Ensure text is above any background elements */
}

.page-slot-games-types-features__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--page-slot-games-types-features-gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-slot-games-types-features__subtitle {
  font-size: 1.2rem;
  color: var(--page-slot-games-types-features-text-secondary);
  margin-bottom: 40px;
}

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

.page-slot-games-types-features__btn-primary,
.page-slot-games-types-features__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-slot-games-types-features__btn-primary {
  background: var(--page-slot-games-types-features-button-gradient);
  color: #ffffff;
  border: 2px solid var(--page-slot-games-types-features-glow-color);
}

.page-slot-games-types-features__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4);
}

.page-slot-games-types-features__btn-secondary {
  background: transparent;
  color: var(--page-slot-games-types-features-glow-color);
  border: 2px solid var(--page-slot-games-types-features-glow-color);
}

.page-slot-games-types-features__btn-secondary:hover {
  background: var(--page-slot-games-types-features-glow-color);
  color: var(--page-slot-games-types-features-background-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4);
}

.page-slot-games-types-features__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--page-slot-games-types-features-background-color);
  color: var(--page-slot-games-types-features-text-main);
}

.page-slot-games-types-features__section-title {
  font-size: 2.5rem;
  color: var(--page-slot-games-types-features-gold-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-slot-games-types-features__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--page-slot-games-types-features-glow-color);
  border-radius: 2px;
}

.page-slot-games-types-features__text-block {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--page-slot-games-types-features-text-secondary);
  text-align: justify;
}

.page-slot-games-types-features__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-slot-games-types-features__card {
  background-color: var(--page-slot-games-types-features-card-bg);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--page-slot-games-types-features-border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slot-games-types-features__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(87, 227, 141, 0.3);
}

.page-slot-games-types-features__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-slot-games-types-features__card-title {
  font-size: 1.6rem;
  color: var(--page-slot-games-types-features-gold-color);
  margin-bottom: 15px;
}

.page-slot-games-types-features__card-description {
  font-size: 1rem;
  color: var(--page-slot-games-types-features-text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-slot-games-types-features__btn-text {
  color: var(--page-slot-games-types-features-glow-color);
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.page-slot-games-types-features__btn-text:hover {
  color: var(--page-slot-games-types-features-gold-color);
}

.page-slot-games-types-features__arrow {
  transition: transform 0.3s ease;
}

.page-slot-games-types-features__btn-text:hover .page-slot-games-types-features__arrow {
  transform: translateX(5px);
}

.page-slot-games-types-features__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-slot-games-types-features__feature-item {
  text-align: left;
}

.page-slot-games-types-features__feature-title {
  font-size: 1.4rem;
  color: var(--page-slot-games-types-features-glow-color);
  margin-bottom: 10px;
}

.page-slot-games-types-features__feature-description {
  font-size: 1rem;
  color: var(--page-slot-games-types-features-text-secondary);
}

.page-slot-games-types-features__benefit-list,
.page-slot-games-types-features__tip-list {
  list-style: none;
  padding: 0;
  margin-bottom: 50px;
}

.page-slot-games-types-features__benefit-item,
.page-slot-games-types-features__tip-item {
  background-color: var(--page-slot-games-types-features-card-bg);
  border: 1px solid var(--page-slot-games-types-features-border-color);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games-types-features__benefit-icon {
  font-size: 1.8rem;
  color: var(--page-slot-games-types-features-glow-color);
  flex-shrink: 0;
}

.page-slot-games-types-features__benefit-title,
.page-slot-games-types-features__tip-title {
  font-size: 1.3rem;
  color: var(--page-slot-games-types-features-gold-color);
  margin-top: 0;
  margin-bottom: 8px;
}

.page-slot-games-types-features__benefit-description,
.page-slot-games-types-features__tip-description {
  font-size: 1rem;
  color: var(--page-slot-games-types-features-text-secondary);
}

.page-slot-games-types-features__tip-list .page-slot-games-types-features__tip-item {
  flex-direction: column;
  align-items: flex-start;
}

.page-slot-games-types-features__tip-list .page-slot-games-types-features__tip-item::before {
  content: counter(tip-counter) ".";
  counter-increment: tip-counter;
  font-size: 1.8rem;
  color: var(--page-slot-games-types-features-glow-color);
  font-weight: bold;
  margin-right: 10px;
  display: block;
  margin-bottom: 10px;
}

.page-slot-games-types-features__tip-list {
  counter-reset: tip-counter;
}

.page-slot-games-types-features__cta-block {
  background: var(--page-slot-games-types-features-deep-green-color);
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
  border: 2px solid var(--page-slot-games-types-features-glow-color);
  box-shadow: 0 0 25px rgba(87, 227, 141, 0.5);
}

.page-slot-games-types-features__cta-title {
  font-size: 2.2rem;
  color: var(--page-slot-games-types-features-gold-color);
  margin-bottom: 20px;
}

.page-slot-games-types-features__cta-description {
  font-size: 1.1rem;
  color: var(--page-slot-games-types-features-text-secondary);
  margin-bottom: 30px;
}

.page-slot-games-types-features__faq-list {
  margin-top: 40px;
}

.page-slot-games-types-features__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--page-slot-games-types-features-border-color);
}

.page-slot-games-types-features__faq-item summary {
  list-style: none;
  cursor: pointer;
}

.page-slot-games-types-features__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-slot-games-types-features__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: var(--page-slot-games-types-features-deep-green-color);
  color: var(--page-slot-games-types-features-gold-color);
  font-size: 1.2rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-slot-games-types-features__faq-question:hover {
  background-color: var(--page-slot-games-types-features-primary-color);
}

.page-slot-games-types-features__faq-qtext {
  flex-grow: 1;
}

.page-slot-games-types-features__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--page-slot-games-types-features-glow-color);
}

.page-slot-games-types-features__faq-answer {
  padding: 20px 25px;
  background-color: var(--page-slot-games-types-features-card-bg);
  color: var(--page-slot-games-types-features-text-secondary);
  font-size: 1rem;
  border-top: 1px solid var(--page-slot-games-types-features-divider-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games-types-features__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-slot-games-types-features__subtitle {
    font-size: 1.1rem;
  }
  .page-slot-games-types-features__section-title {
    font-size: 2.2rem;
  }
  .page-slot-games-types-features__hero-image-wrapper {
    margin-bottom: 20px;
  }
  .page-slot-games-types-features__hero-content {
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .page-slot-games-types-features__hero-section {
    padding: 10px 15px 40px 15px;
  }
  .page-slot-games-types-features__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-slot-games-types-features__subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .page-slot-games-types-features__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
  }
  .page-slot-games-types-features__btn-primary,
  .page-slot-games-types-features__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }
  .page-slot-games-types-features__content-area {
    padding: 40px 15px;
  }
  .page-slot-games-types-features__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .page-slot-games-types-features__text-block {
    font-size: 0.95rem;
  }
  .page-slot-games-types-features__grid-container,
  .page-slot-games-types-features__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-slot-games-types-features__card-image {
    height: 180px;
  }
  .page-slot-games-types-features__card-title {
    font-size: 1.4rem;
  }
  .page-slot-games-types-features__feature-title {
    font-size: 1.2rem;
  }
  .page-slot-games-types-features__benefit-item,
  .page-slot-games-types-features__tip-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }
  .page-slot-games-types-features__benefit-icon {
    margin-bottom: 10px;
  }
  .page-slot-games-types-features__cta-block {
    padding: 30px 20px;
  }
  .page-slot-games-types-features__cta-title {
    font-size: 1.8rem;
  }
  .page-slot-games-types-features__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-slot-games-types-features__faq-toggle {
    font-size: 1.5rem;
  }
  .page-slot-games-types-features__faq-answer {
    padding: 15px 20px;
  }
  
  /* Mobile image and video responsive rules */
  .page-slot-games-types-features img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-slot-games-types-features video,
  .page-slot-games-types-features__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-slot-games-types-features__section,
  .page-slot-games-types-features__card,
  .page-slot-games-types-features__container,
  .page-slot-games-types-features__cta-buttons,
  .page-slot-games-types-features__button-group,
  .page-slot-games-types-features__btn-container,
  .page-slot-games-types-features__video-section,
  .page-slot-games-types-features__video-container,
  .page-slot-games-types-features__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-slot-games-types-features__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-slot-games-types-features__video-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-slot-games-types-features__main-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
  .page-slot-games-types-features__section-title {
    font-size: 1.8rem;
  }
  .page-slot-games-types-features__cta-block {
    padding: 25px 15px;
  }
  .page-slot-games-types-features__cta-title {
    font-size: 1.6rem;
  }
  .page-slot-games-types-features__card-title {
    font-size: 1.2rem;
  }
  .page-slot-games-types-features__feature-title {
    font-size: 1.1rem;
  }
  .page-slot-games-types-features__benefit-title,
  .page-slot-games-types-features__tip-title {
    font-size: 1.1rem;
  }
}