.page-slot-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Body 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: 2.5em;
  font-weight: bold;
  color: #F2C14E; /* Primary Color */
  margin-bottom: 40px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__highlight {
  color: #FFD36B; /* Auxiliary Color */
  font-weight: bold;
}

.page-slot-games a {
  color: #F2C14E;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Buttons */
.page-slot-games__cta-button,
.page-slot-games__btn-primary,
.page-slot-games__btn-secondary,
.page-slot-games a[class*="button"],
.page-slot-games a[class*="btn"] {
  display: inline-block;
  padding: 15px 40px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-slot-games__btn-primary:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.6);
}

.page-slot-games__btn-secondary {
  background: #111111; /* Card BG */
  color: #F2C14E; /* Primary Color */
  border: 2px solid #3A2A12; /* Border Color */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.page-slot-games__btn-secondary:hover {
  background: #3A2A12; /* Border Color */
  color: #FFD36B; /* Auxiliary Color */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-slot-games__button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Cards */
.page-slot-games__card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border Color */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-slot-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(242, 193, 78, 0.2);
}

.page-slot-games__card-title {
  font-size: 1.5em;
  color: #FFD36B; /* Auxiliary Color */
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-slot-games__card-description {
  font-size: 1em;
  color: #FFF6D6;
  flex-grow: 1;
}

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

/* 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 */
  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 {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.page-slot-games__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

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

.page-slot-games__main-title {
  font-size: clamp(2.2em, 5vw, 3.5em); /* Responsive H1 font size */
  font-weight: 900;
  color: #FFD36B; /* Auxiliary Color */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

.page-slot-games__hero-description {
  font-size: 1.2em;
  color: #FFF6D6;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-slot-games__hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Why Choose Section */
.page-slot-games__why-choose-section {
  background-color: #0A0A0A;
}

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

.page-slot-games__grid-2-col .page-slot-games__card {
  padding: 25px;
}

/* Game Types Section */
.page-slot-games__game-type-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-slot-games__game-type-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border Color */
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.page-slot-games__game-type-title {
  font-size: 1.4em;
  color: #FFD36B;
  margin-bottom: 10px;
}

.page-slot-games__game-type-description {
  font-size: 0.95em;
  color: #FFF6D6;
}

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

.page-slot-games__promo-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border Color */
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-slot-games__promo-title {
  font-size: 1.4em;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-slot-games__promo-description {
  font-size: 0.95em;
  color: #FFF6D6;
  flex-grow: 1;
}

/* How To Play Section */
.page-slot-games__step-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-slot-games__step-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border Color */
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slot-games__step-title {
  font-size: 1.4em;
  color: #FFD36B;
  margin-bottom: 10px;
}

.page-slot-games__step-description {
  font-size: 0.95em;
  color: #FFF6D6;
  flex-grow: 1;
}

.page-slot-games__step-button {
  margin-top: 20px;
  width: 100%;
}

/* Security & Support Section */
.page-slot-games__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-slot-games__info-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border Color */
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  height: 100%;
}

.page-slot-games__info-title {
  font-size: 1.4em;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-slot-games__info-description {
  font-size: 0.95em;
  color: #FFF6D6;
}

.page-slot-games__contact-button {
  margin-top: 40px;
}

/* FAQ Section */
.page-slot-games__faq-list {
  margin-top: 40px;
  text-align: left;
}

details.page-slot-games__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border Color */
  overflow: hidden;
  background: #111111; /* Card BG */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

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: #FFD36B; /* Auxiliary Color */
  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: rgba(242, 193, 78, 0.1);
}

.page-slot-games__faq-qtext {
  flex: 1;
  font-size: 1.15em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFD36B;
}

.page-slot-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #F2C14E; /* Primary Color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-slot-games__faq-item .page-slot-games__faq-answer {
  padding: 0 20px 20px;
  background: #0A0A0A; /* Body Background */
  border-radius: 0 0 10px 10px;
  color: #FFF6D6;
  font-size: 1em;
}

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

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

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

.page-slot-games__news-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border Color */
  border-radius: 10px;
  padding-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  text-align: left;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-slot-games__news-card img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  margin-bottom: 20px;
}

.page-slot-games__news-title {
  font-size: 1.3em;
  color: #FFD36B;
  margin: 0 20px 10px;
  line-height: 1.4;
  flex-grow: 1;
}

.page-slot-games__news-title a {
  color: #FFD36B;
}

.page-slot-games__news-title a:hover {
  color: #F2C14E;
}

.page-slot-games__news-meta {
  font-size: 0.85em;
  color: #F2C14E;
  margin: 0 20px 15px;
}

.page-slot-games__news-excerpt {
  font-size: 0.95em;
  color: #FFF6D6;
  margin: 0 20px 20px;
  flex-grow: 1;
}

.page-slot-games__news-card .page-slot-games__read-more {
  margin: 0 20px;
}

.page-slot-games__view-all-news {
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games__section-title {
    font-size: 2em;
  }
  .page-slot-games__paragraph {
    font-size: 1em;
  }
  .page-slot-games__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-slot-games__hero-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-slot-games__section {
    padding: 40px 0;
  }
  .page-slot-games__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-slot-games__paragraph {
    font-size: 0.95em;
  }

  /* Hero Section */
  .page-slot-games__hero-section {
    padding-top: 10px !important; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games__hero-image img {
    border-radius: 8px;
  }
  .page-slot-games__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }
  .page-slot-games__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-slot-games__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-slot-games__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-slot-games__hero-cta-group, .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;
  }

  /* General Image and Button Responsiveness */
  .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 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Cards and Grids */
  .page-slot-games__grid-2-col,
  .page-slot-games__game-type-list,
  .page-slot-games__promo-list,
  .page-slot-games__step-list,
  .page-slot-games__info-grid,
  .page-slot-games__news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-slot-games__card,
  .page-slot-games__game-type-item,
  .page-slot-games__promo-item,
  .page-slot-games__step-item,
  .page-slot-games__info-card,
  .page-slot-games__news-card {
    padding: 20px;
  }
  .page-slot-games__card-title,
  .page-slot-games__game-type-title,
  .page-slot-games__promo-title,
  .page-slot-games__step-title,
  .page-slot-games__info-title,
  .page-slot-games__news-title {
    font-size: 1.2em;
  }
  .page-slot-games__news-card img {
    
  }

  /* FAQ Section */
  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;
  }
  details.page-slot-games__faq-item .page-slot-games__faq-answer {
    padding: 0 15px 15px;
  }
  .page-slot-games__faq-button {
    width: 100% !important;
    max-width: 100% !important;
  }
  .page-slot-games__news-card .page-slot-games__read-more {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
}