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

.page-slot-games {
  background-color: var(--page-slot-games-background); /* Body background is dark */
  color: var(--page-slot-games-text-secondary);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-slot-games__dark-bg {
  background-color: var(--page-slot-games-background);
  color: var(--page-slot-games-text-secondary);
}

.page-slot-games__text-main {
  color: var(--page-slot-games-text-main);
}

.page-slot-games__text-secondary {
  color: var(--page-slot-games-text-secondary);
}

.page-slot-games__text-center {
  text-align: center;
}

/* Hero Section */
.page-slot-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  overflow: hidden;
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px; /* Space between image and content */
}

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

.page-slot-games__hero-content {
  max-width: 900px;
  text-align: center;
  z-index: 1;
}

.page-slot-games__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--page-slot-games-text-main);
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

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

.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: bold;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games__btn-primary {
  background: var(--page-slot-games-button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

.page-slot-games__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-slot-games__btn-secondary {
  background: none;
  color: var(--page-slot-games-primary-color);
  border: 2px solid var(--page-slot-games-primary-color);
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.2);
}

.page-slot-games__btn-secondary:hover {
  background: var(--page-slot-games-primary-color);
  color: #ffffff;
  transform: translateY(-2px);
}

/* General Section Styling */
.page-slot-games__section {
  padding: 60px 20px;
  border-bottom: 1px solid var(--page-slot-games-divider-color);
}

.page-slot-games__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  color: var(--page-slot-games-text-main);
}

.page-slot-games__section-description {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--page-slot-games-text-secondary);
}

.page-slot-games__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-slot-games__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-slot-games__content-grid > div {
  flex: 1;
}

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

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

.page-slot-games__text-block ul {
  list-style: none;
  padding-left: 0;
}

.page-slot-games__text-block li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: var(--page-slot-games-text-secondary);
}

.page-slot-games__text-block li::before {
  content: '✔';
  color: var(--page-slot-games-glow-color);
  position: absolute;
  left: 0;
  top: 0;
}

/* Feature List */
.page-slot-games__feature-list,
.page-slot-games__game-list,
.page-slot-games__promo-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-slot-games__card {
  background-color: var(--page-slot-games-card-bg);
  border: 1px solid var(--page-slot-games-border-color);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--page-slot-games-text-secondary);
}

.page-slot-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.page-slot-games__card-title,
.page-slot-games__game-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--page-slot-games-text-main);
}

.page-slot-games__card-description,
.page-slot-games__game-description {
  font-size: 0.95rem;
  color: var(--page-slot-games-text-secondary);
}

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

.page-slot-games__guide-item {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.page-slot-games__guide-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--page-slot-games-text-main);
}

.page-slot-games__guide-text {
  margin-bottom: 20px;
  flex-grow: 1;
  color: var(--page-slot-games-text-secondary);
}

.page-slot-games__btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
  align-self: flex-start;
}

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

.page-slot-games__faq-item {
  background-color: var(--page-slot-games-card-bg);
  border: 1px solid var(--page-slot-games-border-color);
  border-radius: 10px;
  padding: 20px 25px;
  transition: all 0.3s ease;
  color: var(--page-slot-games-text-secondary);
}

.page-slot-games__faq-item[open] {
  background-color: var(--page-slot-games-deep-green);
  border-color: var(--page-slot-games-primary-color);
  box-shadow: 0 4px 20px rgba(17, 168, 78, 0.3);
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  color: var(--page-slot-games-text-main);
}

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

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

.page-slot-games__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--page-slot-games-glow-color);
}

.page-slot-games__faq-item[open] .page-slot-games__faq-toggle {
  transform: rotate(45deg);
}

.page-slot-games__faq-answer {
  padding-top: 15px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--page-slot-games-text-secondary);
}

.page-slot-games__faq-answer a {
  color: var(--page-slot-games-primary-color);
  text-decoration: underline;
}

.page-slot-games__faq-answer a:hover {
  color: var(--page-slot-games-glow-color);
}

/* Conclusion Section */
.page-slot-games__conclusion-section {
  padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slot-games__content-grid {
    flex-direction: column;
  }
  .page-slot-games__content-grid.reverse-on-mobile {
    flex-direction: column-reverse;
  }
}

@media (max-width: 768px) {
  .page-slot-games__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-slot-games__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-slot-games__hero-description {
    font-size: 1rem;
  }

  .page-slot-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary,
  .page-slot-games a[class*="button"],
  .page-slot-games a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games__section {
    padding: 40px 15px;
  }

  .page-slot-games__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }

  .page-slot-games__section-description {
    font-size: 0.95rem;
  }

  .page-slot-games__feature-list,
  .page-slot-games__game-list,
  .page-slot-games__promo-list,
  .page-slot-games__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-slot-games__card,
  .page-slot-games__faq-item {
    padding: 20px;
  }

  .page-slot-games__card-image,
  .page-slot-games__game-image {
    height: 180px;
  }

  .page-slot-games__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-slot-games__section,
  .page-slot-games__card,
  .page-slot-games__container,
  .page-slot-games__video-section,
  .page-slot-games__video-container,
  .page-slot-games__video-wrapper,
  .page-slot-games__cta-buttons,
  .page-slot-games__button-group,
  .page-slot-games__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Text readability on mobile */
  .page-slot-games p,
  .page-slot-games li,
  .page-slot-games__hero-description,
  .page-slot-games__section-description,
  .page-slot-games__card-description,
  .page-slot-games__game-description,
  .page-slot-games__guide-text,
  .page-slot-games__faq-answer {
    font-size: 15px;
    line-height: 1.6;
  }
}