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

.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: linear-gradient(135deg, #017439, #005a2e);
  color: #ffffff;
}

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

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

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

.page-slot-games__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFFF00;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-slot-games__description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #C30808; /* Register color */
  color: #FFFF00; /* Register font color */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-slot-games__cta-button:hover {
  background: #e02020;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-slot-games__section {
  padding: 60px 20px;
  text-align: center;
}

.page-slot-games__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.page-slot-games__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 40px;
  color: #017439;
  position: relative;
  padding-bottom: 15px;
}

.page-slot-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #C30808;
  border-radius: 2px;
}

.page-slot-games__about-slot-games p {
  max-width: 900px;
  margin: 0 auto 20px auto;
  font-size: 1.05rem;
  color: #333333;
}

.page-slot-games__download-guide {
  background: #f9f9f9;
}

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

.page-slot-games__download-step {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__download-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.page-slot-games__step-title {
  font-size: 1.3rem;
  color: #017439;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-slot-games__download-step p {
  font-size: 1rem;
  color: #555555;
}

.page-slot-games__download-image {
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-slot-games__cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-slot-games__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: #017439;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
}

.page-slot-games__btn-primary:hover {
  background: #005a2e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-slot-games__game-types {
  background: #017439;
  color: #ffffff;
}

.page-slot-games__game-types .page-slot-games__section-title {
  color: #FFFF00;
}

.page-slot-games__game-types p {
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #f0f0f0;
}

.page-slot-games__game-types a {
  color: #FFFF00;
  text-decoration: underline;
}

.page-slot-games__game-types a:hover {
  color: #ffffff;
}

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

.page-slot-games__game-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-slot-games__game-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-slot-games__game-card .page-slot-games__card-title {
  font-size: 1.25rem;
  color: #FFFF00;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.page-slot-games__game-types-image {
  max-width: 1000px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-slot-games__benefits {
  background: #ffffff;
}

.page-slot-games__benefits-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
  text-align: left;
}

.page-slot-games__benefits-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #333333;
}

.page-slot-games__benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #017439;
  font-weight: bold;
  font-size: 1.2rem;
}

.page-slot-games__benefits-list li strong {
  color: #017439;
}

.page-slot-games__benefits a {
  color: #017439;
  text-decoration: underline;
}

.page-slot-games__benefits a:hover {
  color: #C30808;
}

.page-slot-games__benefits-image {
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-slot-games__promotions {
  background: #f9f9f9;
}

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

.page-slot-games__promo-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.page-slot-games__promo-card .page-slot-games__card-title {
  font-size: 1.25rem;
  color: #017439;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.page-slot-games__promo-image {
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-slot-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  background: #ffffff;
  color: #017439;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid #017439;
  margin-top: 30px;
}

.page-slot-games__btn-secondary:hover {
  background: #f0f0f0;
  color: #005a2e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-slot-games__tips {
  background: #017439;
  color: #ffffff;
}

.page-slot-games__tips .page-slot-games__section-title {
  color: #FFFF00;
}

.page-slot-games__tips p {
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #f0f0f0;
}

.page-slot-games__tips a {
  color: #FFFF00;
  text-decoration: underline;
}

.page-slot-games__tips a:hover {
  color: #ffffff;
}

.page-slot-games__tips-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
  text-align: left;
}

.page-slot-games__tips-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #e0e0e0;
}

.page-slot-games__tips-list li::before {
  content: '���';
  position: absolute;
  left: 0;
  color: #FFFF00;
  font-weight: bold;
  font-size: 0.9rem;
}

.page-slot-games__tips-list li strong {
  color: #FFFF00;
}

.page-slot-games__text-center {
  text-align: center;
}

/* FAQ Styles */
.page-slot-games__faq {
  background: #ffffff;
}

details.page-slot-games__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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: #f5f5f5;
}

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

.page-slot-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #017439;
  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: #f9f9f9;
  border-radius: 0 0 5px 5px;
  text-align: left;
  color: #555555;
}

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

.page-slot-games__faq-answer a {
    color: #017439;
    text-decoration: underline;
}

.page-slot-games__faq-answer a:hover {
    color: #C30808;
}

.page-slot-games__call-to-action {
    padding: 80px 20px;
    background: linear-gradient(90deg, #017439, #005a2e);
    color: #ffffff;
}

.page-slot-games__call-to-action .page-slot-games__section-title {
    color: #FFFF00;
}

.page-slot-games__call-to-action p {
    max-width: 800px;
    margin: 20px auto 40px auto;
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-slot-games__hero-image img {
    border-radius: 8px;
  }
  .page-slot-games__download-image,
  .page-slot-games__game-types-image,
  .page-slot-games__benefits-image,
  .page-slot-games__promo-image {
    border-radius: 8px;
  }
}

@media (max-width: 768px) {
  .page-slot-games__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-slot-games__hero-image img {
    border-radius: 4px;
  }
  
  .page-slot-games__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-slot-games__section {
    padding: 40px 15px;
  }

  .page-slot-games__section-title {
    margin-bottom: 30px;
  }

  .page-slot-games__download-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-slot-games__download-step {
    padding: 20px;
  }

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

  .page-slot-games__benefits-list,
  .page-slot-games__tips-list {
    margin-top: 30px;
  }

  .page-slot-games__faq-item summary.page-slot-games__faq-question { padding: 15px; }
  .page-slot-games__faq-qtext { font-size: 15px; }
  .page-slot-games__faq-toggle { font-size: 20px; width: 24px; }
  .page-slot-games__faq-answer { padding: 0 15px 15px; }

  .page-slot-games__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary,
  .page-slot-games a[class*="button"],
  .page-slot-games a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games__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;
    flex-wrap: wrap !important;
  }

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