.page-slot-games {
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding, relies on body padding-top from shared.css */
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.page-slot-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 15px 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  margin-bottom: 20px;
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  aspect-ratio: 16/9; /* Default aspect ratio for hero */
  object-fit: cover;
  object-position: center;
}

.page-slot-games__hero-content {
  width: 100%;
  max-width: 800px; /* Constrain text width */
}

.page-slot-games__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* Adjust clamp for H1 on inner page */
  font-weight: bold;
  color: #F2C14E;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-slot-games__description {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-slot-games__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  min-width: 150px;
  text-align: center;
  border: 1px solid transparent;
  font-size: 1rem;
}

.page-slot-games__btn--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
}

.page-slot-games__btn--primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-slot-games__btn--secondary {
  background-color: #111111;
  color: #F2C14E;
  border-color: #3A2A12;
}

.page-slot-games__btn--secondary:hover {
  background-color: #222222;
  border-color: #F2C14E;
  color: #FFD36B;
}

.page-slot-games__btn--text {
  background: none;
  color: #F2C14E;
  border: none;
  padding: 0;
  min-width: unset;
  text-decoration: underline;
}

.page-slot-games__btn--text:hover {
  color: #FFD36B;
  text-decoration: none;
}

.page-slot-games__section {
  padding: 40px 15px;
  max-width: 1300px;
  margin: 0 auto;
}

.page-slot-games__section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: #F2C14E;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.3;
}

.page-slot-games__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.page-slot-games__text-content {
  flex: 1;
  max-width: 700px;
  text-align: left;
}

.page-slot-games__text-content p {
  margin-bottom: 15px;
  font-size: 1rem;
}

.page-slot-games__image-content {
  flex: 1;
  max-width: 600px;
  text-align: center;
}

.page-slot-games__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-slot-games__advantages-grid,
.page-slot-games__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.page-slot-games__advantage-card,
.page-slot-games__step-card {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__advantage-card:hover,
.page-slot-games__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.2);
}

.page-slot-games__card-title {
  font-size: 1.3rem;
  color: #FFD36B;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-slot-games__advantage-card p,
.page-slot-games__step-card p {
  font-size: 0.95rem;
  color: #FFF6D6;
}

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

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

.page-slot-games__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  transition: box-shadow 0.3s ease;
}

.page-slot-games__faq-item:hover {
  box-shadow: 0 4px 12px rgba(255, 211, 107, 0.15);
}

.page-slot-games__faq-question {
  font-size: 1.15rem;
  color: #F2C14E;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-slot-games__faq-answer {
  font-size: 0.95rem;
  color: #FFF6D6;
}

/* --- Responsive Styles --- */
@media (min-width: 769px) {
  .page-slot-games__hero-section {
    padding: 40px 30px 60px;
  }

  .page-slot-games__hero-image-wrapper {
    margin-bottom: 30px;
  }

  .page-slot-games__content-wrapper {
    flex-direction: row;
    text-align: left;
  }

  .page-slot-games__text-content {
    text-align: left;
    padding-right: 30px;
  }

  .page-slot-games__image-content {
    padding-left: 30px;
  }

  .page-slot-games__advantages-grid,
  .page-slot-games__steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .page-slot-games {
    padding-left: 12px;
    padding-right: 12px;
  }
  .page-slot-games__hero-section {
    padding: 20px 0 30px;
  }
  .page-slot-games__hero-image {
    aspect-ratio: 16/9;
  }
  .page-slot-games__main-title {
    font-size: clamp(1.6rem, 6vw, 2.5rem);
  }
  .page-slot-games__description {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
  }
  .page-slot-games__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-slot-games__btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-slot-games__section {
    padding: 30px 0;
  }
  .page-slot-games__section-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }
  .page-slot-games__content-wrapper {
    flex-direction: column;
  }
  .page-slot-games__text-content, .page-slot-games__image-content {
    max-width: 100%;
    padding: 0;
  }
  .page-slot-games__image {
    width: 100%;
    height: auto;
    max-width: 100%; /* Ensure images don't overflow */
  }
  .page-slot-games__advantages-grid, .page-slot-games__steps-grid {
    grid-template-columns: 1fr; /* Single column on small screens */
  }
  .page-slot-games__card-title {
    font-size: 1.2rem;
  }
  .page-slot-games__faq-question {
    font-size: 1.05rem;
  }
  .page-slot-games__text-content p, .page-slot-games__faq-answer, .page-slot-games__advantage-card p, .page-slot-games__step-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 549px) {
  .page-slot-games__main-title {
    font-size: clamp(1.4rem, 7vw, 2.2rem);
  }
  .page-slot-games__description {
    font-size: clamp(0.85rem, 4vw, 1rem);
  }
  .page-slot-games__section-title {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }
  .page-slot-games__text-content p, .page-slot-games__faq-answer, .page-slot-games__advantage-card p, .page-slot-games__step-card p {
    font-size: 0.85rem;
  }
}

/* Ensure content images are responsive and don't overflow */
@media (max-width: 768px) {
  .page-slot-games img {
    max-width: 100% !important;
    height: auto !important;
  }
}

/* CSS for content area images, ensuring minimum size */
.page-slot-games__image {
  min-width: 200px;
  min-height: 200px;
}

/* Styles for images within cards/grids, ensuring minimum size */
.page-slot-games__advantage-card img,
.page-slot-games__step-card img {
  min-width: 200px;
  min-height: 200px;
  width: 100%; /* Occupy card width */
  height: auto;
}

/* Adjustments for text contrast */
.page-slot-games p, .page-slot-games li, .page-slot-games__faq-answer {
  color: #FFF6D6; /* Ensure text main color */
}