/* style/casino-games.css */

/* Base styles for the casino games page */
.page-casino-games {
  background-color: #0A0A0A; /* Page background */
  color: #FFF6D6; /* Main text color */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-casino-games__section-title {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  color: #F2C14E;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.page-casino-games__section-intro {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6;
}

/* Buttons */
.page-casino-games__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
  color: #FFF6D6;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  border: none;
}

.page-casino-games__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-casino-games__button--primary {
  padding: 15px 30px;
  font-size: 1.15rem;
}

/* Hero Section */
.page-casino-games__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #0A0A0A;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-casino-games__hero-image {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
}

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

.page-casino-games__hero-content {
  padding: 40px 20px 60px;
  max-width: 900px;
}

.page-casino-games__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #FFD36B; /* Glow color for main title */
  margin-bottom: 20px;
  font-weight: 900;
  text-shadow: 0 0 15px rgba(255, 211, 107, 0.6);
}

.page-casino-games__hero-description {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: #FFF6D6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Section */
.page-casino-games__features-section {
  padding: 60px 0;
  background-color: #111111; /* Card BG color */
}

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

.page-casino-games__feature-card {
  background-color: #0A0A0A;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border color */
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-casino-games__feature-card:hover {
  transform: translateY(-5px);
}

.page-casino-games__card-title {
  font-size: 1.5rem;
  color: #FFD36B;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-casino-games__card-text {
  font-size: 1rem;
  color: #FFF6D6;
}

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

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

.page-casino-games__category-card {
  background-color: #111111; /* Card BG color */
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #3A2A12;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-casino-games__category-card:hover {
  transform: translateY(-5px);
}

.page-casino-games__category-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-casino-games__category-card .page-casino-games__card-title {
  padding-top: 20px;
}

.page-casino-games__category-card .page-casino-games__card-text {
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-casino-games__category-card .page-casino-games__button {
  margin-bottom: 20px;
  align-self: center;
}

/* Promo Section */
.page-casino-games__promo-section {
  padding: 60px 0;
  background-color: #111111; /* Card BG color */
}

.page-casino-games__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-casino-games__promo-card {
  background-color: #0A0A0A;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #3A2A12;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-casino-games__promo-card:hover {
  transform: translateY(-5px);
}

.page-casino-games__promo-cta-text {
  text-align: center;
  font-size: 1.1rem;
  color: #FFF6D6;
}

.page-casino-games__promo-cta-text a {
  color: #F2C14E;
  text-decoration: none;
  font-weight: bold;
}

.page-casino-games__promo-cta-text a:hover {
  text-decoration: underline;
}

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

.page-casino-games__mobile-app-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-casino-games__mobile-app-content {
  text-align: center;
  max-width: 600px;
}

.page-casino-games__app-features {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
  display: inline-block; /* Center the list itself */
}

.page-casino-games__app-features li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #FFF6D6;
  display: flex;
  align-items: center;
}

.page-casino-games__app-feature-icon {
  color: #F2C14E;
  font-size: 1.4rem;
  margin-right: 10px;
}

.page-casino-games__mobile-app-image img {
  width: 400px;
  height: 500px;
  object-fit: contain;
  display: block;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 211, 107, 0.3);
}

/* Responsible Gaming Section */
.page-casino-games__responsible-gaming-section {
  padding: 60px 0;
  background-color: #111111;
  text-align: center;
}

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

.page-casino-games__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-casino-games__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-casino-games__faq-question {
  font-size: 1.3rem;
  color: #F2C14E;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-casino-games__faq-answer {
  font-size: 1rem;
  color: #FFF6D6;
}

.page-casino-games__faq-answer a {
  color: #F2C14E;
  text-decoration: none;
  font-weight: bold;
}

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

/* CTA Section */
.page-casino-games__cta-section {
  padding: 60px 0;
  background-color: #111111;
  text-align: center;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-casino-games__hero-section {
    padding-bottom: 80px;
  }
  .page-casino-games__hero-image {
    max-height: 600px;
  }
  .page-casino-games__hero-content {
    padding-top: 60px;
  }
  .page-casino-games__mobile-app-flex {
    flex-direction: row;
    text-align: left;
    justify-content: center;
    align-items: center;
  }
  .page-casino-games__mobile-app-content {
    text-align: left;
    margin-right: 40px;
  }
  .page-casino-games__app-features {
    text-align: left;
    display: block;
  }
}

@media (max-width: 768px) {
  .page-casino-games__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  .page-casino-games__hero-description {
    font-size: 1.1rem;
  }
  .page-casino-games__button--primary {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-casino-games__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .page-casino-games__section-intro {
    font-size: 1rem;
  }
  .page-casino-games__mobile-app-image img {
    width: 100%;
    height: auto;
    max-width: 300px;
    max-height: 400px;
  }
  .page-casino-games__container img {
    max-width: 100%;
    height: auto;
  }
  .page-casino-games__category-card img {
    max-width: 100%;
    height: auto;
  }
  .page-casino-games__feature-card img {
    max-width: 100%;
    height: auto;
  }
  .page-casino-games__promo-card img {
    max-width: 100%;
    height: auto;
  }
  .page-casino-games__faq-question {
    font-size: 1.1rem;
  }
  .page-casino-games__faq-answer {
    font-size: 0.95rem;
  }
}