.page-slot-games {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-slot-games__dark-bg {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-slot-games__card {
  background-color: #11271B;
  color: #F2FFF6;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-slot-games__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-slot-games__main-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.page-slot-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0;
  overflow: hidden;
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Subtle darkening for text contrast */
}

.page-slot-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  margin-top: -150px; /* Pull content slightly over image */
  background: linear-gradient(180deg, rgba(8, 22, 15, 0.8) 0%, #08160F 100%);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-slot-games__hero-description {
  font-size: clamp(16px, 2vw, 20px);
  color: #A7D9B8;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-slot-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-slot-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 8px 20px rgba(42, 209, 111, 0.6);
  transform: translateY(-3px);
}

.page-slot-games__btn-secondary {
  background: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
  box-shadow: 0 0 10px rgba(42, 209, 111, 0.2);
}

.page-slot-games__btn-secondary:hover {
  background-color: rgba(42, 209, 111, 0.1);
  color: #F2FFF6;
  box-shadow: 0 0 15px rgba(42, 209, 111, 0.4);
  transform: translateY(-3px);
}

.page-slot-games__btn-primary--large {
  padding: 18px 40px;
  font-size: 20px;
}

.page-slot-games__btn-primary--small {
  padding: 12px 25px;
  font-size: 16px;
}

.page-slot-games__introduction-section,
.page-slot-games__game-types-section,
.page-slot-games__benefits-section,
.page-slot-games__guide-section,
.page-slot-games__strategy-section,
.page-slot-games__faq-section,
.page-slot-games__cta-bottom-section {
  padding: 60px 0;
}

.page-slot-games__text-block {
  font-size: 17px;
  color: #F2FFF6;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__image-text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

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

.page-slot-games__content-image--center {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-slot-games__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-slot-games__card-title {
  font-size: 22px;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  text-align: center;
}

.page-slot-games__card-text {
  font-size: 16px;
  color: #A7D9B8;
  text-align: center;
}

.page-slot-games__benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-slot-games__step-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 50px;
}

.page-slot-games__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  border: 4px solid #08160F;
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.5);
}

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

.page-slot-games__list-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  padding: 20px 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.page-slot-games__list-text {
  font-size: 16px;
  color: #A7D9B8;
}

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

.page-slot-games__faq-item {
  margin-bottom: 15px;
  padding: 0;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  background-color: #11271B;
}

.page-slot-games__faq-item summary {
  list-style: none;
}

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

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 600;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #11271B;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.page-slot-games__faq-question:hover {
  background-color: #1E3A2A;
}

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

.page-slot-games__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F;
}

.page-slot-games__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 16px;
  color: #A7D9B8;
}

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

.page-slot-games__cta-bottom-section {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-slot-games__hero-content {
    margin-top: -100px;
    padding: 15px;
  }

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

  .page-slot-games__main-title {
    font-size: clamp(28px, 4.5vw, 48px);
  }

  .page-slot-games__text-block {
    font-size: 16px;
  }

  .page-slot-games__image-text-block {
    flex-direction: column;
  }
}

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

  .page-slot-games__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-slot-games__hero-content {
    margin-top: -80px;
    padding: 15px;
  }

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

  .page-slot-games__hero-description {
    font-size: 15px;
  }

  .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;
    font-size: 16px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-slot-games__introduction-section,
  .page-slot-games__game-types-section,
  .page-slot-games__benefits-section,
  .page-slot-games__guide-section,
  .page-slot-games__strategy-section,
  .page-slot-games__faq-section,
  .page-slot-games__cta-bottom-section {
    padding: 40px 0;
  }

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

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

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

  .page-slot-games__game-cards-grid,
  .page-slot-games__benefits-grid,
  .page-slot-games__steps-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

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

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

  .page-slot-games__card-text {
    font-size: 15px;
  }

  .page-slot-games__step-number {
    width: 50px;
    height: 50px;
    font-size: 24px;
    top: -25px;
  }

  .page-slot-games__list-title {
    font-size: 18px;
  }

  .page-slot-games__list-text {
    font-size: 15px;
  }

  .page-slot-games__faq-question {
    font-size: 16px;
    padding: 15px 20px;
  }

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

  /* Image responsive rules */
  .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,
  .page-slot-games__hero-section,
  .page-slot-games__introduction-section,
  .page-slot-games__game-types-section,
  .page-slot-games__benefits-section,
  .page-slot-games__guide-section,
  .page-slot-games__strategy-section,
  .page-slot-games__faq-section,
  .page-slot-games__cta-bottom-section {
    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-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .page-slot-games__hero-content {
    max-width: calc(100% - 30px) !important; /* Account for container padding */
    width: calc(100% - 30px) !important;
    box-sizing: border-box !important;
  }

  /* Video responsive rules - if any video elements are added later */
  .page-slot-games video,
  .page-slot-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-slot-games__video-section,
  .page-slot-games__video-container,
  .page-slot-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-slot-games__video-section {
    padding-top: 10px !important;
  }
}