.page-slot-games {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default dark text for light body background */
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-slot-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding as per common rules */
  padding-bottom: 40px;
  text-align: center;
  background: linear-gradient(180deg, #B71C1C 0%, #7A0E0E 100%); /* Deep Red background */
  color: #FFF5E1; /* Text Main */
  position: relative;
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

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

.page-slot-games__hero-content {
  max-width: 900px;
  padding: 30px 20px;
  background-color: #ffffff; /* Light background for content */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-top: -80px; /* Overlap with image slightly */
  position: relative;
  z-index: 1;
  color: #333333;
}

.page-slot-games__main-title {
  font-size: clamp(2.2em, 4vw, 3em);
  font-weight: 700;
  color: #C91F17;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-slot-games__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #555555;
}

.page-slot-games__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  width: 100%;
}

.page-slot-games__cta-button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button color */
  color: #7A0E0E; /* Deep Red text for contrast */
  border: none;
}

.page-slot-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games__btn-secondary {
  background: #ffffff;
  color: #C91F17; /* Main color */
  border: 2px solid #C91F17;
}

.page-slot-games__btn-secondary:hover {
  background: #C91F17;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #C91F17; /* Main color */
  margin-bottom: 25px;
  text-align: center;
}

.page-slot-games__text-block {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #555555;
  text-align: justify;
}

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

.page-slot-games__introduction-section,
.page-slot-games__providers-section,
.page-slot-games__guide-section,
.page-slot-games__promotions-section,
.page-slot-games__final-cta-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-slot-games__dark-bg {
  background: linear-gradient(180deg, #B71C1C 0%, #7A0E0E 100%); /* Deep Red background */
  color: #FFF5E1; /* Text Main */
}

.page-slot-games__light-bg {
  background-color: #f8f8f8;
  color: #333333;
}

.page-slot-games__text-main {
  color: #FFF5E1;
}

.page-slot-games__games-showcase {
  padding: 60px 0;
}

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

.page-slot-games__game-card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #FFF5E1; /* Text Main */
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.page-slot-games__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-slot-games__card-title {
  font-size: 1.5em;
  font-weight: 600;
  margin: 20px 15px 10px;
  color: #F4D34D; /* Gold */
}

.page-slot-games__card-description {
  font-size: 0.95em;
  line-height: 1.5;
  color: #FFF5E1;
  padding: 0 15px;
  flex-grow: 1;
}

.page-slot-games__card-button {
  margin-top: 20px;
  padding: 10px 25px;
  font-size: 1em;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games__provider-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.page-slot-games__provider-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-slot-games__provider-name {
  font-size: 1.4em;
  font-weight: 600;
  color: #C91F17;
  margin-bottom: 10px;
}

.page-slot-games__provider-description {
  font-size: 0.95em;
  color: #666666;
  line-height: 1.6;
}

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

.page-slot-games__benefit-card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 30px;
  color: #FFF5E1; /* Text Main */
}

.page-slot-games__benefit-icon {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-slot-games__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-slot-games__guide-item {
  background-color: #ffffff;
  border-left: 5px solid #C91F17;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-slot-games__guide-step-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #C91F17;
  margin-bottom: 10px;
}

.page-slot-games__guide-step-description {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
}

.page-slot-games__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-slot-games__tip-item {
  background-color: #D32F2F; /* Card BG */
  border-left: 5px solid #F4D34D; /* Gold border */
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  color: #FFF5E1;
}

.page-slot-games__tip-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #F4D34D; /* Gold */
  margin-bottom: 10px;
}

.page-slot-games__tip-description {
  font-size: 1em;
  color: #FFF5E1;
  line-height: 1.6;
}

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

.page-slot-games__promotion-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.page-slot-games__promotion-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-slot-games__faq-list {
  margin-top: 40px;
}

.page-slot-games__faq-item {
  background-color: #D32F2F; /* Card BG */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #FFF5E1;
  border: 1px solid #F2B544; /* Border color */
}

.page-slot-games__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  color: #F4D34D; /* Gold */
  list-style: none;
}

.page-slot-games__faq-item summary::-webkit-details-marker,
.page-slot-games__faq-item summary::marker {
  display: none;
}

.page-slot-games__faq-qtext {
  flex-grow: 1;
}

.page-slot-games__faq-toggle {
  font-size: 1.5em;
  font-weight: 700;
  margin-left: 15px;
  color: #F4D34D;
  pointer-events: none;
}

.page-slot-games__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #FFF5E1;
}

.page-slot-games__faq-button {
  margin-top: 15px;
  display: inline-block;
}

.page-slot-games__view-all-button-container {
  text-align: center;
  margin-top: 40px;
}

.page-slot-games__final-cta-section {
  text-align: center;
}

/* General image responsiveness */
.page-slot-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure all content containers are responsive */
.page-slot-games__section,
.page-slot-games__card,
.page-slot-games__container {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Media Queries for Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .page-slot-games {
    font-size: 16px;
    line-height: 1.5;
  }

  .page-slot-games__hero-section {
    padding-top: 10px !important;
    padding-bottom: 20px;
  }

  .page-slot-games__hero-content {
    margin-top: -50px;
    padding: 20px 15px;
    border-radius: 8px;
  }

  .page-slot-games__main-title {
    font-size: 1.8em;
    margin-bottom: 10px;
  }

  .page-slot-games__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-slot-games__button-group {
    flex-direction: column !important;
    gap: 10px !important;
    padding: 0 15px;
  }

  .page-slot-games__cta-button,
  .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: 12px 15px;
    font-size: 1em;
  }

  .page-slot-games__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-slot-games__text-block {
    font-size: 0.95em;
    text-align: left;
  }

  .page-slot-games__container {
    padding: 30px 15px;
  }

  .page-slot-games__introduction-section,
  .page-slot-games__providers-section,
  .page-slot-games__guide-section,
  .page-slot-games__promotions-section,
  .page-slot-games__final-cta-section,
  .page-slot-games__games-showcase,
  .page-slot-games__benefits-section,
  .page-slot-games__tips-section,
  .page-slot-games__faq-section {
    padding: 40px 0;
  }

  .page-slot-games__games-grid,
  .page-slot-games__benefits-grid,
  .page-slot-games__promotion-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-slot-games__game-card,
  .page-slot-games__benefit-card,
  .page-slot-games__promotion-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 20px;
  }

  .page-slot-games__game-image,
  .page-slot-games__benefit-icon,
  .page-slot-games__promotion-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
  }

  .page-slot-games__card-title {
    font-size: 1.3em;
  }

  .page-slot-games__card-description {
    font-size: 0.9em;
  }

  .page-slot-games__provider-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .page-slot-games__provider-item {
    padding: 20px;
  }

  .page-slot-games__guide-item,
  .page-slot-games__tip-item {
    padding: 15px 20px;
    margin-bottom: 15px;
  }

  .page-slot-games__guide-step-title,
  .page-slot-games__tip-title {
    font-size: 1.2em;
  }

  .page-slot-games__faq-item summary {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-slot-games__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95em;
  }

  .page-slot-games__faq-toggle {
    font-size: 1.2em;
  }
}