.page-slot-games {
  background-color: var(--deep-navy);
  color: var(--text-main);
  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__section-spacing {
  padding: 60px 0;
}

.page-slot-games__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--gold-color);
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-slot-games__paragraph {
  font-size: 17px;
  margin-bottom: 20px;
  text-align: justify;
  color: var(--text-main);
}

.page-slot-games__text-secondary {
  color: var(--text-secondary);
}

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

/* HERO Section */
.page-slot-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px;
  overflow: hidden;
}

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

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

.page-slot-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
}

.page-slot-games__main-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--gold-color);
  text-shadow: 0 0 15px rgba(242, 193, 78, 0.7);
  max-width: 100%; /* Ensure H1 doesn't overflow */
}

.page-slot-games__hero-description {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

/* Dark Section */
.page-slot-games__dark-section {
  background-color: var(--card-bg);
}

/* Grid Layout */
.page-slot-games__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games__card {
  background: var(--deep-navy);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-main);
}

.page-slot-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 20px var(--glow-color);
}

.page-slot-games__card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--divider-color);
  max-width: 100%;
  display: block;
}

.page-slot-games__card-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--gold-color);
}

.page-slot-games__card-description {
  font-size: 15px;
  color: var(--text-secondary);
  text-align: center;
}

/* Provider List */
.page-slot-games__provider-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-slot-games__provider-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 16px;
  color: var(--text-main);
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-slot-games__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  max-width: 100%;
}

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

.page-slot-games__advantage-item {
  background: var(--deep-navy);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-main);
}

.page-slot-games__advantage-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--gold-color);
}

.page-slot-games__advantage-description {
  font-size: 16px;
  color: var(--text-secondary);
}

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

.page-slot-games__step-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-main);
}

.page-slot-games__step-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--gold-color);
}

.page-slot-games__step-description {
  font-size: 16px;
  color: var(--text-secondary);
}

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

.page-slot-games__promo-card {
  background: var(--deep-navy);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main);
}

.page-slot-games__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 20px var(--glow-color);
}

.page-slot-games__promo-card img {
  width: 100%;
  
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--divider-color);
  max-width: 100%;
  display: block;
}

.page-slot-games__promo-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--gold-color);
}

.page-slot-games__promo-description {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.page-slot-games__promo-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games__promo-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.page-slot-games__feature-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-main);
}

.page-slot-games__feature-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--gold-color);
}

.page-slot-games__feature-description {
  font-size: 16px;
  color: var(--text-secondary);
}

/* FAQ Section */
details.page-slot-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--deep-navy);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
details.page-slot-games__faq-item summary.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--text-main);
  font-weight: 600;
  font-size: 17px;
}
details.page-slot-games__faq-item summary.page-slot-games__faq-question::-webkit-details-marker {
  display: none;
}
details.page-slot-games__faq-item summary.page-slot-games__faq-question:hover {
  background: rgba(var(--primary-color-rgb), 0.2);
}
.page-slot-games__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main);
}
.page-slot-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--gold-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
  line-height: 1;
}
details.page-slot-games__faq-item .page-slot-games__faq-answer {
  padding: 0 25px 20px;
  background: var(--card-bg);
  border-radius: 0 0 8px 8px;
  color: var(--text-secondary);
}

/* Final CTA Section */
.page-slot-games__cta-final-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.page-slot-games__cta-final-section .page-slot-games__section-title {
  color: #ffffff;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.page-slot-games__cta-final-section .page-slot-games__paragraph {
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-slot-games__cta-final-section .page-slot-games__cta-button {
  background: var(--gold-color);
  color: var(--primary-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-slot-games__cta-final-section .page-slot-games__cta-button:hover {
  background: #fff;
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games__main-title {
    font-size: 40px;
  }
  .page-slot-games__section-title {
    font-size: 30px;
  }
  .page-slot-games__hero-description {
    font-size: 18px;
  }
  .page-slot-games__paragraph {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-slot-games__section-spacing {
    padding: 40px 0;
  }
  .page-slot-games__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games__hero-image-wrapper {
    border-radius: 8px;
  }
  .page-slot-games__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-slot-games__hero-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .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;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games__section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .page-slot-games__paragraph {
    font-size: 15px;
  }
  .page-slot-games__grid-layout, .page-slot-games__advantages-grid, .page-slot-games__guide-steps, .page-slot-games__promo-grid, .page-slot-games__feature-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-slot-games__card, .page-slot-games__advantage-item, .page-slot-games__step-item, .page-slot-games__promo-card, .page-slot-games__feature-item {
    padding: 20px;
  }
  .page-slot-games__card img, .page-slot-games__promo-card img, .page-slot-games__image-full-width {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-slot-games__card-title, .page-slot-games__advantage-title, .page-slot-games__step-title, .page-slot-games__promo-title, .page-slot-games__feature-title {
    font-size: 20px;
  }
  .page-slot-games__promo-button {
    font-size: 15px;
    padding: 10px 20px;
    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;
  }
  details.page-slot-games__faq-item summary.page-slot-games__faq-question {
    padding: 15px;
  }
  .page-slot-games__faq-qtext {
    font-size: 16px;
  }
  .page-slot-games__faq-toggle {
    font-size: 24px;
    width: 24px;
  }
  details.page-slot-games__faq-item .page-slot-games__faq-answer {
    padding: 0 15px 15px;
  }
  .page-slot-games__cta-final-section {
    padding: 60px 0;
  }
  .page-slot-games__cta-final-section .page-slot-games__section-title {
    font-size: 28px;
  }
  .page-slot-games__cta-final-section .page-slot-games__paragraph {
    font-size: 16px;
  }
  .page-slot-games__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games__hero-container, .page-slot-games__introduction-section, .page-slot-games__types-section, .page-slot-games__providers-section, .page-slot-games__advantages-section, .page-slot-games__guide-section, .page-slot-games__promotions-section, .page-slot-games__security-section, .page-slot-games__faq-section, .page-slot-games__cta-final-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .page-slot-games__main-title {
    font-size: 28px;
  }
  .page-slot-games__section-title {
    font-size: 24px;
  }
  .page-slot-games__cta-button {
    font-size: 15px;
    padding: 10px 20px;
  }
  .page-slot-games__card-title, .page-slot-games__advantage-title, .page-slot-games__step-title, .page-slot-games__promo-title, .page-slot-games__feature-title {
    font-size: 18px;
  }
  .page-slot-games__faq-qtext {
    font-size: 15px;
  }
}