.page-slot-games {
  color: #FFF3E6; /* Text Main */
  background-color: var(--background-color, #0D0E12); /* Body background, fallback to custom if not set by shared */
  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 */
  overflow: hidden;
  background: linear-gradient(180deg, #17191F 0%, #0D0E12 100%); /* Card BG to Background */
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Adjust as needed */
  margin-bottom: 30px;
}

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

.page-slot-games__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-slot-games__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFF3E6; /* Text Main */
  margin-bottom: 20px;
  /* clamp for responsive font size, avoiding fixed large values */
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

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

.page-slot-games__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
  color: #ffffff; /* White text on dark button */
  border: 2px solid transparent;
}

.page-slot-games__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

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

.page-slot-games__btn-secondary:hover {
  background: rgba(255, 165, 58, 0.1);
  transform: translateY(-2px);
}

.page-slot-games__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding */
  background-color: #0D0E12; /* Background color */
  color: #FFF3E6;
}

.page-slot-games__video-container {
  width: 100%; /* Desktop width */
  max-width: 1000px; /* Max width for video */
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 10px;
}

.page-slot-games__video-link {
  display: block;
  cursor: pointer;
}

.page-slot-games__video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.page-slot-games__video-caption {
  text-align: center;
  margin-top: 20px;
  font-size: 1.1rem;
  color: #FFF3E6;
}

.page-slot-games__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #0D0E12; /* Background color */
  color: #FFF3E6; /* Text Main */
}

.page-slot-games__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #FF8C1A; /* Primary color */
  margin-bottom: 30px;
  text-align: center;
}

.page-slot-games__text-block {
  font-size: 1.05rem;
  margin-bottom: 25px;
  line-height: 1.7;
  color: #FFF3E6;
}

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

.page-slot-games__card {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border color */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  color: #FFF3E6;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-slot-games__card:hover {
  transform: translateY(-5px);
}

.page-slot-games__card-image {
  width: 100%;
  max-width: 400px; /* Card image max width */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-slot-games__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFA53A; /* Auxiliary color */
  margin-bottom: 15px;
}

.page-slot-games__card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #FFF3E6;
}

.page-slot-games__numbered-list,
.page-slot-games__bullet-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.page-slot-games__numbered-list li,
.page-slot-games__bullet-list li {
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #FFF3E6;
  position: relative;
  padding-left: 30px;
}

.page-slot-games__numbered-list li strong {
  color: #FFA53A;
}

.page-slot-games__numbered-list li::before {
  content: counter(list-item) ". ";
  counter-increment: list-item;
  color: #FFB04D; /* Glow color */
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}

.page-slot-games__bullet-list li::before {
  content: "\2022"; /* Unicode for bullet point */
  color: #FFB04D; /* Glow color */
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
  line-height: 1.7;
}

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

.page-slot-games__faq-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #FFF3E6;
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFA53A; /* Auxiliary color */
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-slot-games__faq-question:hover {
  background-color: rgba(255, 165, 58, 0.05);
}

.page-slot-games__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  color: #FFB04D; /* Glow color */
  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 20px;
  font-size: 1rem;
  line-height: 1.7;
  color: #FFF3E6;
}

.page-slot-games__cta-banner {
  background: linear-gradient(90deg, #D96800 0%, #FF8C1A 100%); /* Deep Orange to Primary */
  border-radius: 12px;
  padding: 40px;
  margin-top: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: #ffffff;
}

.page-slot-games__cta-banner-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-slot-games__cta-banner-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.page-slot-games__cta-banner-text {
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.6;
  color: #FFF3E6;
}

/* Floating Buttons */
.page-slot-games__floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100px; /* Fixed width for floating buttons */
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-slot-games__floating-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-slot-games__floating-register-btn {
  right: 140px; /* Adjust position for two buttons */
}

.page-slot-games__floating-login-btn {
  right: 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-slot-games__hero-section {
    padding: 40px 15px;
  }

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

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

  .page-slot-games__content-area {
    padding: 30px 15px;
  }

  .page-slot-games__section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  }

  .page-slot-games__text-block,
  .page-slot-games__card-text,
  .page-slot-games__numbered-list li,
  .page-slot-games__bullet-list li,
  .page-slot-games__faq-answer {
    font-size: 0.95rem;
  }

  .page-slot-games__card-title {
    font-size: 1.3rem;
  }

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

  .page-slot-games__cta-banner {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-slot-games__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important;
  }

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

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

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

  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
  }

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

  .page-slot-games__content-area {
    padding: 20px 15px;
  }

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

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

  .page-slot-games__card {
    padding: 20px;
  }

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

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

  .page-slot-games__cta-banner {
    padding: 25px;
  }

  .page-slot-games__cta-banner-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .page-slot-games__cta-banner-text {
    font-size: 0.9rem;
  }

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

  .page-slot-games__hero-image-wrapper,
  .page-slot-games__video-container,
  .page-slot-games__cta-banner-image,
  .page-slot-games__card,
  .page-slot-games__cta-banner {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no overflow */
  }

  /* Floating buttons adjustment for mobile */
  .page-slot-games__floating-btn {
    font-size: 0.9rem;
    padding: 10px 15px;
    max-width: 90px; /* Smaller fixed width for mobile */
    bottom: 15px;
  }

  .page-slot-games__floating-register-btn {
    right: 115px; /* Adjust position for mobile */
  }

  .page-slot-games__floating-login-btn {
    right: 15px;
  }
}