.page-slot-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF5E1; /* Text Main */
  background-color: #B71C1C; /* Background */
}

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

.page-slot-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding if body handles header offset */
  padding-bottom: 40px;
  background-color: #B71C1C;
  color: #FFF5E1;
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

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

.page-slot-games__hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.page-slot-games__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #F4D34D; /* Gold */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF5E1;
}

.page-slot-games__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  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%;
  text-align: center;
}

.page-slot-games__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button */
  color: #7A0E0E; /* Deep Red */
  border: 2px solid #F2B544; /* Border */
  box-shadow: 0 4px 15px rgba(255, 216, 106, 0.4);
}

.page-slot-games__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 216, 106, 0.6);
}

.page-slot-games__btn-secondary {
  background-color: transparent;
  color: #F4D34D; /* Gold */
  border: 2px solid #F4D34D; /* Gold */
}

.page-slot-games__btn-secondary:hover {
  background-color: rgba(244, 211, 77, 0.1);
  transform: translateY(-2px);
}

.page-slot-games__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: bold;
  color: #F4D34D; /* Gold */
  text-align: center;
  margin-bottom: 30px;
  padding-top: 20px;
}

.page-slot-games__introduction-section,
.page-slot-games__benefits-section,
.page-slot-games__game-types-section,
.page-slot-games__guide-section,
.page-slot-games__strategy-section,
.page-slot-games__promotions-section,
.page-slot-games__security-section,
.page-slot-games__faq-section,
.page-slot-games__conclusion-section {
  padding: 40px 0;
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-slot-games__introduction-section h3,
.page-slot-games__benefits-section h3,
.page-slot-games__game-types-section h3,
.page-slot-games__guide-section h3,
.page-slot-games__strategy-section h3,
.page-slot-games__promotions-section h3,
.page-slot-games__security-section h3 {
  color: #F4D34D; /* Gold */
  font-size: 1.5rem;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-slot-games__image-content {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-slot-games__benefit-card {
  background-color: #D32F2F; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #FFF5E1;
  border: 1px solid #7A0E0E; /* Deep Red */
}

.page-slot-games__benefit-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__card-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #F4D34D; /* Gold */
  margin-bottom: 10px;
}

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

.page-slot-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
  overflow-x: hidden; /* Ensure no horizontal scroll on desktop too */
}

.page-slot-games__game-tile {
  background-color: #D32F2F; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: #FFF5E1;
  border: 1px solid #7A0E0E; /* Deep Red */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-slot-games__game-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #F4D34D; /* Gold */
  margin: 15px 10px 5px;
}

.page-slot-games__game-tile p {
  font-size: 0.95rem;
  margin: 0 10px 15px;
  flex-grow: 1;
}

.page-slot-games__btn-play {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button */
  color: #7A0E0E; /* Deep Red */
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 15px;
  transition: background-color 0.3s ease;
  border: 1px solid #F2B544;
}

.page-slot-games__btn-play:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
}

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

.page-slot-games__step-card {
  background-color: #D32F2F; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #FFF5E1;
  border: 1px solid #7A0E0E; /* Deep Red */
}

.page-slot-games__step-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #F4D34D; /* Gold */
  margin-bottom: 15px;
}

.page-slot-games__strategy-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 30px;
}

.page-slot-games__strategy-item {
  background-color: #D32F2F; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #FFF5E1;
  border: 1px solid #7A0E0E; /* Deep Red */
}

.page-slot-games__item-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #F4D34D; /* Gold */
  margin-bottom: 10px;
}

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

.page-slot-games__promotion-card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #FFF5E1;
  border: 1px solid #7A0E0E; /* Deep Red */
  display: flex;
  flex-direction: column;
}

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

.page-slot-games__promotion-card .page-slot-games__card-title {
  margin: 15px 15px 5px;
}

.page-slot-games__promotion-card p {
  font-size: 0.95rem;
  margin: 0 15px 15px;
  flex-grow: 1;
}

.page-slot-games__btn-detail {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button */
  color: #7A0E0E; /* Deep Red */
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 15px 15px;
  transition: background-color 0.3s ease;
  border: 1px solid #F2B544;
  align-self: flex-start;
}

.page-slot-games__btn-detail:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
}

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

.page-slot-games__feature-item {
  background-color: #D32F2F; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #FFF5E1;
  border: 1px solid #7A0E0E; /* Deep Red */
}

.page-slot-games__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-slot-games__faq-item {
  background-color: #D32F2F; /* Card BG */
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #FFF5E1;
  border: 1px solid #7A0E0E; /* Deep Red */
}

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

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

.page-slot-games__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-slot-games__faq-answer {
  padding: 0 25px 18px;
  font-size: 1rem;
  color: #FFF5E1;
}

.page-slot-games__conclusion-section {
  text-align: center;
  padding-bottom: 60px;
}

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

/* Mobile responsive styles */
@media (max-width: 768px) {
  .page-slot-games__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games__hero-section {
    padding-top: 10px !important; /* Small top padding if body handles header offset */
    padding-bottom: 30px;
  }

  .page-slot-games__hero-image {
    object-fit: contain !important; /* Ensure image is fully visible */
    aspect-ratio: unset !important;
    max-height: none !important;
  }

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

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

  .page-slot-games__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-slot-games__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 20px;
  }

  .page-slot-games__benefits-grid,
  .page-slot-games__guide-steps,
  .page-slot-games__promotion-grid,
  .page-slot-games__security-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-slot-games__game-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    overflow-x: hidden !important;
  }

  .page-slot-games__game-thumbnail {
    height: 150px;
    object-fit: cover;
  }

  .page-slot-games__game-tile {
    aspect-ratio: 1/1;
  }

  .page-slot-games__game-title {
    font-size: 1rem;
  }

  .page-slot-games__game-tile p {
    font-size: 0.85rem;
  }

  .page-slot-games__btn-play {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  .page-slot-games__strategy-list {
    gap: 20px;
  }

  .page-slot-games__item-title {
    font-size: 1.2rem;
  }

  .page-slot-games__promotion-image {
    height: 150px;
  }

  .page-slot-games__btn-detail {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  .page-slot-games__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

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

  .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__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;
  }

  .page-slot-games__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-slot-games__hero-content {
    padding: 0 15px;
  }

  .page-slot-games__hero-section h1 {
    line-height: 1.3;
  }

  .page-slot-games__hero-section p {
    font-size: 0.95rem;
  }
}