.page-casino {
  color: #333333; /* Dark text for light body background */
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

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

/* Hero Section */
.page-casino__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 700px; /* Adjust as needed */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
}

.page-casino__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.5;
}

.page-casino__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 40px;
}

.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.4em;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

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

.page-casino__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-casino__button--register:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-casino__button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-casino__button--login:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-casino__button--cta {
  padding: 18px 40px;
  font-size: 1.3em;
  background-color: #FCBC45;
  color: #000000;
}

.page-casino__button--cta:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-casino__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #FCBC45;
  color: #000000;
}

.page-casino__button--small:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

/* General Section Styles */
.page-casino__introduction-section,
.page-casino__features-section,
.page-casino__games-overview-section,
.page-casino__live-experience-section,
.page-casino__slots-highlight-section,
.page-casino__promotions-section,
.page-casino__security-section,
.page-casino__getting-started-section,
.page-casino__faq-section,
.page-casino__cta-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-casino__section-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.page-casino__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-casino__section-description {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #555555;
}

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

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

.page-casino__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-casino__feature-icon {
  width: 250px; /* Minimum 200px */
  height: 187px; /* Maintain aspect ratio for 400x300 */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

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

/* Games Overview Grid */
.page-casino__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-casino__game-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.page-casino__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-casino__game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency, will be object-fit cover */
  object-fit: cover;
}

.page-casino__game-title {
  font-size: 1.8em;
  color: #000000;
  margin: 20px 0 10px;
}

.page-casino__game-text {
  font-size: 1em;
  line-height: 1.7;
  color: #666666;
  padding: 0 20px 20px;
}

/* Content Wrapper for image/text sections */
.page-casino__content-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
}

.page-casino__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-casino__text-content {
  flex: 1;
}

.page-casino__image-wrapper {
  flex: 1;
  min-width: 400px; /* Ensure images are not too small */
}

.page-casino__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-casino__list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-casino__list-item {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #333333;
  position: relative;
  padding-left: 30px;
}

.page-casino__list-item::before {
  content: '✓';
  color: #FCBC45;
  font-weight: bold;
  position: absolute;
  left: 0;
}

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

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

.page-casino__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-casino__promo-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
}

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

.page-casino__promo-text {
  font-size: 1em;
  line-height: 1.7;
  color: #666666;
  padding: 0 20px 20px;
}

.page-casino__button-center {
  text-align: center;
  margin-top: 50px;
}

/* Getting Started Steps */
.page-casino__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-casino__step-card {
  text-align: center;
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-casino__step-icon {
  width: 250px; /* Minimum 200px */
  height: 187px; /* Maintain aspect ratio for 400x300 */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

.page-casino__step-text {
  font-size: 1em;
  line-height: 1.7;
  color: #666666;
}

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

.page-casino__faq-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

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

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

.page-casino__faq-question.active::after {
  content: '-';
  transform: rotate(0deg);
}

.page-casino__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  color: #666666;
  display: none;
  padding-top: 10px;
}

.page-casino__faq-answer.show {
  display: block;
}

/* Call to Action Section */
.page-casino__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 100px 0;
}

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

.page-casino__cta-section .page-casino__section-title::after {
  background-color: #FFFFFF;
}

.page-casino__cta-section .page-casino__section-description {
  color: #f0f0f0;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-casino__hero-title {
    font-size: 3em;
  }
  .page-casino__hero-description {
    font-size: 1.2em;
  }
  .page-casino__section-title {
    font-size: 2.2em;
  }
  .page-casino__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .page-casino__content-wrapper--reverse {
    flex-direction: column;
  }
  .page-casino__image-wrapper {
    min-width: unset;
  }
}

@media (max-width: 768px) {
  .page-casino__hero-section {
    min-height: 500px;
    padding: 40px 20px;
  }
  .page-casino__hero-title {
    font-size: 2.5em;
  }
  .page-casino__hero-description {
    font-size: 1em;
  }
  .page-casino__hero-buttons {
    flex-direction: column;
  }
  .page-casino__button {
    width: 100%;
    max-width: 300px;
  }
  .page-casino__section-title {
    font-size: 1.8em;
  }
  .page-casino__section-description {
    font-size: 0.95em;
  }
  .page-casino__features-grid,
  .page-casino__games-grid,
  .page-casino__promo-cards,
  .page-casino__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-casino__container {
    padding: 0 15px;
  }
  .page-casino__image-wrapper {
    max-width: 100%;
    overflow-x: hidden;
  }
  /* Mobile content area image scaling */
  .page-casino img {
    max-width: 100%;
    height: auto;
    /* Ensure no content area image is smaller than 200px display size */
    min-width: 200px; 
    min-height: 200px; 
  }
  .page-casino__feature-icon,
  .page-casino__step-icon {
    width: 100%;
    height: auto;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}