/* style/slot-games.css */

/* Custom Colors */
: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: #2E7A4E;
  --page-slot-games-glow: #57E38D;
  --page-slot-games-gold: #F2C14E;
  --page-slot-games-divider: #1E3A2A;
  --page-slot-games-deep-green: #0A4B2C;
}

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

.page-slot-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px;
  overflow: hidden;
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for large screens */
  overflow: hidden;
  position: relative;
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text contrast */
}

.page-slot-games__hero-content {
  position: relative;
  z-index: 10;
  padding-top: 40px;
  max-width: 900px;
  margin-top: -150px; /* Pull content up over the image bottom */
  background: linear-gradient(0deg, var(--page-slot-games-background) 0%, rgba(8, 22, 15, 0.8) 50%, rgba(8, 22, 15, 0) 100%);
  padding-bottom: 40px;
  width: 100%;
  box-sizing: border-box;
}

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

.page-slot-games__description {
  font-size: 1.2rem;
  color: var(--page-slot-games-text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-slot-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(34, 199, 104, 0.6);
}

.page-slot-games__btn-secondary {
  background: transparent;
  color: var(--page-slot-games-text-main);
  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 {
  transform: translateY(-3px);
  background-color: var(--page-slot-games-primary-color);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(17, 168, 78, 0.4);
}

.page-slot-games__section {
  padding: 60px 20px;
  text-align: center;
}

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

.page-slot-games__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--page-slot-games-gold);
  margin-bottom: 30px;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-slot-games__text-block {
  font-size: 1.1rem;
  color: var(--page-slot-games-text-secondary);
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__highlight {
  color: var(--page-slot-games-gold);
  font-weight: bold;
}

.page-slot-games__two-column-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-slot-games__content-column {
  flex: 1;
}

.page-slot-games__image-column {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-slot-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--page-slot-games-divider);
}

.page-slot-games__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  color: var(--page-slot-games-text-secondary);
  text-align: left;
}

.page-slot-games__list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  font-size: 1.1rem;
}

.page-slot-games__list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--page-slot-games-primary-color);
  font-weight: bold;
}

.page-slot-games__list-title {
  color: var(--page-slot-games-text-main);
  font-weight: bold;
}

.page-slot-games__btn-small {
  padding: 10px 20px;
  font-size: 1rem;
}

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

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

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

.page-slot-games__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--page-slot-games-deep-green);
}

.page-slot-games__card-title {
  font-size: 1.5rem;
  color: var(--page-slot-games-gold);
  margin-bottom: 15px;
}

.page-slot-games__card-text {
  font-size: 1rem;
  color: var(--page-slot-games-text-secondary);
}

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

.page-slot-games__ordered-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  color: var(--page-slot-games-text-secondary);
  counter-reset: step-counter;
  text-align: left;
}

.page-slot-games__ordered-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 40px;
  font-size: 1.1rem;
}

.page-slot-games__ordered-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--page-slot-games-primary-color);
  color: #ffffff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 0.9rem;
}

.page-slot-games__faq-section {
  background-color: var(--page-slot-games-deep-green);
  padding: 80px 20px;
}

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

.page-slot-games__faq-item {
  background-color: var(--page-slot-games-card-bg);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid var(--page-slot-games-divider);
  text-align: left;
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--page-slot-games-text-main);
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none;
}

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

.page-slot-games__faq-question:hover {
  background-color: rgba(var(--page-slot-games-primary-color), 0.1);
}

.page-slot-games__faq-toggle {
  font-size: 1.5rem;
  color: var(--page-slot-games-primary-color);
  margin-left: 15px;
}

.page-slot-games__faq-answer {
  padding: 0 25px 20px;
  font-size: 1.05rem;
  color: var(--page-slot-games-text-secondary);
  line-height: 1.7;
}

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

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

.page-slot-games__faq-answer a:hover {
  text-decoration: underline;
}

.page-slot-games__cta-final-section {
  padding: 80px 20px;
  background: linear-gradient(145deg, var(--page-slot-games-deep-green) 0%, var(--page-slot-games-background) 100%);
}

.page-slot-games__cta-final-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-slot-games__hero-content {
    margin-top: -100px;
  }
  .page-slot-games__two-column-layout {
    flex-direction: column;
  }
  .page-slot-games__content-column,
  .page-slot-games__image-column {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-slot-games__hero-section {
    padding-top: 10px !important; /* body handles header offset */
    padding-bottom: 40px;
  }
  .page-slot-games__hero-content {
    margin-top: -80px; /* Adjust for smaller screens */
    padding-top: 20px;
  }
  .page-slot-games__main-title {
    font-size: 2.2rem;
  }
  .page-slot-games__description {
    font-size: 1rem;
  }
  .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 !important;
    font-size: 1rem !important;
  }
  .page-slot-games__section {
    padding: 40px 15px;
  }
  .page-slot-games__section-title {
    font-size: 1.8rem;
  }
  .page-slot-games__text-block,
  .page-slot-games__list li,
  .page-slot-games__ordered-list li,
  .page-slot-games__faq-answer {
    font-size: 1rem;
  }
  .page-slot-games__card {
    padding: 20px;
  }
  .page-slot-games__card-title {
    font-size: 1.3rem;
  }
  .page-slot-games__faq-question {
    padding: 15px 20px;
    font-size: 1.1rem;
  }
  .page-slot-games__image,
  .page-slot-games__card-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__hero-image-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;
  }
  .page-slot-games__two-column-layout.page-slot-games__reverse-on-mobile {
    flex-direction: column-reverse;
  }
}

@media (max-width: 480px) {
  .page-slot-games__main-title {
    font-size: 1.8rem;
  }
  .page-slot-games__section-title {
    font-size: 1.6rem;
  }
  .page-slot-games__hero-content {
    margin-top: -60px;
  }
  .page-slot-games__faq-question {
    font-size: 1rem;
  }
}