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

.page-slot-games__section {
  padding: 60px 0;
  text-align: center;
}

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

.page-slot-games__dark-section {
  background-color: #1A2E47;
  color: #ffffff;
}

.page-slot-games__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-slot-games__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: inherit; /* Inherit color from parent section */
}

.page-slot-games__dark-section .page-slot-games__section-title {
  color: #FFD700;
}

.page-slot-games__section-intro {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px;
  color: inherit;
}

.page-slot-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, #1A2E47, #3a506b);
  overflow: hidden;
}

.page-slot-games__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-slot-games__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-slot-games__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-slot-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: #ffffff;
}

.page-slot-games__hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games__hero-description {
  font-size: 20px;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

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

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

.page-slot-games__btn-primary {
  background: #FFD700;
  color: #1A2E47;
  border: 2px solid #FFD700;
}

.page-slot-games__btn-primary:hover {
  background: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-slot-games__btn-secondary {
  background: #1A2E47;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-slot-games__btn-secondary:hover {
  background: #2a415b;
  border-color: #FFD700;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

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

.page-slot-games__feature-item,
.page-slot-games__game-type-card,
.page-slot-games__promo-card,
.page-slot-games__step-item,
.page-slot-games__security-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slot-games__light-bg .page-slot-games__feature-item,
.page-slot-games__light-bg .page-slot-games__game-type-card,
.page-slot-games__light-bg .page-slot-games__promo-card,
.page-slot-games__light-bg .page-slot-games__step-item,
.page-slot-games__light-bg .page-slot-games__security-item {
  background: #f8f8f8;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-slot-games__feature-item:hover,
.page-slot-games__game-type-card:hover,
.page-slot-games__promo-card:hover,
.page-slot-games__step-item:hover,
.page-slot-games__security-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.page-slot-games__feature-title,
.page-slot-games__game-type-title,
.page-slot-games__promo-title,
.page-slot-games__step-title,
.page-slot-games__security-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-slot-games__light-bg .page-slot-games__feature-title,
.page-slot-games__light-bg .page-slot-games__game-type-title,
.page-slot-games__light-bg .page-slot-games__promo-title,
.page-slot-games__light-bg .page-slot-games__step-title,
.page-slot-games__light-bg .page-slot-games__security-title {
  color: #1A2E47;
}

.page-slot-games__game-type-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-slot-games__cta-center {
  margin-top: 50px;
}

.page-slot-games__btn-link {
  display: inline-block;
  margin-top: 20px;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 5px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-slot-games__btn-link:hover {
  color: #e6c200;
  border-color: #e6c200;
}

.page-slot-games__light-bg .page-slot-games__btn-link {
  color: #1A2E47;
  border-color: #1A2E47;
}

.page-slot-games__light-bg .page-slot-games__btn-link:hover {
  color: #0d1a29;
  border-color: #0d1a29;
}

.page-slot-games__step-number {
  font-size: 48px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
  line-height: 1;
}

.page-slot-games__light-bg .page-slot-games__step-number {
  color: #1A2E47;
}

.page-slot-games__btn-small {
  display: inline-block;
  padding: 10px 20px;
  background: #FFD700;
  color: #1A2E47;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.page-slot-games__btn-small:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-slot-games__dark-section .page-slot-games__btn-small {
  background: #FFD700;
  color: #1A2E47;
}

.page-slot-games__mobile-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
  text-align: left;
}

.page-slot-games__mobile-text {
  flex: 1;
}

.page-slot-games__mobile-subtitle {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-slot-games__mobile-image {
  flex: 1;
  max-width: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-slot-games__mobile-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* FAQ Section */
.page-slot-games__faq-section {
  background-color: #1A2E47;
  color: #ffffff;
}

.page-slot-games__faq-section .page-slot-games__section-title {
  color: #FFD700;
}

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

.page-slot-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #2a415b;
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #2a415b;
  border: 1px solid #3c5470;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #ffffff;
}

.page-slot-games__faq-question:hover {
  background-color: #3c5470;
  border-color: #4e6a8d;
}

.page-slot-games__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #FFD700;
  pointer-events: none;
}

.page-slot-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-slot-games__faq-item.active .page-slot-games__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg); /* Change to X or rotate */
}

.page-slot-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: #e0e0e0;
  background-color: #1A2E47;
  border-radius: 0 0 8px 8px;
}

.page-slot-games__faq-item.active .page-slot-games__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
}

.page-slot-games__cta-final-section {
  background: linear-gradient(135deg, #1A2E47, #FFD700);
  color: #ffffff;
  padding: 80px 0;
}

.page-slot-games__cta-final-content .page-slot-games__section-title {
  color: #1A2E47;
}

.page-slot-games__cta-final-content .page-slot-games__section-intro {
  color: #1A2E47;
}

.page-slot-games__cta-final-content .page-slot-games__cta-button {
  background: #1A2E47;
  color: #FFD700;
  border-color: #1A2E47;
}

.page-slot-games__cta-final-content .page-slot-games__cta-button:hover {
  background: #3c5470;
  color: #FFD700;
  border-color: #3c5470;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-slot-games__hero-title {
    font-size: 40px;
  }
  .page-slot-games__section-title {
    font-size: 30px;
  }
  .page-slot-games__mobile-content {
    flex-direction: column;
    text-align: center;
  }
  .page-slot-games__mobile-text {
    order: 2;
  }
  .page-slot-games__mobile-image {
    order: 1;
    margin-bottom: 30px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-slot-games__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games__hero-image img {
    border-radius: 8px;
  }
  .page-slot-games__hero-title {
    font-size: 32px;
  }
  .page-slot-games__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-slot-games__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-slot-games__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-slot-games__section {
    padding: 40px 0;
  }
  .page-slot-games__section-title {
    font-size: 26px;
  }
  .page-slot-games__section-intro {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-slot-games__features-grid,
  .page-slot-games__game-types-grid,
  .page-slot-games__promotions-grid,
  .page-slot-games__steps-grid,
  .page-slot-games__security-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  .page-slot-games__feature-item,
  .page-slot-games__game-type-card,
  .page-slot-games__promo-card,
  .page-slot-games__step-item,
  .page-slot-games__security-item {
    padding: 25px;
  }
  .page-slot-games__feature-title,
  .page-slot-games__game-type-title,
  .page-slot-games__promo-title,
  .page-slot-games__step-title,
  .page-slot-games__security-title {
    font-size: 20px;
  }
  .page-slot-games__game-type-card img,
  .page-slot-games__mobile-image img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-slot-games__container {
    padding: 0 15px;
  }
  .page-slot-games__mobile-subtitle {
    font-size: 24px;
  }
  .page-slot-games__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-slot-games__faq-question h3 {
    font-size: 16px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-slot-games__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-slot-games__faq-answer {
    padding: 0 15px;
  }
  .page-slot-games__faq-item.active .page-slot-games__faq-answer {
    padding: 15px !important;
  }
  .page-slot-games__cta-final-section {
    padding: 60px 0;
  }
}

/* Global image responsiveness for content area */
.page-slot-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-slot-games__section,
.page-slot-games__card,
.page-slot-games__container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 768px) {
  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !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;
  }
  .page-slot-games__cta-buttons,
  .page-slot-games__button-group,
  .page-slot-games__btn-container {
    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__cta-buttons {
    flex-direction: column;
  }
  .page-slot-games__hero-section {
    padding-top: var(--header-offset, 120px) !important;
  }
}