.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 not hidden by fixed header */
}

.page-casino__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
}

.page-casino__hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px; /* Max width for the container */
  margin: 0 auto;
}

.page-casino__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-casino__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #ffffff;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-casino__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #F3C500;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

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

.page-casino__btn--primary {
  background-color: #F3C500;
  color: #0A246A;
}

.page-casino__btn--primary:hover {
  background-color: #e0b000;
  transform: translateY(-2px);
}

.page-casino__btn--secondary {
  background-color: #0A246A;
  color: #F3C500;
  border: 2px solid #F3C500;
}

.page-casino__btn--secondary:hover {
  background-color: #071a4a;
  transform: translateY(-2px);
}

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

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

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

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

/* Features Section */
.page-casino__features-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.page-casino__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.page-casino__feature-icon {
  width: 100%; /* Ensure images are not tiny */
  height: auto;
  max-width: 200px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

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

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

/* Games Overview Section */
.page-casino__games-overview-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-casino__game-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 80px;
}

.page-casino__game-category--reverse .page-casino__category-content {
  flex-direction: row-reverse;
}

.page-casino__category-title {
  font-size: 2.2em;
  color: #0A246A;
  margin-bottom: 30px;
  text-align: center;
}

.page-casino__category-content {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.page-casino__category-image {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-casino__category-text {
  flex: 1;
  min-width: 300px;
}

.page-casino__category-text p {
  margin-bottom: 15px;
  color: #555555;
}

.page-casino__game-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-casino__game-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #444444;
}

.page-casino__game-list li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #F3C500;
}

.page-casino__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
  background-color: #0A246A;
  color: #F3C500;
  border: 2px solid #0A246A;
}

.page-casino__btn--small:hover {
  background-color: #F3C500;
  color: #0A246A;
  border-color: #F3C500;
}

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

.page-casino__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

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

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

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

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

.page-casino__promo-text {
  font-size: 0.95em;
  color: #666666;
  padding: 0 15px 20px;
}

.page-casino__btn--promo {
  background-color: #F3C500;
  color: #0A246A;
  padding: 12px 25px;
  margin-bottom: 20px;
}

.page-casino__btn--promo:hover {
  background-color: #e0b000;
}

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

.page-casino__more-promos-link p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-casino__btn--text {
  background-color: transparent;
  color: #0A246A;
  border: 2px solid #0A246A;
}

.page-casino__btn--text:hover {
  background-color: #0A246A;
  color: #F3C500;
}

/* Security Section */
.page-casino__security-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-casino__security-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-casino__security-image {
  flex: 1;
  min-width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-casino__security-text {
  flex: 1;
  min-width: 300px;
}

.page-casino__security-text p {
  margin-bottom: 15px;
  color: #555555;
}

.page-casino__security-points {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-casino__security-points li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #444444;
}

.page-casino__security-points li::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: #0A246A;
}

/* Payment Section */
.page-casino__payment-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.page-casino__payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.page-casino__payment-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
}

.page-casino__payment-title {
  font-size: 1.8em;
  color: #0A246A;
  margin-bottom: 15px;
}

.page-casino__payment-item p {
  color: #666666;
}

.page-casino__payment-note {
  text-align: center;
  font-size: 0.9em;
  color: #777777;
  margin-top: 20px;
}

/* Mobile Section */
.page-casino__mobile-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-casino__mobile-image {
  flex: 1;
  min-width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-casino__mobile-text {
  flex: 1;
  min-width: 300px;
}

.page-casino__mobile-text p {
  margin-bottom: 15px;
  color: #555555;
}

/* Support Section */
.page-casino__support-section {
  padding: 80px 20px;
  background-color: #f0f0f0;
}

.page-casino__support-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-casino__channel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-casino__channel-title {
  font-size: 1.6em;
  color: #0A246A;
  margin-bottom: 15px;
}

.page-casino__channel-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

/* Get Started Section */
.page-casino__get-started-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-casino__step-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  position: relative;
  padding-top: 60px; /* Space for step number */
}

.page-casino__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #F3C500;
  color: #0A246A;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 4px solid #ffffff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-casino__step-title {
  font-size: 1.8em;
  color: #0A246A;
  margin-bottom: 15px;
}

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

.page-casino__btn--step {
  background-color: #0A246A;
  color: #F3C500;
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-casino__btn--step:hover {
  background-color: #F3C500;
  color: #0A246A;
}

/* CTA Section */
.page-casino__cta-section {
  background-color: #0A246A;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-top: 80px;
}

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

.page-casino__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-casino__btn--cta {
  background-color: #F3C500;
  color: #0A246A;
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 10px;
}

.page-casino__btn--cta:hover {
  background-color: #e0b000;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-casino__hero-title {
    font-size: 2.8em;
  }
  .page-casino__hero-description {
    font-size: 1.1em;
  }
  .page-casino__section-title {
    font-size: 2.2em;
  }
  .page-casino__game-category--reverse .page-casino__category-content {
    flex-direction: column;
  }
  .page-casino__category-content {
    flex-direction: column;
    text-align: center;
  }
  .page-casino__category-image {
    max-width: 100%;
  }
  .page-casino__security-content {
    flex-direction: column;
  }
  .page-casino__mobile-content {
    flex-direction: column;
  }
  .page-casino__security-image, .page-casino__mobile-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-casino__hero-title {
    font-size: 2em;
  }
  .page-casino__hero-description {
    font-size: 1em;
  }
  .page-casino__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-casino__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-casino__section-title {
    font-size: 1.8em;
  }
  .page-casino__features-grid, .page-casino__promotions-grid, .page-casino__payment-grid, .page-casino__support-channels, .page-casino__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-casino__cta-title {
    font-size: 2em;
  }
  /* Content area image constraints for mobile */
  .page-casino img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }
  .page-casino__feature-icon, .page-casino__promo-image, .page-casino__category-image, .page-casino__security-image, .page-casino__mobile-image {
    min-width: 200px; /* Ensure images are not tiny */
  }
  .page-casino__promo-image {
    height: 200px;
  }
  .page-casino__feature-card, .page-casino__promo-card, .page-casino__payment-item, .page-casino__channel-card, .page-casino__step-card {
    padding: 20px;
  }
  .page-casino__step-number {
    top: -25px;
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }
  .page-casino__step-card {
    padding-top: 50px;
  }
}

@media (max-width: 480px) {
  .page-casino__hero-content {
    padding: 15px;
  }
  .page-casino__hero-title {
    font-size: 1.6em;
  }
  .page-casino__hero-description {
    font-size: 0.9em;
  }
  .page-casino__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-casino__section-title {
    font-size: 1.5em;
  }
  .page-casino__cta-title {
    font-size: 1.8em;
  }
  .page-casino__cta-description {
    font-size: 1em;
  }
  .page-casino__btn--cta {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}