.page-slot-games {
  font-family: 'Arial', sans-serif;
  color: #1F2D3D;
  line-height: 1.6;
  background-color: #F4F7FB;
}

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

.page-slot-games__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-slot-games__section-intro {
  font-size: 18px;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 60px;
  padding-top: 10px; /* Small top padding, relying on body padding-top for header offset */
  background: linear-gradient(180deg, #6FA3FF 0%, #F4F7FB 100%);
  position: relative;
  overflow: hidden;
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-bottom: 30px;
}

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

.page-slot-games__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-slot-games__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #1F2D3D;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-slot-games__hero-description {
  font-size: 20px;
  color: #1F2D3D;
  margin-bottom: 30px;
}

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

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

.page-slot-games__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 5px 15px rgba(47, 107, 255, 0.3);
}

.page-slot-games__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  box-shadow: 0 8px 20px rgba(47, 107, 255, 0.4);
}

.page-slot-games__btn-secondary {
  background: #ffffff;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-slot-games__btn-secondary:hover {
  background: #F4F7FB;
  color: #2558D4;
  border-color: #2558D4;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-slot-games__why-mostbet-section,
.page-slot-games__popular-games-section,
.page-slot-games__how-to-play-section,
.page-slot-games__faq-section {
  padding: 80px 0;
}

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

.page-slot-games__feature-card {
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #D6E2FF;
}

.page-slot-games__feature-card:hover {
  transform: translateY(-10px);
}

.page-slot-games__feature-icon {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__feature-title {
  font-size: 24px;
  font-weight: 700;
  color: #1F2D3D;
  margin-bottom: 15px;
}

.page-slot-games__feature-description {
  font-size: 16px;
  color: #1F2D3D;
}

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

.page-slot-games__game-card {
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #D6E2FF;
}

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

.page-slot-games__game-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-slot-games__game-title {
  font-size: 22px;
  font-weight: 700;
  color: #1F2D3D;
  margin-bottom: 10px;
}

.page-slot-games__game-description {
  font-size: 15px;
  color: #1F2D3D;
  margin-bottom: 20px;
}

.page-slot-games__btn-play {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-slot-games__btn-play:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

.page-slot-games__promotions-section {
  padding: 80px 0;
  background: #2F6BFF; /* Main brand color for dark section */
  color: #ffffff;
}

.page-slot-games__promotions-section .page-slot-games__section-title,
.page-slot-games__promotions-section .page-slot-games__section-intro {
  color: #ffffff;
}

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

.page-slot-games__promo-card {
  background: rgba(255, 255, 255, 0.15); /* Slightly transparent white on blue */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-slot-games__promo-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-slot-games__promo-description {
  font-size: 17px;
  margin-bottom: 25px;
  color: #f0f0f0;
}

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

.page-slot-games__steps-item {
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 20px;
  border: 1px solid #D6E2FF;
}

.page-slot-games__step-title {
  font-size: 24px;
  font-weight: 700;
  color: #2F6BFF;
  margin-bottom: 10px;
}

.page-slot-games__step-title::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #A5C4FF;
  border-radius: 50%;
  margin-right: 15px;
  vertical-align: middle;
}

.page-slot-games__steps-item p {
  font-size: 16px;
  color: #1F2D3D;
}

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

.page-slot-games__app-download-section {
  padding: 80px 0;
  background: #2F6BFF;
  color: #ffffff;
}

.page-slot-games__app-download-section .page-slot-games__section-title,
.page-slot-games__app-download-section .page-slot-games__section-intro {
  color: #ffffff;
}

.page-slot-games__app-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

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

.page-slot-games__app-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-slot-games__app-image-wrapper {
  flex: 0 0 350px;
  max-width: 350px;
  text-align: center;
}

.page-slot-games__app-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-slot-games__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

details.page-slot-games__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #D6E2FF;
  overflow: hidden;
  background: #fff;
}

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: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #1F2D3D;
}

.page-slot-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #2F6BFF;
  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: #F4F7FB;
  border-radius: 0 0 5px 5px;
  color: #1F2D3D;
}

.page-slot-games__faq-answer p {
  margin: 0;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-slot-games__main-title {
    font-size: clamp(26px, 5vw, 42px);
  }
  .page-slot-games__section-title {
    font-size: 32px;
  }
  .page-slot-games__hero-description {
    font-size: 18px;
  }
  .page-slot-games__btn-primary, .page-slot-games__btn-secondary {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-slot-games__feature-title {
    font-size: 22px;
  }
  .page-slot-games__game-title {
    font-size: 20px;
  }
  .page-slot-games__promo-title {
    font-size: 24px;
  }
  .page-slot-games__step-title {
    font-size: 22px;
  }
  .page-slot-games__faq-qtext {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-slot-games__container {
    padding: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-slot-games__hero-section {
    padding-bottom: 40px;
    padding-top: 10px; /* Consistent small top padding */
  }
  .page-slot-games__hero-image-wrapper {
    margin-bottom: 20px;
  }
  .page-slot-games__hero-image {
    object-fit: contain !important; /* Ensure image is fully visible */
    aspect-ratio: unset !important; /* Remove fixed aspect ratio if any */
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-slot-games__main-title {
    font-size: clamp(24px, 7vw, 36px);
  }
  .page-slot-games__section-title {
    font-size: 28px;
  }
  .page-slot-games__section-intro {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-slot-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-slot-games__why-mostbet-section,
  .page-slot-games__popular-games-section,
  .page-slot-games__how-to-play-section,
  .page-slot-games__faq-section,
  .page-slot-games__promotions-section,
  .page-slot-games__app-download-section {
    padding: 40px 0;
  }
  .page-slot-games__features-grid,
  .page-slot-games__games-grid,
  .page-slot-games__promo-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-slot-games__feature-card,
  .page-slot-games__game-card,
  .page-slot-games__promo-card,
  .page-slot-games__steps-item {
    padding: 20px;
  }
  .page-slot-games__feature-title {
    font-size: 20px;
  }
  .page-slot-games__game-title {
    font-size: 18px;
  }
  .page-slot-games__promo-title {
    font-size: 22px;
  }
  .page-slot-games__step-title {
    font-size: 20px;
  }
  .page-slot-games__steps-item p {
    font-size: 15px;
  }
  .page-slot-games__app-content-wrapper {
    flex-direction: column-reverse;
    gap: 30px;
  }
  .page-slot-games__app-image-wrapper {
    flex: none;
    max-width: 80%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .page-slot-games__app-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-slot-games__app-buttons {
    flex-direction: column;
    gap: 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games__faq-qtext {
    font-size: 16px;
  }
  details.page-slot-games__faq-item summary.page-slot-games__faq-question {
    padding: 15px;
  }
  details.page-slot-games__faq-item .page-slot-games__faq-answer {
    padding: 0 15px 15px;
  }
  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !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;
  }
}

@media (max-width: 480px) {
  .page-slot-games__main-title {
    font-size: clamp(22px, 8vw, 32px);
  }
  .page-slot-games__section-title {
    font-size: 24px;
  }
  .page-slot-games__hero-description {
    font-size: 16px;
  }
  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    font-size: 15px !important;
    padding: 10px 15px !important;
  }
  .page-slot-games__feature-title,
  .page-slot-games__game-title,
  .page-slot-games__promo-title,
  .page-slot-games__step-title {
    font-size: 18px;
  }
  .page-slot-games__faq-qtext {
    font-size: 15px;
  }
}