.page-casino {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
}

.page-casino__wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.page-casino__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 0;
  margin-bottom: 40px;
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
}

.page-casino__hero-image-wrapper {
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.page-casino__hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.page-casino__hero-content {
  padding: 20px 16px;
  max-width: 900px;
}

.page-casino__hero-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #F2C14E; /* Gold for main title */
}

.page-casino__hero-description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-casino__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.page-casino__btn--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
}

.page-casino__btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-casino__btn--secondary {
  background-color: #11271B; /* Card BG */
  color: #57E38D; /* Glow */
  border: 1px solid #2E7A4E; /* Border */
}

.page-casino__btn--secondary:hover {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
}

.page-casino__btn--text {
  color: #57E38D; /* Glow */
  text-decoration: underline;
  background: none;
  padding: 0;
  border: none;
}

.page-casino__btn--text:hover {
  color: #F2C14E; /* Gold */
}

.page-casino__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 60px;
}

.page-casino__section-description {
  font-size: 1rem;
  color: #A7D9B8;
  text-align: center;
  max-width: 800px;
  margin: -20px auto 40px auto;
}

.page-casino__about-section {
  padding: 40px 16px;
  max-width: 1280px;
  margin: 0 auto 40px auto;
  background-color: #11271B;
  border-radius: 12px;
}

.page-casino__content-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.page-casino__text-content p {
  margin-bottom: 20px;
  color: #F2FFF6;
  font-size: 1rem;
}

.page-casino__image-wrapper {
  margin: 0;
  width: 100%;
  max-width: 800px;
  border-radius: 8px;
  overflow: hidden;
}

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

.page-casino__games-section {
  padding: 40px 16px;
  max-width: 1280px;
  margin: 0 auto 40px auto;
  background-color: #11271B;
  border-radius: 12px;
}

.page-casino__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
}

.page-casino__game-card {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: #F2FFF6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

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

.page-casino__game-card-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: none; /* Ensure no grayscale */
}

.page-casino__game-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 15px;
  text-align: center;
  color: #F2FFF6;
}

.page-casino__why-choose-us-section {
  padding: 40px 16px;
  max-width: 1280px;
  margin: 0 auto 40px auto;
  background-color: #11271B;
  border-radius: 12px;
}

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

.page-casino__feature-item {
  background-color: #0A4B2C; /* Deep Green */
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-casino__feature-title {
  font-size: 1.3rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-casino__feature-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-casino__responsible-gaming-section {
  padding: 40px 16px;
  max-width: 1280px;
  margin: 0 auto 40px auto;
  background-color: #11271B;
  border-radius: 12px;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-casino__content-grid {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-casino__hero-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
  .page-casino__hero-description {
    font-size: 1rem;
  }
  .page-casino__btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  .page-casino__hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .page-casino__section-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }
  /* Ensure all images in .page-casino are responsive */
  .page-casino img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  /* Enforce min dimensions for content images */
  .page-casino__image-wrapper img, 
  .page-casino__game-card-image {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
  }
}

@media (max-width: 549px) {
  .page-casino__hero-section,
  .page-casino__about-section,
  .page-casino__games-section,
  .page-casino__why-choose-us-section,
  .page-casino__responsible-gaming-section {
    padding: 20px 10px;
  }
  .page-casino__games-grid {
    grid-template-columns: 1fr;
  }
  .page-casino__features-grid {
    grid-template-columns: 1fr;
  }
  .page-casino__hero-title {
    font-size: clamp(1.3rem, 7vw, 1.8rem);
  }
  .page-casino__hero-description {
    font-size: 0.9rem;
  }
  .page-casino__section-title {
    font-size: clamp(1.2rem, 6vw, 1.6rem);
  }
}

/* Ensure no image filter */
.page-casino img {
  filter: none !important;
}