.page-slot-games {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* 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__dark-bg {
  background-color: #11271B; /* Card B G, a darker shade for sections */
  color: #F2FFF6;
}

.page-slot-games__section-title {
  font-size: clamp(28px, 4vw, 48px);
  color: #F2C14E; /* Gold */
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 1px;
}

.page-slot-games__main-title {
  font-size: clamp(32px, 5vw, 58px);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 1px;
  max-width: 800px; /* Constrain for better readability */
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__highlight {
  color: #57E38D; /* Glow */
  font-weight: bold;
}

/* Hero Section */
.page-slot-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-slot-games__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
  max-width: 900px;
  margin-top: 40px;
}

.page-slot-games__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

/* Buttons */
.page-slot-games__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary,
.page-slot-games__btn-link {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

.page-slot-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: 2px solid transparent;
}

.page-slot-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4);
}

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

.page-slot-games__btn-secondary:hover {
  background-color: #57E38D;
  color: #08160F; /* Background */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4);
}

.page-slot-games__btn-link {
  background-color: transparent;
  color: #57E38D; /* Glow */
  border: 1px solid #57E38D;
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-slot-games__btn-link:hover {
  background-color: #57E38D;
  color: #08160F;
}

/* General Content Styles */
.page-slot-games p {
  margin-bottom: 1em;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
}

.page-slot-games ul,
.page-slot-games ol {
  list-style-position: inside;
  padding-left: 0;
  margin-bottom: 1em;
}

.page-slot-games li {
  margin-bottom: 0.5em;
  color: #A7D9B8; /* Text Secondary */
}

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

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

.page-slot-games__feature-card {
  background-color: #11271B; /* Card B G */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
}

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

.page-slot-games__feature-title {
  font-size: 1.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

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

.page-slot-games__game-item {
  background-color: #11271B; /* Card B G */
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
}

.page-slot-games__game-thumbnail {
  width: 100%;
  height: auto;
  max-width: 350px;
  margin-bottom: 15px;
  border-radius: 8px;
  object-fit: cover;
}

.page-slot-games__game-name {
  font-size: 1.4em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

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

.page-slot-games__guide-item {
  background-color: #11271B; /* Card B G */
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  border: 1px solid #2E7A4E; /* Border */
}

.page-slot-games__guide-step-title {
  font-size: 1.3em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  text-align: center;
}

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

.page-slot-games__promotion-card {
  background-color: #11271B; /* Card B G */
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
}

.page-slot-games__promotion-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin-bottom: 15px;
  border-radius: 8px;
  object-fit: cover;
}

.page-slot-games__promotion-title {
  font-size: 1.4em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

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

.page-slot-games__tips-item {
  background-color: #11271B; /* Card B G */
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  border: 1px solid #2E7A4E; /* Border */
}

.page-slot-games__tips-title {
  font-size: 1.3em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  text-align: center;
}

/* Support Section */
.page-slot-games__support-contact {
  margin-top: 30px;
  text-align: center;
}

.page-slot-games__support-contact p {
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-slot-games__support-contact ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.page-slot-games__link {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-slot-games__link:hover {
  color: #2AD16F;
  text-decoration: underline;
}

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

.page-slot-games__faq-item {
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Divider */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1.1em;
  user-select: none;
  list-style: none;
}

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

.page-slot-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #57E38D; /* Glow */
}

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

.page-slot-games__faq-answer {
  padding: 0 20px 20px;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

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

.page-slot-games__faq-answer .page-slot-games__btn-link {
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games__hero-content {
    margin-top: 20px;
  }
  .page-slot-games__section {
    padding: 40px 0;
  }
  .page-slot-games__section-title {
    font-size: clamp(24px, 3.5vw, 40px);
  }
  .page-slot-games__main-title {
    font-size: clamp(28px, 4.5vw, 50px);
  }
}

@media (max-width: 768px) {
  .page-slot-games__hero-content {
    padding: 15px;
  }
  .page-slot-games__hero-description {
    font-size: 1em;
  }
  .page-slot-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
  }
  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary,
  .page-slot-games__btn-link {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-slot-games__container,
  .page-slot-games__feature-grid,
  .page-slot-games__game-list,
  .page-slot-games__guide-list,
  .page-slot-games__promotion-grid,
  .page-slot-games__tips-list,
  .page-slot-games__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games__hero-image,
  .page-slot-games__feature-icon,
  .page-slot-games__game-thumbnail,
  .page-slot-games__promotion-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-slot-games__support-contact ul {
    align-items: stretch;
  }
  .page-slot-games__support-contact li {
    width: 100%;
  }
  .page-slot-games__link {
    display: block;
    padding: 10px 0;
    border: 1px solid #2E7A4E;
    border-radius: 5px;
    margin-bottom: 5px;
  }
}

@media (max-width: 480px) {
  .page-slot-games__section {
    padding: 30px 0;
  }
  .page-slot-games__section-title {
    font-size: clamp(22px, 5vw, 32px);
  }
  .page-slot-games__main-title {
    font-size: clamp(26px, 6vw, 40px);
  }
  .page-slot-games__feature-grid,
  .page-slot-games__game-list,
  .page-slot-games__guide-list,
  .page-slot-games__promotion-grid,
  .page-slot-games__tips-list {
    grid-template-columns: 1fr;
  }
  .page-slot-games__hero-description {
    font-size: 0.9em;
  }
}