/* style/slot-games-jackpot-slots.css */
.page-slot-games-jackpot-slots {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #1a1a1a; /* Body background from shared.css */
}

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

.page-slot-games-jackpot-slots__section-title {
  font-size: 2.5em;
  color: #017439;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-slot-games-jackpot-slots__section-subtitle {
  font-size: 1.2em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
}

.page-slot-games-jackpot-slots__text-block {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-slot-games-jackpot-slots__text-center {
  text-align: center;
}

.page-slot-games-jackpot-slots__mt-40 {
  margin-top: 40px;
}

/* Buttons */
.page-slot-games-jackpot-slots__btn-primary,
.page-slot-games-jackpot-slots__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-slot-games-jackpot-slots__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-slot-games-jackpot-slots__btn-primary:hover {
  background-color: #e02020;
  border-color: #e02020;
}

.page-slot-games-jackpot-slots__btn-secondary {
  background-color: transparent;
  color: #017439;
  border: 2px solid #017439;
}

.page-slot-games-jackpot-slots__btn-secondary:hover {
  background-color: #017439;
  color: #ffffff;
}

/* Hero Section */
.page-slot-games-jackpot-slots__hero-section {
  position: relative;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background-color: #1a1a1a; /* Dark background */
  color: #ffffff;
  overflow: hidden;
}

.page-slot-games-jackpot-slots__hero-section .page-slot-games-jackpot-slots__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-slot-games-jackpot-slots__hero-content {
  flex: 1;
  min-width: 300px;
}

.page-slot-games-jackpot-slots__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFF00;
  line-height: 1.2;
}

.page-slot-games-jackpot-slots__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-slot-games-jackpot-slots__hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-slot-games-jackpot-slots__hero-image-wrapper {
  flex: 1;
  min-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-slot-games-jackpot-slots__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* About Section */
.page-slot-games-jackpot-slots__about-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Dark background */
  color: #ffffff;
}

/* Game Showcase Section */
.page-slot-games-jackpot-slots__game-showcase-section {
  padding: 60px 0;
  background-color: #0d0d0d;
  color: #ffffff;
}

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

.page-slot-games-jackpot-slots__game-card {
  background-color: #333333; /* Dark card background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
}

.page-slot-games-jackpot-slots__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-slot-games-jackpot-slots__game-title {
  font-size: 1.8em;
  color: #017439;
  margin-bottom: 10px;
}

.page-slot-games-jackpot-slots__game-title a {
  color: #017439;
  text-decoration: none;
}

.page-slot-games-jackpot-slots__game-title a:hover {
  text-decoration: underline;
}

.page-slot-games-jackpot-slots__game-description {
  font-size: 1em;
  color: #cccccc;
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-slot-games-jackpot-slots__game-btn {
  margin-top: 10px;
}

/* Advantages Section */
.page-slot-games-jackpot-slots__advantages-section {
  padding: 60px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-slot-games-jackpot-slots__advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-slot-games-jackpot-slots__advantage-card {
  background-color: #017439; /* Brand color background */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff; /* White text for brand color background */
}

.page-slot-games-jackpot-slots__advantage-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-slot-games-jackpot-slots__advantage-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #FFFF00;
}

.page-slot-games-jackpot-slots__advantage-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* How To Play Section */
.page-slot-games-jackpot-slots__how-to-play-section {
  padding: 60px 0;
  background-color: #0d0d0d;
  color: #ffffff;
}

.page-slot-games-jackpot-slots__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-slot-games-jackpot-slots__step-card {
  background-color: #333333; /* Dark card background */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  position: relative;
}

.page-slot-games-jackpot-slots__step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  border: 3px solid #1a1a1a;
}

.page-slot-games-jackpot-slots__step-title {
  font-size: 1.6em;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #017439;
}

.page-slot-games-jackpot-slots__step-description {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-slot-games-jackpot-slots__step-btn {
  margin-top: 15px;
}

/* Tips Section */
.page-slot-games-jackpot-slots__tips-section {
  padding: 60px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-slot-games-jackpot-slots__tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-slot-games-jackpot-slots__tip-item {
  background-color: #333333;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-slot-games-jackpot-slots__tip-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 10px;
}

.page-slot-games-jackpot-slots__tip-description {
  font-size: 1em;
  color: #cccccc;
}

/* CTA Section */
.page-slot-games-jackpot-slots__cta-section {
  padding: 80px 0;
  background-color: #017439; /* Brand color background */
  color: #ffffff;
  text-align: center;
}

.page-slot-games-jackpot-slots__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFF00;
}

.page-slot-games-jackpot-slots__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-slot-games-jackpot-slots__cta-button {
  font-size: 1.2em;
  padding: 15px 35px;
  border-radius: 10px;
}

/* FAQ Section */
.page-slot-games-jackpot-slots__faq-section {
  padding: 60px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-slot-games-jackpot-slots__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-slot-games-jackpot-slots__faq-item {
  background-color: #333333;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-slot-games-jackpot-slots__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFFF00; /* Login/Register font color for question */
  cursor: pointer;
  background-color: #017439; /* Brand color for question background */
  transition: background-color 0.3s ease;
}

.page-slot-games-jackpot-slots__faq-question:hover {
  background-color: #015f2f;
}

.page-slot-games-jackpot-slots__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-slot-games-jackpot-slots__faq-item.active .page-slot-games-jackpot-slots__faq-toggle {
  transform: rotate(45deg);
}

.page-slot-games-jackpot-slots__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: #cccccc;
  background-color: #333333;
}

.page-slot-games-jackpot-slots__faq-item.active .page-slot-games-jackpot-slots__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-slot-games-jackpot-slots__faq-answer p {
  margin: 0;
  font-size: 1em;
  color: #cccccc;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games-jackpot-slots__hero-title {
    font-size: 2.8em;
  }
  .page-slot-games-jackpot-slots__hero-description {
    font-size: 1.1em;
  }
  .page-slot-games-jackpot-slots__section-title {
    font-size: 2em;
  }
  .page-slot-games-jackpot-slots__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-slot-games-jackpot-slots {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-slot-games-jackpot-slots__hero-section .page-slot-games-jackpot-slots__container {
    flex-direction: column;
    text-align: center;
  }
  .page-slot-games-jackpot-slots__hero-content,
  .page-slot-games-jackpot-slots__hero-image-wrapper {
    min-width: unset;
    width: 100%;
  }
  .page-slot-games-jackpot-slots__hero-title {
    font-size: 2.2em;
  }
  .page-slot-games-jackpot-slots__hero-description {
    font-size: 1em;
  }
  .page-slot-games-jackpot-slots__hero-buttons {
    justify-content: center;
  }
  .page-slot-games-jackpot-slots__btn-primary,
  .page-slot-games-jackpot-slots__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games-jackpot-slots__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-slot-games-jackpot-slots__section-title {
    font-size: 1.8em;
  }
  .page-slot-games-jackpot-slots__section-subtitle {
    font-size: 1em;
  }
  .page-slot-games-jackpot-slots__game-image {
    height: 200px;
  }
  .page-slot-games-jackpot-slots__advantage-card,
  .page-slot-games-jackpot-slots__step-card {
    padding: 20px;
  }
  .page-slot-games-jackpot-slots__cta-title {
    font-size: 1.8em;
  }
  .page-slot-games-jackpot-slots__cta-description {
    font-size: 1em;
  }
  .page-slot-games-jackpot-slots__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Mobile specific image/video/container rules */
  .page-slot-games-jackpot-slots img,
  .page-slot-games-jackpot-slots video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-slot-games-jackpot-slots__section,
  .page-slot-games-jackpot-slots__card,
  .page-slot-games-jackpot-slots__container,
  .page-slot-games-jackpot-slots__hero-image-wrapper,
  .page-slot-games-jackpot-slots__video-section,
  .page-slot-games-jackpot-slots__video-container,
  .page-slot-games-jackpot-slots__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Ensure padding-top for video section if it exists */
  .page-slot-games-jackpot-slots__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }

  /* Adjust padding for main sections on mobile */
  .page-slot-games-jackpot-slots__hero-section,
  .page-slot-games-jackpot-slots__about-section,
  .page-slot-games-jackpot-slots__game-showcase-section,
  .page-slot-games-jackpot-slots__advantages-section,
  .page-slot-games-jackpot-slots__how-to-play-section,
  .page-slot-games-jackpot-slots__tips-section,
  .page-slot-games-jackpot-slots__cta-section,
  .page-slot-games-jackpot-slots__faq-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games-jackpot-slots__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-slot-games-jackpot-slots__faq-answer {
    padding: 0 20px;
  }

  .page-slot-games-jackpot-slots__faq-item.active .page-slot-games-jackpot-slots__faq-answer {
    padding: 15px 20px;
  }
}