.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 h1, .page-slot-games h2, .page-slot-games h3 {
  color: #F4D34D; /* Gold */
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: bold;
  text-align: center;
}

.page-slot-games h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.page-slot-games h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-top: 40px;
}

.page-slot-games h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

.page-slot-games p {
  margin-bottom: 15px;
  font-size: 16px;
  text-align: center;
}

.page-slot-games__cta-button, .page-slot-games__btn-primary, .page-slot-games__btn-secondary {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-slot-games__cta-button:hover, .page-slot-games__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-slot-games__btn-secondary {
  background: #B71C1C; /* Background */
  color: #FFD86A; /* Button light part */
  border: 2px solid #F2B544; /* Border */
}

.page-slot-games__btn-secondary:hover {
  background: #7A0E0E; /* Deep Red */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

/* HERO Section */
.page-slot-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #7A0E0E; /* Deep Red as a base */
  overflow: hidden;
}

.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-wrapper {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-slot-games__hero-image-wrapper 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%;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-slot-games__hero-content h1 {
  color: #FFD86A; /* Brighter gold for H1 */
  text-shadow: 0 0 10px rgba(255, 216, 106, 0.7);
}

.page-slot-games__hero-content p {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 20px;
  color: #FFF5E1;
}

/* General Section Styles */
.page-slot-games__intro-section, .page-slot-games__guide-section, .page-slot-games__promotions-section, .page-slot-games__faq-section {
  padding: 60px 0;
  background-color: #B71C1C; /* Background */
  color: #FFF5E1;
}

.page-slot-games__dark-bg {
  background-color: #7A0E0E; /* Deep Red */
  color: #FFF5E1;
}

.page-slot-games__light-bg {
  background-color: #B71C1C; /* Background */
  color: #FFF5E1;
}

.page-slot-games__game-types-section, .page-slot-games__strategy-section, .page-slot-games__features-section, .page-slot-games__conclusion-section {
  padding: 60px 0;
  background-color: #7A0E0E; /* Deep Red */
  color: #FFF5E1;
}

.page-slot-games__intro-section p, .page-slot-games__guide-section p, .page-slot-games__promotions-section p, .page-slot-games__strategy-section p, .page-slot-games__features-section p, .page-slot-games__conclusion-section p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.page-slot-games__game-card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #F2B544; /* Border */
}

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

.page-slot-games__game-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px; /* Min size for images */
  min-height: 200px;
}

.page-slot-games__game-card h3 {
  color: #FFD86A; /* Brighter gold for card titles */
  font-size: 1.5em;
  margin-top: 0;
}

.page-slot-games__game-card p {
  color: #FFF5E1;
  font-size: 0.95em;
}

/* Guide List */
.page-slot-games__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__guide-list li {
  background-color: #D32F2F; /* Card BG */
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #F2B544; /* Border */
}

.page-slot-games__guide-list li h3 {
  color: #FFD86A;
  text-align: left;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-slot-games__guide-list li p {
  color: #FFF5E1;
  text-align: left;
}

/* Strategy List */
.page-slot-games__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__strategy-list li {
  background-color: #D32F2F; /* Card BG */
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-right: 5px solid #F2B544; /* Border */
}

.page-slot-games__strategy-list li h3 {
  color: #FFD86A;
  text-align: left;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-slot-games__strategy-list li p {
  color: #FFF5E1;
  text-align: left;
}

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

.page-slot-games__promo-card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid #F2B544; /* Border */
}

.page-slot-games__promo-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px;
  min-height: 200px;
}

.page-slot-games__promo-card h3 {
  color: #FFD86A;
  font-size: 1.5em;
  margin-top: 0;
}

.page-slot-games__promo-card p {
  color: #FFF5E1;
  font-size: 0.95em;
}

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

.page-slot-games__feature-list li {
  background-color: #D32F2F; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid #F2B544; /* Border */
}

.page-slot-games__feature-list li img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__feature-list li h3 {
  color: #FFD86A;
  font-size: 1.4em;
  margin-top: 0;
}

.page-slot-games__feature-list li p {
  color: #FFF5E1;
  font-size: 0.9em;
}

/* FAQ Section */
details.page-slot-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 2px solid #F2B544; /* Border */
  overflow: hidden;
  background-color: #D32F2F; /* Card BG */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

details.page-slot-games__faq-item summary.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFD86A; /* Gold */
  font-weight: bold;
}

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-color: #C91F17; /* Main color on hover */
}

.page-slot-games__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  line-height: 1.5;
  text-align: left;
  color: #FFF5E1; /* Text Main */
}

details.page-slot-games__faq-item summary.page-slot-games__faq-question:hover .page-slot-games__faq-qtext {
  color: #FFD86A; /* Gold on hover */
}

.page-slot-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #F2B544; /* Border color for toggle */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

details.page-slot-games__faq-item .page-slot-games__faq-answer {
  padding: 0 20px 20px;
  background-color: #C91F17; /* Main color for answer background */
  border-radius: 0 0 8px 8px;
  color: #FFF5E1;
  font-size: 0.95em;
}

.page-slot-games__faq-answer p {
  text-align: left;
  margin-top: 10px;
  margin-bottom: 0;
}

/* Conclusion Section */
.page-slot-games__conclusion-section {
  text-align: center;
  padding-bottom: 80px;
}

.page-slot-games__conclusion-section p {
  font-size: 1.1em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-slot-games h1 {
    font-size: 2.2rem;
  }
  .page-slot-games h2 {
    font-size: 2rem;
  }
  .page-slot-games p {
    font-size: 15px;
  }

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

  .page-slot-games__hero-image-wrapper {
    margin-bottom: 20px;
    border-radius: 8px;
  }

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

  .page-slot-games__cta-button, .page-slot-games__btn-primary, .page-slot-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
    margin-top: 20px;
  }

  .page-slot-games__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-slot-games__intro-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__features-section, .page-slot-games__faq-section, .page-slot-games__conclusion-section {
    padding: 40px 0;
  }

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

  .page-slot-games__game-grid, .page-slot-games__promo-grid, .page-slot-games__feature-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-slot-games__game-card, .page-slot-games__promo-card, .page-slot-games__feature-list li {
    padding: 20px;
  }

  .page-slot-games__guide-list li, .page-slot-games__strategy-list li {
    padding: 20px;
  }

  details.page-slot-games__faq-item summary.page-slot-games__faq-question {
    padding: 15px;
  }

  .page-slot-games__faq-qtext {
    font-size: 1em;
  }

  .page-slot-games__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }

  details.page-slot-games__faq-item .page-slot-games__faq-answer {
    padding: 0 15px 15px;
  }
}