.page-slot-games {
  font-family: 'Arial', sans-serif;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
  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;
}

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

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

.page-slot-games__hero-title {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  color: #2F6BFF; /* Primary color */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-slot-games__hero-description {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #1F2D3D;
}

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

.page-slot-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.6);
}

.page-slot-games__cta-button--secondary {
  background: #ffffff;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-slot-games__cta-button--secondary:hover {
  background: #e0f0ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-slot-games__cta-button--large {
  padding: 18px 50px;
  font-size: 20px;
}

.page-slot-games__section {
  padding: 80px 20px;
  position: relative;
  z-index: 1;
}

.page-slot-games__section--intro {
  background-color: #F4F7FB;
}

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

.page-slot-games__section--how-to-play,
.page-slot-games__section--cta-final {
  background: linear-gradient(135deg, #2F6BFF 0%, #6FA3FF 100%); /* Primary and secondary gradient */
  color: #ffffff;
}

.page-slot-games__section--promotions {
  background-color: #F4F7FB;
}

.page-slot-games__section--security {
  background-color: #ffffff;
}

.page-slot-games__section--mobile {
  background-color: #F4F7FB;
}

.page-slot-games__section--faq {
  background-color: #ffffff;
}

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

.page-slot-games__section-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: inherit;
}

.page-slot-games__section--how-to-play .page-slot-games__section-title,
.page-slot-games__section--cta-final .page-slot-games__section-title,
.page-slot-games__section--tips .page-slot-games__section-title {
  color: #ffffff;
}

.page-slot-games__text-block {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: inherit;
}

.page-slot-games__section--how-to-play .page-slot-games__text-block,
.page-slot-games__section--cta-final .page-slot-games__text-block,
.page-slot-games__section--tips .page-slot-games__text-block {
  color: #e0e0e0;
}

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

.page-slot-games__card {
  background: #FFFFFF; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF; /* Border */
  color: #1F2D3D;
}

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

.page-slot-games__card-image {
  width: 100%;
  height: 200px; /* Fixed height for visual consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  min-width: 200px;
  min-height: 200px;
}

.page-slot-games__card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2F6BFF;
}

.page-slot-games__card-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 20px;
}

.page-slot-games__card-link {
  display: inline-block;
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid #2F6BFF;
  padding-bottom: 3px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-slot-games__card-link:hover {
  color: #6FA3FF;
  border-color: #6FA3FF;
}

.page-slot-games__numbered-list {
  list-style: none;
  counter-reset: item;
  padding: 0;
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-slot-games__numbered-list li {
  counter-increment: item;
  margin-bottom: 25px;
  padding-left: 50px;
  position: relative;
  font-size: 18px;
  line-height: 1.7;
  color: #ffffff;
}

.page-slot-games__numbered-list li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  background: #ffffff;
  color: #2F6BFF;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games__cta-area {
  text-align: center;
  margin-top: 50px;
}

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

.page-slot-games__content-block {
  background: #F8F8F8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF;
}

.page-slot-games__content-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 20px;
}

.page-slot-games__content-block p {
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 15px;
}

.page-slot-games__mobile-flex {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-slot-games__mobile-content {
  flex: 1;
  min-width: 300px;
}

.page-slot-games__mobile-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-slot-games__mobile-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

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

.page-slot-games__bullet-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.7;
  color: #e0e0e0;
}

.page-slot-games__bullet-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #A5C4FF; /* Glow color */
  font-weight: bold;
  font-size: 20px;
  top: -2px;
}

/* FAQ styles */
details.page-slot-games__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #D6E2FF; /* Border */
  overflow: hidden;
  background: #FFFFFF; /* Card BG */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
details.page-slot-games__faq-item summary.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  font-size: 18px;
  font-weight: 600;
  color: #1F2D3D;
}
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: #F8F8F8;
}
.page-slot-games__faq-qtext {
  flex: 1;
  line-height: 1.5;
  text-align: left;
  color: #1F2D3D;
}
.page-slot-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #2F6BFF;
  flex-shrink: 0;
  margin-left: 20px;
  width: 30px;
  text-align: center;
  line-height: 1;
}
details.page-slot-games__faq-item .page-slot-games__faq-answer {
  padding: 0 25px 20px;
  background: #F9F9F9;
  border-radius: 0 0 10px 10px;
  color: #333333;
}
details.page-slot-games__faq-item .page-slot-games__faq-answer p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games__hero-title {
    font-size: clamp(26px, 4vw, 42px);
  }
  .page-slot-games__hero-description {
    font-size: 17px;
  }
  .page-slot-games__section-title {
    font-size: clamp(22px, 3vw, 36px);
  }
  .page-slot-games__card-image {
    height: 180px;
  }
  .page-slot-games__mobile-flex {
    flex-direction: column;
    gap: 30px;
  }
  .page-slot-games__mobile-image-wrapper {
    order: -1;
  }
}

@media (max-width: 768px) {
  .page-slot-games {
    font-size: 16px;
    line-height: 1.6;
  }

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

  .page-slot-games__hero-title {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 15px;
  }

  .page-slot-games__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .page-slot-games__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
  }

  .page-slot-games__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 25px;
    font-size: 16px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-slot-games__cta-area {
    width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

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

  .page-slot-games__section-title {
    font-size: clamp(20px, 5vw, 30px);
    margin-bottom: 30px;
  }

  .page-slot-games__text-block {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .page-slot-games__grid-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .page-slot-games__card-image {
    height: 160px;
  }

  .page-slot-games__card-title {
    font-size: 20px;
  }

  .page-slot-games__numbered-list li {
    font-size: 16px;
    padding-left: 45px;
  }

  .page-slot-games__numbered-list li::before {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }

  .page-slot-games__content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-slot-games__content-subtitle {
    font-size: 20px;
  }

  .page-slot-games__content-block p {
    font-size: 15px;
  }

  .page-slot-games__mobile-flex {
    gap: 30px;
  }

  .page-slot-games__bullet-list li {
    font-size: 16px;
    padding-left: 30px;
  }

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

  /* General image responsiveness for content area */
  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

  .page-slot-games__hero-image-wrapper {
    padding: 0;
    border-radius: 8px;
  }

  .page-slot-games__hero-image-wrapper img {
    border-radius: 8px;
  }

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

@media (max-width: 480px) {
  .page-slot-games__hero-title {
    font-size: clamp(22px, 7vw, 32px);
  }
  .page-slot-games__cta-button--large {
    padding: 15px 30px;
    font-size: 18px;
  }
}