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

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

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

.page-slot-games__section-title {
  font-size: 3.2rem;
  margin-bottom: 25px;
  color: var(--gold);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.page-slot-games__subtitle {
  font-size: 2.2rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--gold);
  font-weight: 600;
}

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

.page-slot-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.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;
  background: var(--background);
  color: var(--text-main);
}

.page-slot-games__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-slot-games__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.page-slot-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-slot-games__hero-content h1 {
  font-size: 3.8rem;
  margin-bottom: 20px;
  color: var(--gold);
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: -0.04em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__hero-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--text-main);
}

/* Intro Section */
.page-slot-games__intro-section {
  background: #140C0C;
  color: var(--text-main);
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-slot-games__image-content-row {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  text-align: left;
  margin-top: 40px;
}

.page-slot-games__content-image {
  flex: 1;
  max-width: 50%;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-slot-games__content-text {
  flex: 1;
  max-width: 50%;
}

.page-slot-games__list {
  list-style: disc;
  padding-left: 20px;
  margin-top: 15px;
  color: var(--text-main);
}

.page-slot-games__list li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.page-slot-games__list li strong {
  color: var(--gold);
}

/* Why Choose Us Section */
.page-slot-games__why-choose-us {
  background: var(--card-b-g);
  color: var(--text-main);
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-slot-games__feature-card {
  background: #2A1212;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.page-slot-games__feature-card p {
  font-size: 1rem;
  color: var(--text-main);
}

/* How To Play Section */
.page-slot-games__how-to-play {
  background: #140C0C;
  color: var(--text-main);
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-slot-games__step-card {
  background: #2A1212;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-slot-games__step-card p {
  font-size: 1rem;
  color: var(--text-main);
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-slot-games__step-button {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  margin-top: auto; /* Push button to bottom */
}

.page-slot-games__step-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Promotions Section */
.page-slot-games__promotions {
  background: var(--card-b-g);
  color: var(--text-main);
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-slot-games__promo-card {
  background: #2A1212;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

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

.page-slot-games__promo-card p {
  font-size: 1rem;
  color: var(--text-main);
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-slot-games__promo-button {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  margin-top: auto;
}

.page-slot-games__promo-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Tips Section */
.page-slot-games__tips-section {
  background: #140C0C;
  color: var(--text-main);
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: left;
}

.page-slot-games__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__tips-list li {
  background: #2A1212;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-slot-games__list-title {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-slot-games__tips-list p {
  font-size: 1rem;
  color: var(--text-main);
}

/* FAQ Section */
.page-slot-games__faq-section {
  background: var(--card-b-g);
  color: var(--text-main);
  padding-top: 80px;
  padding-bottom: 80px;
}

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

details.page-slot-games__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: #2A1212;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

details.page-slot-games__faq-item[open] {
  background: #1A0A0A;
}

details.page-slot-games__faq-item summary.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
}

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: #1A0A0A;
}

.page-slot-games__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--gold);
}

.page-slot-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-slot-games__faq-item .page-slot-games__faq-answer {
  padding: 0 25px 25px;
  background: #1A0A0A;
  border-top: 1px solid var(--border);
  border-radius: 0 0 10px 10px;
  color: var(--text-main);
}

.page-slot-games__faq-answer p {
  font-size: 1rem;
  margin: 0;
}

/* Final CTA Section */
.page-slot-games__cta-final {
  background: linear-gradient(90deg, #C61F1F 0%, #E53030 100%);
  color: #ffffff;
  padding: 80px 0;
}

.page-slot-games__cta-container {
  max-width: 900px;
}

.page-slot-games__cta-final .page-slot-games__section-title {
  color: #ffffff;
}

.page-slot-games__cta-final .page-slot-games__text-block {
  color: #ffffff;
}

.page-slot-games__cta-final .page-slot-games__cta-button {
  background: #ffffff;
  color: #C61F1F;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-slot-games__cta-final .page-slot-games__cta-button:hover {
  background: #f0f0f0;
  color: #E53030;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games__section-title {
    font-size: 2.8rem;
  }
  .page-slot-games__hero-content h1 {
    font-size: 3.2rem;
  }
  .page-slot-games__hero-description {
    font-size: 1.1rem;
  }
  .page-slot-games__content-image {
    max-width: 45%;
  }
  .page-slot-games__content-text {
    max-width: 55%;
  }
}

@media (max-width: 768px) {
  .page-slot-games__section {
    padding: 40px 0;
  }
  .page-slot-games__container {
    padding: 0 15px;
  }
  .page-slot-games__section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  .page-slot-games__subtitle {
    font-size: 1.8rem;
  }
  .page-slot-games__text-block {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .page-slot-games__cta-button {
    padding: 12px 30px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: auto;
    margin-right: auto;
  }

  .page-slot-games__hero-section {
    padding: 10px 15px 40px;
  }
  .page-slot-games__hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  .page-slot-games__hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .page-slot-games__image-content-row {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .page-slot-games__content-image {
    max-width: 100%;
    width: 100%;
    min-width: 200px;
    min-height: 200px;
  }
  .page-slot-games__content-text {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
  .page-slot-games__list {
    text-align: left;
    padding-left: 25px;
  }
  .page-slot-games__features-grid,
  .page-slot-games__steps-grid,
  .page-slot-games__promo-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-slot-games__feature-card,
  .page-slot-games__step-card,
  .page-slot-games__promo-card {
    padding: 25px;
  }
  .page-slot-games__feature-card img,
  .page-slot-games__promo-card img {
    min-width: 200px;
    min-height: 200px;
  }
  .page-slot-games__card-title {
    font-size: 1.4rem;
  }
  .page-slot-games__faq-list {
    margin-top: 30px;
  }
  details.page-slot-games__faq-item summary.page-slot-games__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-slot-games__faq-qtext {
    font-size: 1rem;
  }
  details.page-slot-games__faq-item .page-slot-games__faq-answer {
    padding: 0 20px 20px;
  }
  .page-slot-games__tips-list li {
    padding: 20px;
  }
  .page-slot-games__list-title {
    font-size: 1.2rem;
  }

  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-slot-games__section,
  .page-slot-games__card,
  .page-slot-games__container,
  .page-slot-games__hero-container,
  .page-slot-games__image-content-row,
  .page-slot-games__content-image,
  .page-slot-games__content-text,
  .page-slot-games__features-grid,
  .page-slot-games__feature-card,
  .page-slot-games__steps-grid,
  .page-slot-games__step-card,
  .page-slot-games__promo-grid,
  .page-slot-games__promo-card,
  .page-slot-games__tips-list,
  .page-slot-games__tips-list li,
  .page-slot-games__faq-list,
  details.page-slot-games__faq-item,
  .page-slot-games__cta-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games__cta-button,
  .page-slot-games__step-button,
  .page-slot-games__promo-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
}

/* Color Contrast Adjustments */
.page-slot-games__dark-bg {
  color: var(--text-main);
  background: var(--background);
}

.page-slot-games__light-bg {
  color: var(--text-main);
  background: var(--background);
}

.page-slot-games__card {
  background: var(--card-b-g);
  color: var(--text-main);
  border: 1px solid var(--border);
}

/* Specific overrides for CTA final section */
.page-slot-games__cta-final {
  background: linear-gradient(90deg, #C61F1F 0%, #E53030 100%);
  color: #ffffff; /* Text is white on this gradient background */
}

.page-slot-games__cta-final .page-slot-games__section-title,
.page-slot-games__cta-final .page-slot-games__text-block {
  color: #ffffff;
}

.page-slot-games__cta-final .page-slot-games__cta-button {
  background: #ffffff;
  color: #C61F1F; /* Button text is red on white button */
}

.page-slot-games__hero-content h1 {
  color: var(--gold);
}

.page-slot-games__section-title {
  color: var(--gold);
}

.page-slot-games__subtitle {
  color: var(--gold);
}

.page-slot-games__card-title {
  color: var(--gold);
}

.page-slot-games__list li strong {
  color: var(--gold);
}

.page-slot-games__list-title {
  color: var(--gold);
}

.page-slot-games__faq-qtext {
  color: var(--gold);
}

.page-slot-games__faq-toggle {
  color: var(--gold);
}