.page-slot-games {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #121212;
}

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

.page-slot-games__section-title {
  font-size: 2.5rem;
  color: #FFD700; /* Primary brand color for titles */
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

.page-slot-games__section-description {
  font-size: 1.1rem;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  box-sizing: border-box;
}

.page-slot-games__btn-primary {
  background-color: #FFD700;
  color: #121212; /* Dark text for primary button */
}

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

.page-slot-games__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

.page-slot-games__btn-secondary:hover {
  background-color: #FFD700;
  color: #121212;
  transform: translateY(-2px);
}

/* Hero Section */
.page-slot-games__hero-section {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  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;
}

.page-slot-games__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 2;
}

.page-slot-games__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

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

.page-slot-games__hero-description {
  font-size: 1.4rem;
  color: #f0f0f0;
  margin-bottom: 40px;
  line-height: 1.5;
}

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

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

.page-slot-games__intro-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-slot-games__intro-text {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
}

.page-slot-games__intro-text p {
  margin-bottom: 20px;
}

.page-slot-games__intro-text a {
  color: #FFD700;
  text-decoration: none;
}

.page-slot-games__intro-text a:hover {
  text-decoration: underline;
}

.page-slot-games__intro-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-slot-games__intro-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Game Types Section */
.page-slot-games__game-types-section {
  padding: 80px 0;
  background-color: #0d0d0d;
}

.page-slot-games__dark-bg {
  color: #ffffff;
  background-color: #0d0d0d;
}

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

.page-slot-games__game-card {
  background-color: rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-slot-games__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-slot-games__game-card-title {
  font-size: 1.5rem;
  color: #FFD700;
  margin: 20px 0 10px;
  padding: 0 15px;
}

.page-slot-games__game-card-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-slot-games__game-card-title a:hover {
  text-decoration: underline;
}

.page-slot-games__game-card-description {
  font-size: 1rem;
  color: #e0e0e0;
  padding: 0 15px;
  line-height: 1.6;
}

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

.page-slot-games__guide-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}

.page-slot-games__guide-content > p {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-slot-games__guide-list {
  flex: 2;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-slot-games__guide-list li {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #FFD700;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games__guide-list li h3 {
  color: #FFD700;
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-slot-games__guide-list li p {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.6;
}

.page-slot-games__guide-list li a {
  color: #DC143C;
  text-decoration: none;
}

.page-slot-games__guide-list li a:hover {
  text-decoration: underline;
}

.page-slot-games__guide-image {
  flex: 1;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  margin-left: 40px; /* Adjust margin for visual separation */
}

.page-slot-games__guide-cta {
  text-align: center;
  margin-top: 40px;
}

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

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

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

.page-slot-games__promotions-section .page-slot-games__section-description {
  color: #e0e0e0;
}

.page-slot-games__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-slot-games__promotion-card {
  background-color: rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-slot-games__promotion-card-title {
  font-size: 1.6rem;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-slot-games__promotion-card-description {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.6;
}

.page-slot-games__promotion-card-description a {
  color: #DC143C;
  text-decoration: none;
}

.page-slot-games__promotion-card-description a:hover {
  text-decoration: underline;
}

.page-slot-games__promotions-cta {
  text-align: center;
  margin-top: 40px;
}

.page-slot-games__promotions-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Security Section */
.page-slot-games__security-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-slot-games__security-content {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-slot-games__security-text {
  flex: 2;
}

.page-slot-games__security-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-slot-games__security-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-slot-games__security-list li {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #DC143C;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games__security-list li h3 {
  color: #FFD700;
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-slot-games__security-list li p {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.6;
}

.page-slot-games__security-image {
  flex: 1;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

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

.page-slot-games__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-slot-games__faq-item {
  background-color: rgba(255, 215, 0, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #FFD700;
  cursor: pointer;
  background-color: rgba(255, 215, 0, 0.15);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-slot-games__faq-question:hover {
  background-color: rgba(255, 215, 0, 0.2);
}

.page-slot-games__faq-question h3 {
  margin: 0;
  color: #FFD700;
  font-size: 1.2rem;
}

.page-slot-games__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-slot-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.6;
}

.page-slot-games__faq-item.active .page-slot-games__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 20px 25px;
}

.page-slot-games__faq-answer p {
  margin: 0;
}

.page-slot-games__faq-answer a {
  color: #DC143C;
  text-decoration: none;
}

.page-slot-games__faq-answer a:hover {
  text-decoration: underline;
}

/* Conclusion Section */
.page-slot-games__conclusion-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  text-align: center;
}

.page-slot-games__conclusion-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-slot-games__conclusion-section a {
  color: #FFD700;
  text-decoration: none;
}

.page-slot-games__conclusion-section a:hover {
  text-decoration: underline;
}

.page-slot-games__conclusion-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

/* Responsive Design */
/* All images responsive by default */
.page-slot-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure content area images are at least 200px */
.page-slot-games__intro-image,
.page-slot-games__game-card-image,
.page-slot-games__guide-image,
.page-slot-games__promotions-image,
.page-slot-games__security-image {
  min-width: 200px;
  min-height: 200px;
}

@media (max-width: 1024px) {
  .page-slot-games__hero-title {
    font-size: 3.5rem;
  }

  .page-slot-games__hero-description {
    font-size: 1.2rem;
  }

  .page-slot-games__section-title {
    font-size: 2rem;
  }

  .page-slot-games__intro-grid,
  .page-slot-games__guide-content,
  .page-slot-games__security-content {
    flex-direction: column;
    text-align: center;
  }

  .page-slot-games__intro-image-wrapper,
  .page-slot-games__guide-image,
  .page-slot-games__security-image {
    margin-top: 30px;
    margin-left: 0;
  }
  
  .page-slot-games__guide-list {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-slot-games__hero-section {
    height: auto;
    min-height: 500px;
    padding: 100px 20px 60px; /* Adjust padding for mobile header */
    padding-top: var(--header-offset, 120px) !important; /* Ensure header offset on mobile */
  }

  .page-slot-games__hero-title {
    font-size: 2.5rem;
  }

  .page-slot-games__hero-description {
    font-size: 1rem;
  }

  .page-slot-games__hero-buttons,
  .page-slot-games__conclusion-cta {
    flex-direction: column;
    gap: 15px;
  }

  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-slot-games__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-slot-games__section-description {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }

  .page-slot-games__intro-section,
  .page-slot-games__game-types-section,
  .page-slot-games__guide-section,
  .page-slot-games__promotions-section,
  .page-slot-games__security-section,
  .page-slot-games__faq-section,
  .page-slot-games__conclusion-section {
    padding: 60px 0;
  }

  .page-slot-games__intro-text,
  .page-slot-games__security-text,
  .page-slot-games__conclusion-section p {
    font-size: 1rem;
  }

  .page-slot-games__game-card-title,
  .page-slot-games__promotion-card-title {
    font-size: 1.3rem;
  }

  .page-slot-games__guide-list li h3 {
    font-size: 1.4rem;
  }

  .page-slot-games__faq-question {
    font-size: 1.1rem;
    padding: 15px 20px;
  }

  .page-slot-games__faq-question h3 {
    font-size: 1.1rem;
  }

  .page-slot-games__faq-answer {
    padding: 15px 20px;
    font-size: 0.95rem;
  }

  /* Mobile image, video, container responsiveness */
  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-slot-games__container,
  .page-slot-games__hero-content,
  .page-slot-games__intro-grid,
  .page-slot-games__intro-text,
  .page-slot-games__intro-image-wrapper,
  .page-slot-games__game-types-grid,
  .page-slot-games__game-card,
  .page-slot-games__guide-content,
  .page-slot-games__guide-list,
  .page-slot-games__guide-list li,
  .page-slot-games__guide-image,
  .page-slot-games__promotions-grid,
  .page-slot-games__promotion-card,
  .page-slot-games__security-content,
  .page-slot-games__security-text,
  .page-slot-games__security-list,
  .page-slot-games__security-list li,
  .page-slot-games__security-image,
  .page-slot-games__faq-list,
  .page-slot-games__faq-item,
  .page-slot-games__conclusion-section p {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games__hero-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-slot-games__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games__hero-buttons {
    padding-left: 0;
    padding-right: 0;
  }
  .page-slot-games__guide-image {
    margin-left: 0;
  }
}