/* style/slot-games.css */
.page-slot-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #000000; /* Ensure consistency with body background */
}

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

/* HERO Section */
.page-slot-games__hero-section {
  position: relative;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 10px; /* Space for fixed header */
  margin-top: 0;
  overflow: hidden;
}

.page-slot-games__hero-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.page-slot-games__hero-image {
  width: 100%;
  margin: 0;
}

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

/* Products Section */
.page-slot-games__products-section {
  width: 100%;
  padding: 60px 20px;
  background: #0d0d0d; /* Slightly lighter dark background for contrast */
}

.page-slot-games__products-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 4fr 2fr;
  gap: 20px;
}

.page-slot-games__products-grid {
  display: grid;
  gap: 20px;
}

.page-slot-games__products-grid--small {
  grid-template-columns: repeat(4, 1fr);
}

.page-slot-games__products-grid--large {
  grid-template-columns: repeat(2, 1fr);
}

.page-slot-games__product-card {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05); /* Semi-transparent background */
  border: 3px solid #FFD700; /* Gold border */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.page-slot-games__product-card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

/* General Section Styles */
.page-slot-games__intro-section, 
.page-slot-games__quick-links-section,
.page-slot-games__games-section,
.page-slot-games__promotions-section,
.page-slot-games__safety-section,
.page-slot-games__faq-section,
.page-slot-games__blog-section {
  padding: 60px 0;
}

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

.page-slot-games__light-bg {
  background: #0d0d0d;
  color: #f0f0f0;
}

.page-slot-games__main-heading {
  font-size: 3.2em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-slot-games__heading {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

.page-slot-games__sub-heading {
  font-size: 1.8em;
  color: #FFD700; /* Gold */
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-slot-games__paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 200px;
}

.page-slot-games__btn-primary {
  background: linear-gradient(90deg, #FFD700, #FFA500);
  color: #000000; /* Black text for gold button */
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-slot-games__btn-primary:hover {
  background: linear-gradient(90deg, #FFA500, #FFD700);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
  transform: translateY(-2px);
}

.page-slot-games__btn-secondary {
  background: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700; /* Gold border */
}

.page-slot-games__btn-secondary:hover {
  background: #FFD700;
  color: #000000; /* Black text on gold hover */
  transform: translateY(-2px);
}

/* Quick Links Section */
.page-slot-games__links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-slot-games__link-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  text-decoration: none;
  color: #f0f0f0;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-slot-games__link-card:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: #FFD700;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-slot-games__link-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-slot-games__link-description {
  font-size: 0.95em;
  color: #cccccc;
}

/* Game Categories Section */
.page-slot-games__game-category {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-slot-games__list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 800px;
  text-align: left;
}

.page-slot-games__list-item {
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid #FFD700;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 1.05em;
  color: #f0f0f0;
}

.page-slot-games__list-item strong {
  color: #FFD700;
}

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

.page-slot-games__promo-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slot-games__promo-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-slot-games__promo-description {
  font-size: 0.95em;
  color: #cccccc;
  flex-grow: 1;
  margin-bottom: 20px;
}

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

.page-slot-games__feature-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-slot-games__feature-icon {
  width: 120px; /* Larger icons for content */
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-slot-games__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: 600;
}

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

/* FAQ Section */
.page-slot-games__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.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 15px;
  opacity: 0;
}

.page-slot-games__faq-item.active .page-slot-games__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #1a1a1a;
  border-radius: 0 0 5px 5px;
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 215, 0, 0.2);
  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: #1a1a1a;
  border-color: #FFD700;
}

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

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

.page-slot-games__faq-toggle {
  font-size: 24px;
  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: 28px;
  height: 28px;
}

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

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

.page-slot-games__blog-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-slot-games__blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

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

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

.page-slot-games__blog-content {
  padding: 20px;
}

.page-slot-games__blog-title {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  line-height: 1.4;
  font-weight: 600;
}

.page-slot-games__blog-summary {
  font-size: 0.95em;
  color: #cccccc;
  margin-bottom: 15px;
}

.page-slot-games__blog-date {
  font-size: 0.85em;
  color: #888888;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games__products-container {
    grid-template-columns: 1fr; /* Mobile: two grids stack vertically */
  }
  
  .page-slot-games__products-grid--small {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-slot-games__products-grid--large {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-slot-games__main-heading {
    font-size: 2.8em;
  }

  .page-slot-games__heading {
    font-size: 2em;
  }

  .page-slot-games__sub-heading {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-slot-games__hero-section {
    padding-top: 10px; 
  }

  .page-slot-games__products-section {
    padding: 40px 15px;
  }
  
  .page-slot-games__products-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .page-slot-games__products-grid--small {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .page-slot-games__products-grid--small .page-slot-games__product-card {
    aspect-ratio: 1 / 1; /* Square */
  }
  
  .page-slot-games__products-grid--small .page-slot-games__product-card-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1; /* Square */
  }
  
  .page-slot-games__products-grid--small .page-slot-games__product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .page-slot-games__products-grid--large {
    grid-template-columns: 1fr; /* Each card occupies a full row */
    gap: 15px;
  }
  
  .page-slot-games__products-grid--large .page-slot-games__product-card {
    aspect-ratio: 1 / 1; /* Square */
  }
  
  .page-slot-games__products-grid--large .page-slot-games__product-card-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1; /* Square */
  }
  
  .page-slot-games__products-grid--large .page-slot-games__product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .page-slot-games__main-heading {
    font-size: 2.2em;
    padding: 0 10px;
  }

  .page-slot-games__heading {
    font-size: 1.8em;
    padding: 0 10px;
  }

  .page-slot-games__sub-heading {
    font-size: 1.4em;
    padding: 0 10px;
  }

  .page-slot-games__paragraph {
    font-size: 1em;
    padding: 0 15px;
  }

  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    width: 100%;
    min-width: unset;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-slot-games__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-slot-games__intro-section, 
  .page-slot-games__quick-links-section,
  .page-slot-games__games-section,
  .page-slot-games__promotions-section,
  .page-slot-games__safety-section,
  .page-slot-games__faq-section,
  .page-slot-games__blog-section {
    padding: 40px 0;
  }

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

  .page-slot-games__links-grid,
  .page-slot-games__promo-grid,
  .page-slot-games__features-grid,
  .page-slot-games__blog-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .page-slot-games__feature-icon {
    width: 100px;
    height: 100px;
  }

  .page-slot-games__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-slot-games__faq-question h3 {
    font-size: 15px;
    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 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;
  }
}