/* Base styles for .page-slot-games */
.page-slot-games {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #FFF6D6; /* Text Main */
  background: #0A0A0A; /* Background */
  line-height: 1.7;
  font-size: 16px;
}

.page-slot-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-slot-games__section {
  padding: 70px 0;
}

.page-slot-games__section-title {
  font-size: 38px;
  font-weight: bold;
  color: #F2C14E; /* Main color */
  text-align: center;
  margin-bottom: 45px;
  position: relative;
  padding-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-slot-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 90px;
  height: 5px;
  background: linear-gradient(90deg, transparent, #FFD36B, transparent); /* Glow color */
  border-radius: 3px;
}

.page-slot-games__intro-text {
  font-size: 18px;
  text-align: center;
  max-width: 850px;
  margin: 0 auto 35px;
  line-height: 1.8;
}

/* Hero Section */
.page-slot-games__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 650px;
  overflow: hidden;
  text-align: center;
}

.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;
  opacity: 0.35;
  transition: opacity 0.5s ease;
}

.page-slot-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 950px;
  padding: 50px 30px;
  background: rgba(17, 17, 17, 0.75); /* Card BG with transparency */
  border-radius: 15px;
  backdrop-filter: blur(8px);
  border: 2px solid #3A2A12; /* Border */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-slot-games__main-title {
  font-size: 52px;
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 25px;
  font-weight: 900;
  line-height: 1.15;
  text-shadow: 0 0 15px rgba(255, 211, 107, 0.7);
}

.page-slot-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
  width: 100%;
}

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
  padding: 16px 35px;
  border-radius: 10px;
  font-size: 19px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 320px;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.page-slot-games__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #111111; /* Dark text for bright button */
  border: none;
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.5);
}

.page-slot-games__btn-primary:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 25px rgba(242, 193, 78, 0.7);
}

.page-slot-games__btn-secondary {
  background: transparent;
  color: #FFD36B; /* Auxiliary color */
  border: 2px solid #FFD36B; /* Auxiliary color */
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.3);
}

.page-slot-games__btn-secondary:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(255, 211, 107, 0.15);
  box-shadow: 0 10px 25px rgba(255, 211, 107, 0.5);
}

/* General content styles */
.page-slot-games__content-wrapper {
  max-width: 950px;
  margin: 0 auto;
}

.page-slot-games__text-block p {
  margin-bottom: 18px;
  font-size: 17px;
  color: #FFF6D6;
  line-height: 1.8;
}

.page-slot-games__text-block a {
  color: #F2C14E;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-slot-games__text-block a:hover {
  color: #FFD36B;
}

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

.page-slot-games__feature-card,
.page-slot-games__game-card {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 15px;
  padding: 35px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-slot-games__feature-card:hover,
.page-slot-games__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.page-slot-games__card-title {
  font-size: 26px;
  color: #F2C14E; /* Main color */
  margin-bottom: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.page-slot-games__game-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 25px;
  border: 1px solid #3A2A12;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games__steps-list,
.page-slot-games__strategy-list,
.page-slot-games__promo-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  counter-reset: step-counter;
}

.page-slot-games__steps-list li,
.page-slot-games__strategy-list li,
.page-slot-games__promo-list li {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  padding: 18px 25px;
  margin-bottom: 12px;
  border-radius: 10px;
  font-size: 17px;
  display: flex;
  align-items: flex-start;
  color: #FFF6D6;
  line-height: 1.7;
}

.page-slot-games__steps-list li strong,
.page-slot-games__strategy-list li strong,
.page-slot-games__promo-list li strong {
  color: #FFD36B;
  margin-right: 12px;
  flex-shrink: 0;
}

.page-slot-games__steps-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  font-weight: bold;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  flex-shrink: 0;
  font-size: 18px;
}

.page-slot-games__strategy-list li::before,
.page-slot-games__promo-list li::before {
  content: '•';
  color: #F2C14E;
  font-size: 30px;
  line-height: 1;
  margin-right: 18px;
  flex-shrink: 0;
}

.page-slot-games__article-figure {
  width: 100%;
  max-width: 950px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin: 35px auto;
  display: block;
  border: 1px solid #3A2A12;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

/* FAQ styles */
details.page-slot-games__faq-item {
  margin-bottom: 18px;
  border-radius: 15px;
  border: 1px solid #3A2A12; /* Border */
  overflow: hidden;
  background: #111111; /* Card BG */
}
details.page-slot-games__faq-item summary.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFF6D6;
}
details.page-slot-games__faq-item summary.page-slot-games__faq-question::-webkit-details-marker {
  display: none;
}
details.page-slot-games__faq-item summary.page-slot-games__faq-question:hover {
  background: rgba(242, 193, 78, 0.15);
}
.page-slot-games__faq-qtext {
  flex: 1;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F2C14E;
}
.page-slot-games__faq-toggle {
  font-size: 32px;
  font-weight: bold;
  color: #FFD36B;
  flex-shrink: 0;
  margin-left: 20px;
  width: 35px;
  text-align: center;
}
details.page-slot-games__faq-item .page-slot-games__faq-answer {
  padding: 0 25px 25px;
  background: rgba(17, 17, 17, 0.85); /* Slightly darker for answer */
  border-radius: 0 0 15px 15px;
  color: #FFF6D6;
}
.page-slot-games__faq-answer p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.7;
}

/* Final CTA */
.page-slot-games__cta-final {
  background: #111111; /* Card BG */
  padding: 90px 0;
  text-align: center;
  border-top: 1px solid #3A2A12;
}

.page-slot-games__dark-section {
  background: #111111; /* Card BG */
  color: #FFF6D6; /* Text Main */
}

.page-slot-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-slot-games__container {
    padding: 0 15px;
  }
  .page-slot-games__main-title {
    font-size: 44px;
  }
  .page-slot-games__section-title {
    font-size: 34px;
  }
  .page-slot-games__hero-content {
    padding: 40px 25px;
  }
  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    padding: 14px 30px;
    font-size: 17px;
  }
  .page-slot-games__feature-grid,
  .page-slot-games__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 25px;
  }
  .page-slot-games__feature-card,
  .page-slot-games__game-card {
    padding: 30px;
  }
  .page-slot-games__card-title {
    font-size: 24px;
  }
  .page-slot-games__game-image {
    height: 200px;
  }
  .page-slot-games__faq-qtext {
    font-size: 18px;
  }
  .page-slot-games__faq-toggle {
    font-size: 28px;
    width: 30px;
  }
}

@media (max-width: 768px) {
  .page-slot-games__hero-section {
    padding-top: 10px; /* Specific top padding for mobile hero */
    min-height: 500px;
  }
  .page-slot-games__hero-image {
    object-fit: contain !important; /* Mobile hero image: contain */
    aspect-ratio: unset !important; /* Mobile hero image: unset aspect ratio */
  }
  .page-slot-games__hero-content {
    padding: 30px 20px;
    max-width: 95%;
  }
  .page-slot-games__main-title {
    font-size: clamp(32px, 8vw, 42px); /* Responsive font size */
    margin-bottom: 20px;
  }
  .page-slot-games__intro-text {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-slot-games__cta-buttons {
    flex-direction: column; /* Buttons stack vertically */
    gap: 15px;
    padding: 0 15px;
  }
  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    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: 50px 0;
  }
  .page-slot-games__section-title {
    font-size: clamp(26px, 7vw, 32px); /* Responsive font size */
    margin-bottom: 35px;
  }
  .page-slot-games__feature-grid,
  .page-slot-games__game-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for smaller screens */
    gap: 20px;
    padding: 0 15px; /* Ensure no overflow */
  }
  .page-slot-games__feature-card,
  .page-slot-games__game-card {
    padding: 25px;
  }
  .page-slot-games__card-title {
    font-size: 20px;
  }
  .page-slot-games__game-image {
    height: 160px;
  }
  .page-slot-games__steps-list li,
  .page-slot-games__strategy-list li,
  .page-slot-games__promo-list li {
    padding: 15px 18px;
    font-size: 16px;
  }
  .page-slot-games__steps-list li::before,
  .page-slot-games__strategy-list li::before,
  .page-slot-games__promo-list li::before {
    margin-right: 12px;
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
  .page-slot-games__article-figure {
    margin: 25px auto;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }
  .page-slot-games__content-area,
  .page-slot-games__text-block,
  .page-slot-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  details.page-slot-games__faq-item summary.page-slot-games__faq-question {
    padding: 18px;
  }
  .page-slot-games__faq-qtext {
    font-size: 17px;
  }
  .page-slot-games__faq-toggle {
    font-size: 26px;
    width: 28px;
  }
  details.page-slot-games__faq-item .page-slot-games__faq-answer {
    padding: 0 18px 18px;
  }
  .page-slot-games__cta-final {
    padding: 70px 0;
  }
  .page-slot-games__products-section { /* General grid container */
    overflow-x: hidden;
  }
}