.page-slot-games {
  color: #ffffff;
  background-color: #050E1A; /* From body background color */
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
}

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

.page-slot-games__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-slot-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-slot-games__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-slot-games__text-content--centered {
  text-align: center;
}

.page-slot-games__button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-slot-games__button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-slot-games__button--primary {
  background-color: #FFD700;
  color: #0A1931;
}

.page-slot-games__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-slot-games__button--secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
}

.page-slot-games__button--centered {
  display: block;
  margin: 30px auto 0 auto;
  max-width: 250px;
}

/* Hero Section */
.page-slot-games__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px);
}

.page-slot-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.6;
}

.page-slot-games__hero-container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  max-width: 900px;
}

.page-slot-games__hero-title {
  font-size: 3.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.page-slot-games__hero-description {
  font-size: 1.4em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-slot-games__hero-button {
  padding: 15px 35px;
  font-size: 1.2em;
  border-radius: 50px;
}

/* Intro Section */
.page-slot-games__intro-section {
  padding: 60px 0;
  background-color: #0A1931;
}

/* Why Choose Section */
.page-slot-games__why-choose-section {
  padding: 80px 0;
  background-color: #050E1A;
}

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

.page-slot-games__card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-slot-games__card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 215, 0, 0.1);
}

.page-slot-games__card-image {
  width: 100%;
  max-width: 400px; /* Max width to ensure it doesn't get too big */
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-slot-games__card-title {
  font-size: 1.7em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-slot-games__card-description {
  font-size: 1em;
  line-height: 1.7;
  color: #cccccc;
  flex-grow: 1;
}

/* Types Section */
.page-slot-games__types-section {
  padding: 80px 0;
  background-color: #0A1931;
}

.page-slot-games__list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-slot-games__list-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #FFD700;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.page-slot-games__list-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-slot-games__list-item-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-slot-games__list-item-description {
  font-size: 1.1em;
  color: #f0f0f0;
  line-height: 1.7;
}

/* Guide Section */
.page-slot-games__guide-section {
  padding: 80px 0;
  background-color: #050E1A;
}

.page-slot-games__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-slot-games__steps-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.page-slot-games__steps-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 5px;
}

.page-slot-games__steps-description {
  font-size: 1.1em;
  color: #cccccc;
  line-height: 1.7;
}

/* Promotions Section */
.page-slot-games__promotions-section {
  padding: 80px 0;
  background-color: #0A1931;
}

/* Mobile Section */
.page-slot-games__mobile-section {
  padding: 80px 0;
  background-color: #050E1A;
}

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

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

.page-slot-games__mobile-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-slot-games__mobile-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  min-width: 200px;
  min-height: 300px;
}

/* FAQ Section */
.page-slot-games__faq-section {
  padding: 80px 0;
  background-color: #0A1931;
}

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

.page-slot-games__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 15px;
}

.page-slot-games__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-slot-games__faq-answer {
  font-size: 1.1em;
  color: #cccccc;
  line-height: 1.7;
}

/* CTA Section */
.page-slot-games__cta-section {
  padding: 80px 0;
  background-color: #050E1A;
  text-align: center;
}

.page-slot-games__cta-section .page-slot-games__section-title {
  margin-bottom: 20px;
}

.page-slot-games__cta-section .page-slot-games__text-content {
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games__hero-title {
    font-size: 3em;
  }
  .page-slot-games__hero-description {
    font-size: 1.2em;
  }
  .page-slot-games__section-title {
    font-size: 2em;
  }
  .page-slot-games__card-title {
    font-size: 1.5em;
  }
  .page-slot-games__list-item-title {
    font-size: 1.6em;
  }
  .page-slot-games__steps-title {
    font-size: 1.8em;
  }
  .page-slot-games__faq-question {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-slot-games__hero-section {
    min-height: 500px;
    padding-top: var(--header-offset, 200px); /* Adjusted for mobile header offset */
  }
  .page-slot-games__hero-title {
    font-size: 2.5em;
  }
  .page-slot-games__hero-description {
    font-size: 1em;
  }
  .page-slot-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-slot-games__hero-button {
    width: 100%;
    max-width: 300px;
    padding: 12px 20px;
    font-size: 1.1em;
  }
  .page-slot-games__section-title {
    font-size: 1.8em;
  }
  .page-slot-games__grid-cards {
    grid-template-columns: 1fr;
  }
  .page-slot-games__mobile-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-slot-games__mobile-image-wrapper {
    order: -1; /* Image appears above text on mobile */
  }
  .page-slot-games__button--centered {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-slot-games__hero-title {
    font-size: 2em;
  }
  .page-slot-games__hero-description {
    font-size: 0.9em;
  }
  .page-slot-games__section-title {
    font-size: 1.5em;
  }
  .page-slot-games__card-title {
    font-size: 1.3em;
  }
  .page-slot-games__list-item-title {
    font-size: 1.4em;
  }
  .page-slot-games__steps-title {
    font-size: 1.6em;
  }
  .page-slot-games__faq-question {
    font-size: 1.2em;
  }
}