/* style/casino-game-selection.css */
.page-casino-game-selection {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
}

.page-casino-game-selection__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-casino-game-selection__section-title {
  font-size: clamp(2em, 4vw, 2.8em);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #F2C14E; /* Main color for emphasis */
  line-height: 1.2;
}

.page-casino-game-selection__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #FFF6D6;
}

/* Hero Section */
.page-casino-game-selection__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom */
  overflow: hidden;
  min-height: 600px; /* Ensure sufficient height */
}

.page-casino-game-selection__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-casino-game-selection__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-casino-game-selection__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-casino-game-selection__hero-title {
  font-size: clamp(2.5em, 5vw, 4em);
  font-weight: 800;
  color: #FFD36B; /* Glow color */
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.6);
}

.page-casino-game-selection__hero-description {
  font-size: 1.2em;
  color: #FFF6D6;
  margin-bottom: 30px;
  line-height: 1.5;
}

.page-casino-game-selection__hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

/* Buttons */
.page-casino-game-selection__btn-primary,
.page-casino-game-selection__btn-secondary,
.page-casino-game-selection__btn-download,
.page-casino-game-selection__btn-category {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  text-align: center;
  box-sizing: border-box;
}

.page-casino-game-selection__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for bright button */
  border: none;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-casino-game-selection__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-casino-game-selection__btn-secondary {
  background: #111111; /* Card BG */
  color: #F2C14E; /* Main color */
  border: 2px solid #F2C14E; /* Border */
}

.page-casino-game-selection__btn-secondary:hover {
  background: #F2C14E;
  color: #111111;
}

.page-casino-game-selection__btn-download {
  background: #111111;
  color: #FFD36B;
  border: 2px solid #FFD36B;
}

.page-casino-game-selection__btn-download:hover {
  background: #FFD36B;
  color: #111111;
}

.page-casino-game-selection__btn-category {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border: none;
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 5px;
}

.page-casino-game-selection__btn-category:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 10px rgba(242, 193, 78, 0.4);
}

/* About Section */
.page-casino-game-selection__about-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

.page-casino-game-selection__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-casino-game-selection__feature-card {
  background-color: #111111; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-casino-game-selection__feature-title {
  font-size: 1.8em;
  color: #F2C14E;
  margin-bottom: 15px;
}

.page-casino-game-selection__feature-text {
  font-size: 1em;
  color: #FFF6D6;
}

/* Game Selection Section */
.page-casino-game-selection__game-selection-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

.page-casino-game-selection__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-casino-game-selection__category-card {
  background-color: #111111;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #3A2A12;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.page-casino-game-selection__category-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-bottom: 10px;
}

.page-casino-game-selection__category-title {
  font-size: 1.6em;
  color: #FFD36B;
}

.page-casino-game-selection__category-text {
  font-size: 0.95em;
  color: #FFF6D6;
  flex-grow: 1;
}

/* Promotions Section */
.page-casino-game-selection__promotions-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

.page-casino-game-selection__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-casino-game-selection__promotion-card {
  background-color: #111111;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #3A2A12;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.page-casino-game-selection__promotion-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.page-casino-game-selection__promotion-card h3 {
  font-size: 1.5em;
  color: #F2C14E;
  padding: 20px 20px 10px 20px;
}

.page-casino-game-selection__promotion-card p {
  font-size: 1em;
  color: #FFF6D6;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-casino-game-selection__promotion-card .page-casino-game-selection__btn-primary {
  margin: 0 20px 20px 20px;
  width: calc(100% - 40px);
}

/* Mobile App Section */
.page-casino-game-selection__mobile-app-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

.page-casino-game-selection__mobile-app-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}

.page-casino-game-selection__mobile-app-image {
  max-width: 45%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-casino-game-selection__mobile-app-text {
  flex: 1;
}

.page-casino-game-selection__mobile-app-title {
  font-size: 2em;
  color: #F2C14E;
  margin-bottom: 20px;
}

.page-casino-game-selection__mobile-app-description {
  font-size: 1.1em;
  color: #FFF6D6;
  margin-bottom: 30px;
}

/* Partners Section */
.page-casino-game-selection__partners-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

.page-casino-game-selection__partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 2x5 grid for desktop */
  gap: 20px;
  margin-top: 50px;
  justify-items: center;
  align-items: center;
}

.page-casino-game-selection__partners-grid img {
   /* Fixed width as per requirement */
   /* Fixed height as per requirement */
  object-fit: contain;
  filter: grayscale(100%) brightness(1.5); /* Make logos fit dark theme */
  transition: filter 0.3s ease;
}

.page-casino-game-selection__partners-grid img:hover {
  filter: grayscale(0%) brightness(1); /* Colorize on hover */
}

/* FAQ Section */
.page-casino-game-selection__faq-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

.page-casino-game-selection__faq-list {
  max-width: 900px;
  margin: 50px auto;
}

.page-casino-game-selection__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-casino-game-selection__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: 600;
  color: #F2C14E;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-casino-game-selection__faq-question:hover {
  background-color: rgba(242, 193, 78, 0.1);
}

.page-casino-game-selection__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-casino-game-selection__faq-item.active .page-casino-game-selection__faq-toggle {
  transform: rotate(45deg); /* Plus to X (or rotate to minus) */
}

.page-casino-game-selection__faq-answer {
  max-height: 0; /* Initial hidden state */
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
  font-size: 1em;
}

.page-casino-game-selection__faq-item.active .page-casino-game-selection__faq-answer {
  max-height: 1000px !important; /* Ensure it expands sufficiently */
  padding: 15px 20px 20px 20px;
}

.page-casino-game-selection__faq-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Final CTA Section */
.page-casino-game-selection__cta-final-section {
  padding: 80px 0;
  text-align: center;
  background-color: #111111; /* Card BG */
  border-top: 1px solid #3A2A12;
}

.page-casino-game-selection__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-casino-game-selection__hero-content {
    padding: 30px;
  }
  .page-casino-game-selection__partners-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 columns for tablet */
  }
}

@media (max-width: 768px) {
  .page-casino-game-selection {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-casino-game-selection__section-title {
    font-size: 2.2em;
  }

  .page-casino-game-selection__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-casino-game-selection__hero-section {
    padding-top: 10px !important; /* Small top padding */
    min-height: 500px;
  }

  .page-casino-game-selection__hero-content {
    padding: 20px;
  }

  .page-casino-game-selection__hero-title {
    font-size: 2.2em;
  }

  .page-casino-game-selection__hero-description {
    font-size: 1em;
  }

  .page-casino-game-selection__hero-cta-buttons,
  .page-casino-game-selection__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 300px; /* Constrain button group width */
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .page-casino-game-selection__btn-primary,
  .page-casino-game-selection__btn-secondary,
  .page-casino-game-selection__btn-download,
  .page-casino-game-selection__btn-category,
  .page-casino-game-selection a[class*="button"],
  .page-casino-game-selection a[class*="btn"] {
    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-casino-game-selection__about-section,
  .page-casino-game-selection__game-selection-section,
  .page-casino-game-selection__promotions-section,
  .page-casino-game-selection__mobile-app-section,
  .page-casino-game-selection__partners-section,
  .page-casino-game-selection__faq-section,
  .page-casino-game-selection__cta-final-section {
    padding: 40px 0;
  }

  .page-casino-game-selection__mobile-app-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-casino-game-selection__mobile-app-image {
    max-width: 80%;
  }

  .page-casino-game-selection__partners-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for mobile */
    padding: 0 15px;
    box-sizing: border-box;
  }
  .page-casino-game-selection__partners-grid img {
      width: 100% !important; /* Override fixed width for responsive display */
      height: auto !important;
       /* Maintain aspect ratio and max size */
  }
  
  .page-casino-game-selection img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }
  
  .page-casino-game-selection__section,
  .page-casino-game-selection__card,
  .page-casino-game-selection__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}