.page-slot-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #0d0d0d; /* Slightly off-black for main content area to complement body #000 */
}

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

.page-slot-games__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700; /* Gold color for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
  position: relative;
  text-transform: uppercase;
}

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

.page-slot-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  margin: 10px;
  white-space: nowrap;
  word-wrap: normal;
}

.page-slot-games__cta-button--primary {
  background: #FFD700; /* Gold primary button */
  color: #000000;
}

.page-slot-games__cta-button--primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-slot-games__cta-button--secondary {
  background: #8B0000; /* Dark red secondary button */
  color: #ffffff;
}

.page-slot-games__cta-button--secondary:hover {
  background: #6a0000;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-slot-games__cta-button--small {
  padding: 10px 20px;
  font-size: 16px;
  margin: 5px;
}

.page-slot-games__cta-button--block {
  display: block;
  width: calc(100% - 20px); /* Adjust for margin */
  margin: 10px auto;
}

.page-slot-games img, .page-slot-games video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ------------------------------------ */
/* VIDEO SECTION - Mandatory for homepage-like structure */
/* ------------------------------------ */
.page-slot-games__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Desktop: Adjust for fixed header */
  background-color: #000000;
}

.page-slot-games__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-slot-games__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.page-slot-games__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.page-slot-games__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  object-fit: cover;
  pointer-events: none;
}

.page-slot-games__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-slot-games__video-link:hover .page-slot-games__video-overlay {
  opacity: 1;
}

.page-slot-games__video-click-hint {
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  background: rgba(255, 215, 0, 0.8);
  border-radius: 5px;
  white-space: nowrap;
}

.page-slot-games__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.page-slot-games__play-now-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Gold */
  color: #000000;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-slot-games__play-now-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.3);
}

/* ------------------------------------ */
/* TITLE SECTION */
/* ------------------------------------ */
.page-slot-games__title-section {
  background-color: #1a1a1a;
  padding: 60px 20px;
  text-align: center;
}

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

.page-slot-games__title-description {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

/* ------------------------------------ */
/* CONTENT AREA */
/* ------------------------------------ */
.page-slot-games__introduction {
  padding: 80px 0;
  background-color: #0d0d0d;
}

.page-slot-games__introduction p {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.7;
  color: #e0e0e0;
}

.page-slot-games__introduction ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-slot-games__introduction ul li {
  margin-bottom: 10px;
  font-size: 17px;
}

.page-slot-games__introduction h3 {
  color: #FFD700;
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-slot-games__image-text-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-slot-games__image-block {
  flex: 1;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  object-fit: cover;
  min-width: 200px; /* Ensure minimum size */
}

.page-slot-games__text-block {
  flex: 1;
}

.page-slot-games__step-list {
  list-style: decimal;
  margin-left: 20px;
  margin-bottom: 40px;
  color: #e0e0e0;
  font-size: 17px;
}

.page-slot-games__step-list li {
  margin-bottom: 15px;
  padding-left: 10px;
  position: relative;
}

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

.page-slot-games__promo-card, .page-slot-games__game-card {
  background-color: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__promo-card:hover, .page-slot-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.page-slot-games__promo-image, .page-slot-games__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
  border-bottom: 2px solid #8B0000;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-slot-games__promo-title, .page-slot-games__game-title {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-slot-games__promo-description, .page-slot-games__game-description {
  font-size: 16px;
  color: #c0c0c0;
  padding: 0 15px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-slot-games__feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.page-slot-games__feature-list li {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  font-size: 17px;
  color: #e0e0e0;
  border-left: 5px solid #FFD700;
  transition: transform 0.3s ease;
}

.page-slot-games__feature-list li:hover {
  transform: translateY(-3px);
}

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

.page-slot-games__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #333;
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #1a1a1a;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-slot-games__faq-question:hover {
  background: #2a2a2a;
}

.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: #f0f0f0;
  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: #8B0000;
  transform: rotate(45deg);
}

.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, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  color: #e0e0e0;
  background-color: #222222;
  border-radius: 0 0 5px 5px;
}

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

/* ------------------------------------ */
/* BRAND SECTION */
/* ------------------------------------ */
.page-slot-games__brand-section {
  padding: 80px 0;
  background-color: #0d0d0d;
}

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

.page-slot-games__brand-item {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  border-top: 5px solid #FFD700;
}

.page-slot-games__brand-item h3 {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-slot-games__brand-item p {
  font-size: 17px;
  color: #e0e0e0;
  margin-bottom: 15px;
}

.page-slot-games__brand-item ul {
  list-style: none;
  padding: 0;
}

.page-slot-games__brand-item ul li {
  margin-bottom: 8px;
  font-size: 16px;
  color: #c0c0c0;
  position: relative;
  padding-left: 20px;
}

.page-slot-games__brand-item ul li::before {
  content: '✓';
  color: #8B0000;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

/* ------------------------------------ */
/* BLOG SECTION */
/* ------------------------------------ */
.page-slot-games__blog-section {
  padding: 80px 0;
  background-color: #111111;
}

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

.page-slot-games__blog-item {
  background-color: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.page-slot-games__blog-link {
  text-decoration: none;
  display: block;
  color: inherit;
}

.page-slot-games__blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid #8B0000;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-slot-games__blog-item-title {
  font-size: 22px;
  color: #FFD700;
  margin: 15px 15px 10px 15px;
}

.page-slot-games__blog-item-excerpt {
  font-size: 16px;
  color: #c0c0c0;
  margin: 0 15px 15px 15px;
}

.page-slot-games__blog-item-date {
  display: block;
  font-size: 14px;
  color: #888;
  margin: 0 15px 15px 15px;
}

.page-slot-games__view-all-button-wrapper {
  text-align: center;
  margin-top: 50px;
}

/* ------------------------------------ */
/* RESPONSIVE DESIGN */
/* ------------------------------------ */
@media (max-width: 1024px) {
  .page-slot-games__main-title {
    font-size: 42px;
  }
  .page-slot-games__section-title {
    font-size: 32px;
  }
  .page-slot-games__image-text-block {
    flex-direction: column;
  }
  .page-slot-games__image-block {
    width: 100%;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .page-slot-games__video-section {
    padding-top: 10px !important; /* Mobile: Adjust for fixed header */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  
  .page-slot-games__video-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
  
  .page-slot-games__video-link {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .page-slot-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 4px;
    overflow: hidden !important;
  }
  
  .page-slot-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 4px;
    object-fit: contain; /* Use contain for mobile to ensure full video display */
  }
  
  .page-slot-games__video-cta {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .page-slot-games__play-now-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 30px !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-slot-games__video-click-hint {
    font-size: 14px !important;
    padding: 8px 16px !important;
  }

  .page-slot-games__main-title {
    font-size: 36px;
  }

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

  .page-slot-games__title-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-slot-games__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .page-slot-games__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 0;
  }
  
  .page-slot-games__cta-button--block {
    width: 100%;
  }

  .page-slot-games__introduction,
  .page-slot-games__faq-section,
  .page-slot-games__brand-section,
  .page-slot-games__blog-section {
    padding: 40px 0;
  }

  .page-slot-games__container {
    padding: 0 15px;
  }

  .page-slot-games__image-text-block {
    flex-direction: column;
    gap: 30px;
  }

  .page-slot-games__promo-grid, .page-slot-games__game-grid {
    gap: 20px;
  }
  
  .page-slot-games__promo-image, .page-slot-games__game-image {
    min-width: unset;
    min-height: unset;
  }

  .page-slot-games__faq-question {
    padding: 15px;
  }
  
  .page-slot-games__faq-question h3 {
    font-size: 16px;
  }

  .page-slot-games__faq-toggle {
    font-size: 24px;
    width: 24px;
    height: 24px;
  }
  
  .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__brand-content {
    grid-template-columns: 1fr;
  }

  .page-slot-games__blog-list {
    grid-template-columns: 1fr;
  }
  
  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-slot-games__image-block, .page-slot-games__promo-image, .page-slot-games__game-image, .page-slot-games__blog-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: unset !important;
    min-height: unset !important;
  }
}

@media (max-width: 480px) {
  .page-slot-games__main-title {
    font-size: 30px;
  }
  .page-slot-games__section-title {
    font-size: 24px;
  }
  .page-slot-games__cta-button {
    font-size: 16px;
    padding: 12px 25px;
  }
  .page-slot-games__promo-title, .page-slot-games__game-title, .page-slot-games__blog-item-title {
    font-size: 20px;
  }
  .page-slot-games__promo-description, .page-slot-games__game-description, .page-slot-games__blog-item-excerpt, .page-slot-games p, .page-slot-games li {
    font-size: 15px;
  }
  .page-slot-games__brand-item h3 {
    font-size: 20px;
  }
  .page-slot-games__blog-item-date {
    font-size: 12px;
  }
}