.page-slot-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Default text color for the page, as background is dark */
  background-color: #08160F; /* Main background color */
}

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

.page-slot-games__section {
  padding: 60px 0;
  position: relative;
}

.page-slot-games__section--intro .page-slot-games__container,
.page-slot-games__section--game-types .page-slot-games__container,
.page-slot-games__section--guide .page-slot-games__container,
.page-slot-games__section--promotions .page-slot-games__container,
.page-slot-games__section--conclusion .page-slot-games__container {
  background-color: #11271B; /* Card B G */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-slot-games__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-slot-games__section-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  margin-bottom: 40px;
}

/* Hero Section */
.page-slot-games__hero-section {
  position: relative;
  width: 100%;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding for visual spacing */
}

.page-slot-games__hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-slot-games__hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken video for text readability */
}

.page-slot-games__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text readability */
  border-radius: 12px;
  margin-top: 80px; /* Push content down to avoid header overlap */
}

.page-slot-games__hero-title {
  font-size: clamp(36px, 5vw, 64px);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 0 15px rgba(242, 193, 78, 0.7);
}

.page-slot-games__hero-description {
  font-size: clamp(18px, 2.5vw, 24px);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-slot-games__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-slot-games__button--primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-slot-games__button--secondary {
  background: #11271B; /* Card B G */
  color: #F2C14E; /* Gold */
  border: 2px solid #F2C14E;
}

.page-slot-games__button--secondary:hover {
  background: #F2C14E; /* Gold */
  color: #11271B; /* Card B G */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Intro Section */
.page-slot-games__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-slot-games__text-block {
  flex: 1;
  color: #A7D9B8; /* Text Secondary */
}

.page-slot-games__text-block p {
  margin-bottom: 15px;
}

.page-slot-games__text-block strong {
  color: #F2FFF6; /* Text Main */
}

.page-slot-games__image-block {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-slot-games__image-block--center {
  margin-top: 40px;
}

.page-slot-games__image-block img {
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  max-width: 100%;
  height: auto;
  display: block;
}

/* Features Section */
.page-slot-games__section--features {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  padding: 80px 0;
}

.page-slot-games__section--features .page-slot-games__section-title {
  color: #F2C14E; /* Gold */
}

.page-slot-games__section--features .page-slot-games__section-subtitle {
  color: #A7D9B8; /* Text Secondary */
}

.page-slot-games__features-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 */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-slot-games__feature-card img {
  
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px #57E38D); /* Glow */
}

.page-slot-games__feature-title {
  font-size: 22px;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-slot-games__feature-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
}

/* Game Types Section */
.page-slot-games__game-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games__game-type-card {
  background-color: #08160F; /* Background */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
}

.page-slot-games__game-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-slot-games__game-type-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-slot-games__game-type-title {
  font-size: 20px;
  color: #F2C14E; /* Gold */
  padding: 15px;
  margin-bottom: 0;
}

.page-slot-games__game-type-description {
  font-size: 15px;
  color: #A7D9B8; /* Text Secondary */
  padding: 0 15px 20px;
}

/* Guide Section */
.page-slot-games__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-slot-games__guide-step {
  background-color: #08160F; /* Background */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

.page-slot-games__step-icon {
  font-size: 48px;
  font-weight: bold;
  color: #57E38D; /* Glow */
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-slot-games__step-title {
  font-size: 24px;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-slot-games__step-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-slot-games__link-button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-slot-games__link-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

/* Strategy Section */
.page-slot-games__section--strategy {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  padding: 80px 0;
}

.page-slot-games__section--strategy .page-slot-games__section-title {
  color: #F2C14E; /* Gold */
}

.page-slot-games__section--strategy .page-slot-games__section-subtitle {
  color: #A7D9B8; /* Text Secondary */
}

.page-slot-games__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  gap: 25px;
}

.page-slot-games__strategy-item {
  background-color: #11271B; /* Card B G */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #57E38D; /* Glow */
}

.page-slot-games__strategy-item-title {
  font-size: 20px;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-slot-games__strategy-item-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-slot-games__promotion-card {
  background-color: #08160F; /* Background */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
}

.page-slot-games__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-slot-games__promotion-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-slot-games__promotion-title {
  font-size: 22px;
  color: #F2C14E; /* Gold */
  padding: 15px;
  margin-bottom: 0;
}

.page-slot-games__promotion-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  padding: 0 15px 20px;
}

/* FAQ Section */
.page-slot-games__section--faq {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  padding: 80px 0;
}

.page-slot-games__section--faq .page-slot-games__section-title {
  color: #F2C14E; /* Gold */
}

.page-slot-games__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__faq-item {
  background-color: #11271B; /* Card B G */
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-slot-games__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  list-style: none;
  outline: none;
  transition: background-color 0.3s ease;
}

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

.page-slot-games__faq-item summary:hover {
  background-color: rgba(46, 122, 78, 0.3); /* Darker green hover */
}

.page-slot-games__faq-qtext {
  flex-grow: 1;
}

.page-slot-games__faq-toggle {
  font-size: 24px;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-slot-games__faq-item[open] .page-slot-games__faq-toggle {
  content: '−';
}

.page-slot-games__faq-answer {
  padding: 10px 25px 20px;
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  border-top: 1px solid #1E3A2A; /* Divider */
}

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

/* Conclusion Section */
.page-slot-games__section--conclusion .page-slot-games__cta-buttons--center {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slot-games__content-wrapper {
    flex-direction: column;
  }

  .page-slot-games__image-block {
    margin-top: 30px;
  }

  .page-slot-games__hero-content {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .page-slot-games__section {
    padding: 40px 0;
  }

  .page-slot-games__section--intro .page-slot-games__container,
  .page-slot-games__section--game-types .page-slot-games__container,
  .page-slot-games__section--guide .page-slot-games__container,
  .page-slot-games__section--promotions .page-slot-games__container,
  .page-slot-games__section--conclusion .page-slot-games__container {
    padding: 20px;
  }

  .page-slot-games__hero-title {
    font-size: clamp(30px, 8vw, 48px);
  }

  .page-slot-games__hero-description {
    font-size: clamp(16px, 3vw, 20px);
  }

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

  .page-slot-games__button {
    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__hero-cta-buttons, 
  .page-slot-games__cta-buttons--center {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

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

  .page-slot-games__section-subtitle {
    font-size: clamp(14px, 3vw, 18px);
  }

  .page-slot-games__feature-card,
  .page-slot-games__game-type-card,
  .page-slot-games__guide-step,
  .page-slot-games__promotion-card {
    padding: 20px;
  }
  
  .page-slot-games img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-slot-games video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-slot-games__hero-video-wrapper,
  .page-slot-games__video-container,
  .page-slot-games__video-wrapper,
  .page-slot-games__image-block,
  .page-slot-games__content-wrapper,
  .page-slot-games__features-grid,
  .page-slot-games__game-types-grid,
  .page-slot-games__guide-steps,
  .page-slot-games__promotions-grid,
  .page-slot-games__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-slot-games__hero-section {
    padding-top: 10px !important;
  }
  .page-slot-games__faq-item summary {
    padding: 15px 20px;
    font-size: 16px;
  }
  .page-slot-games__faq-answer {
    padding: 10px 20px 15px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .page-slot-games__hero-title {
    font-size: clamp(28px, 9vw, 40px);
  }
  .page-slot-games__hero-description {
    font-size: clamp(15px, 4vw, 18px);
  }
  .page-slot-games__section-title {
    font-size: clamp(22px, 7vw, 30px);
  }
  .page-slot-games__section-subtitle {
    font-size: clamp(13px, 4vw, 16px);
  }
  .page-slot-games__button {
    font-size: 16px;
    padding: 12px 25px;
  }
}