.page-casino {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-casino__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000; /* Dark background for hero text */
  color: #FFFFFF; /* Light text for dark hero background */
  overflow: hidden;
}

.page-casino__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle overlay to make text readable */
  z-index: 0;
}

.page-casino__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-casino__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login button color for emphasis */
}

.page-casino__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
}

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

.page-casino__hero-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-casino__hero-button--register {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text */
}

.page-casino__hero-button--register:hover {
  background-color: #e6a73c;
  transform: translateY(-2px);
}

.page-casino__hero-button--login {
  background-color: #FFFFFF; /* Register button color */
  color: #000000; /* Dark text */
  border: 2px solid #FCBC45;
}

.page-casino__hero-button--login:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-casino__games-overview-section,
.page-casino__why-choose-section,
.page-casino__promotions-section,
.page-casino__getting-started-section,
.page-casino__responsible-gaming-section,
.page-casino__faq-section,
.page-casino__cta-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-casino__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
}

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

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

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

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

.page-casino__game-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-bottom: 3px solid #FCBC45;
}

.page-casino__game-card-title {
  font-size: 1.5em;
  color: #000000;
  margin: 20px 15px 10px 15px;
}

.page-casino__game-card-text {
  color: #666666;
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-casino__game-card-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-casino__game-card-button:hover {
  background-color: #e6a73c;
}

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

.page-casino__feature-item {
  background-color: #f8f8f8;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-casino__feature-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

.page-casino__feature-text {
  color: #666666;
}

.page-casino__promo-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #000000;
  border-radius: 10px;
  overflow: hidden;
  color: #FFFFFF;
  margin-top: 40px;
  position: relative;
  padding: 30px;
}

.page-casino__promo-banner-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.page-casino__promo-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
}

.page-casino__promo-banner-title {
  font-size: 2.2em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-casino__promo-banner-text {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-casino__promo-banner-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-casino__promo-banner-button:hover {
  background-color: #e6a73c;
}

.page-casino__more-promos {
  text-align: center;
  margin-top: 30px;
}

.page-casino__more-promos-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-casino__more-promos-link:hover {
  color: #e6a73c;
}

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

.page-casino__step-item {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
}

.page-casino__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #FCBC45;
  color: #000000;
  font-size: 1.8em;
  font-weight: bold;
  border-radius: 50%;
  margin-bottom: 20px;
}

.page-casino__step-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
}

.page-casino__step-text {
  color: #666666;
  margin-bottom: 25px;
}

.page-casino__step-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-casino__step-button:hover {
  background-color: #333333;
}

.page-casino__responsible-gaming-text {
  color: #555555;
  max-width: 800px;
  margin: 0 auto 30px auto;
  text-align: center;
}

.page-casino__responsible-gaming-link {
  display: block;
  text-align: center;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: color 0.3s ease;
}

.page-casino__responsible-gaming-link:hover {
  color: #e6a73c;
}

.page-casino__faq-items {
  margin-top: 40px;
}

.page-casino__faq-item {
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

.page-casino__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-casino__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-casino__faq-item.active .page-casino__faq-question::after {
  transform: rotate(45deg);
}

.page-casino__faq-answer {
  color: #666666;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eeeeee;
  margin-top: 10px;
}

.page-casino__faq-item.active .page-casino__faq-answer {
  display: block;
}

.page-casino__all-faq-link {
  display: block;
  text-align: center;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  margin-top: 30px;
  transition: color 0.3s ease;
}

.page-casino__all-faq-link:hover {
  color: #e6a73c;
}

.page-casino__cta-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 10px;
  margin-bottom: 60px;
}

.page-casino__cta-section .page-casino__section-title {
  color: #FCBC45;
}

.page-casino__cta-section .page-casino__section-description {
  color: #f0f0f0;
}

.page-casino__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.page-casino__cta-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-casino__cta-button--register {
  background-color: #FCBC45;
  color: #000000;
}

.page-casino__cta-button--register:hover {
  background-color: #e6a73c;
  transform: translateY(-2px);
}

.page-casino__cta-button--login {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-casino__cta-button--login:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-casino__hero-title {
    font-size: 2.5em;
  }

  .page-casino__hero-description {
    font-size: 1em;
  }

  .page-casino__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-casino__hero-button {
    width: 100%;
  }

  .page-casino__section-title {
    font-size: 2em;
  }

  .page-casino__game-categories,
  .page-casino__features,
  .page-casino__steps {
    grid-template-columns: 1fr;
  }

  .page-casino__promo-banner {
    padding: 20px;
  }

  .page-casino__promo-banner-title {
    font-size: 1.8em;
  }

  .page-casino__promo-banner-text {
    font-size: 1em;
  }

  .page-casino__cta-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-casino__cta-button {
    width: 100%;
  }

  /* Ensure all images within .page-casino are responsive and don't overflow */
  .page-casino img {
    max-width: 100%;
    height: auto;
  }

  /* Specific image sizing for cards on mobile to ensure they are not too small */
  .page-casino__game-card-image {
    height: 200px; /* Minimum height for card images */
  }
}

@media (max-width: 480px) {
  .page-casino__hero-title {
    font-size: 2em;
  }

  .page-casino__section-title {
    font-size: 1.8em;
  }
}

/* Ensure content area images are not smaller than 200px */
.page-casino__game-card-image, 
.page-casino__promo-banner-image {
  min-width: 200px;
  min-height: 200px;
}