/* style/casino.css */
.page-casino {
  color: #333333; /* Default text color for light body background */
}

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

.page-casino__section-title {
  color: #4B0082; /* Royal Purple for main titles */
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-casino__section-intro {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

/* Hero Section */
.page-casino__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #f0f0f0; /* Light background for hero section if image not fully covering */
}

.page-casino__hero-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero section */
}

.page-casino__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-casino__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff; /* White text for hero content */
  padding: 40px;
  max-width: 900px;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-casino__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for hero title */
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-casino__hero-description {
  font-size: 1.3em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-casino__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Buttons */
.page-casino__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.page-casino__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #4B0082; /* Royal Purple */
  border: 2px solid #FFD700;
}

.page-casino__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

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

.page-casino__btn--secondary:hover {
  background-color: #FFD700;
  color: #4B0082; /* Royal Purple */
}

.page-casino__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 25px;
}

.page-casino__btn--large {
  padding: 20px 40px;
  font-size: 1.4em;
  border-radius: 60px;
}

/* About Section */
.page-casino__about-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-casino__feature-item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background-color: #fcfcfc;
  transition: transform 0.3s ease;
}

.page-casino__feature-item:hover {
  transform: translateY(-10px);
}

.page-casino__feature-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min-size */
  min-height: 200px; /* Enforce min-size */
}

.page-casino__feature-title {
  font-size: 1.8em;
  color: #4B0082;
  margin-bottom: 15px;
}

.page-casino__feature-description {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
}

/* Games Section */
.page-casino__games-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

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

.page-casino__category-card:hover {
  transform: translateY(-10px);
}

.page-casino__category-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min-size */
  min-height: 200px; /* Enforce min-size */
}

.page-casino__category-title {
  font-size: 1.5em;
  color: #4B0082;
  margin: 0 20px 10px 20px;
}

.page-casino__category-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #666666;
  margin: 0 20px 20px 20px;
}

/* Promotions Section */
.page-casino__promotions-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-casino__promo-card {
  background-color: #fcfcfc;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.page-casino__promo-card:hover {
  transform: translateY(-10px);
}

.page-casino__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min-size */
  min-height: 200px; /* Enforce min-size */
}

.page-casino__promo-title {
  font-size: 1.6em;
  color: #FFD700;
  margin: 0 20px 10px 20px;
}

.page-casino__promo-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #666666;
  margin: 0 20px 20px 20px;
}

/* Mobile Section */
.page-casino__mobile-section {
  padding: 80px 0;
  background-color: #f0f0f0;
}

.page-casino__mobile-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.page-casino__mobile-text {
  flex: 1;
}

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

.page-casino__mobile-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  min-width: 200px; /* Enforce min-size */
  min-height: 200px; /* Enforce min-size */
}

/* Responsible Gaming Section */
.page-casino__responsible-gaming-section {
  padding: 80px 0;
  background-color: #4B0082;
  color: #ffffff;
  text-align: center;
}

.page-casino__responsible-gaming-section .page-casino__section-title {
  color: #FFD700;
}

.page-casino__responsible-gaming-section .page-casino__section-intro {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-casino__responsible-gaming-section .page-casino__btn--secondary {
  color: #ffffff;
  border-color: #ffffff;
}

.page-casino__responsible-gaming-section .page-casino__btn--secondary:hover {
  background-color: #ffffff;
  color: #4B0082;
}

/* CTA Section */
.page-casino__cta-section {
  padding: 80px 0;
  background-color: #FFD700;
  text-align: center;
}

.page-casino__cta-title {
  font-size: 3em;
  color: #4B0082;
  margin-bottom: 20px;
}

.page-casino__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #333333;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-casino__hero-title {
    font-size: 3em;
  }
  .page-casino__hero-description {
    font-size: 1.1em;
  }
  .page-casino__section-title {
    font-size: 2em;
  }
  .page-casino__feature-title, .page-casino__category-title, .page-casino__promo-title {
    font-size: 1.4em;
  }
  .page-casino__mobile-content {
    flex-direction: column;
    text-align: center;
  }
  .page-casino__mobile-image-wrapper {
    order: -1; /* Image above text on mobile */
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-casino__hero-section {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
  }
  .page-casino__hero-title {
    font-size: 2.2em;
  }
  .page-casino__hero-description {
    font-size: 1em;
  }
  .page-casino__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-casino__btn {
    width: 100%;
    max-width: 300px;
  }
  .page-casino__section-title {
    font-size: 1.8em;
  }
  .page-casino__section-intro {
    font-size: 1em;
  }
  .page-casino__features-grid, .page-casino__game-categories, .page-casino__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-casino__feature-item, .page-casino__category-card, .page-casino__promo-card {
    padding: 20px;
  }
  .page-casino__feature-image, .page-casino__category-image, .page-casino__promo-image, .page-casino__mobile-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive */
    min-width: 200px; /* Enforce min-size */
    min-height: 200px; /* Enforce min-size */
  }
  .page-casino__cta-title {
    font-size: 2em;
  }
  .page-casino__cta-description {
    font-size: 1em;
  }

  /* IMPORTANT: Mobile content area images must be constrained */
  .page-casino img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min-size */
    min-height: 200px; /* Enforce min-size */
  }
}

@media (max-width: 480px) {
  .page-casino__hero-title {
    font-size: 1.8em;
  }
  .page-casino__hero-content {
    padding: 20px;
  }
  .page-casino__section-title {
    font-size: 1.5em;
  }
  .page-casino__cta-title {
    font-size: 1.8em;
  }
}