.page-casino {
  padding-top: 10px; /* Small top padding, main header offset handled by body in shared.css */
  background-color: var(--deep-navy); /* Deep Navy background for the entire page content */
  color: var(--text-main);
  font-family: Arial, sans-serif;
}

.page-casino__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1390px;
  margin: 0 auto 40px auto;
  padding: 0 15px;
  text-align: center;
}

.page-casino__hero-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9; /* Default aspect ratio for hero image */
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-casino__hero-content {
  max-width: 900px;
  text-align: center;
}

.page-casino__main-title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.page-casino__intro-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-casino__cta-button {
  display: inline-block;
  padding: 14px 30px;
  background: var(--button-gradient);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-casino__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow);
}

.page-casino__cta-button--secondary {
  background: var(--card-bg);
  border: 1px solid var(--border);
}

.page-casino__cta-button--secondary:hover {
  background: var(--border);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 10px var(--glow);
}

.page-casino__section-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  position: relative;
  padding-bottom: 15px;
}

.page-casino__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--glow);
  border-radius: 2px;
}

.page-casino__games-section {
  max-width: 1390px;
  margin: 0 auto 60px auto;
  padding: 0 15px;
}

.page-casino__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-casino__game-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding-bottom: 20px;
  border: 1px solid var(--border);
}

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

.page-casino__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-casino__game-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-casino__game-link {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-casino__game-link:hover {
  color: var(--glow);
}

.page-casino__game-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  padding: 0 15px;
}

.page-casino__why-choose-us {
  max-width: 1390px;
  margin: 0 auto 60px auto;
  padding: 0 15px;
}

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

.page-casino__text-content {
  flex: 1;
  text-align: left;
}

.page-casino__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-casino__benefit-item {
  background-color: var(--card-bg);
  border-left: 5px solid var(--glow);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-casino__benefit-item strong {
  color: var(--gold);
}

.page-casino__image-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-casino__service-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-casino__promotions-cta {
  max-width: 1390px;
  margin: 0 auto 60px auto;
  padding: 40px 15px;
  background-color: var(--card-bg);
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
}

.page-casino__promo-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-casino__faq-section {
  max-width: 1390px;
  margin: 0 auto 80px auto;
  padding: 0 15px;
}

.page-casino__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-casino__faq-item {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border);
}

.page-casino__faq-question {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-casino__faq-answer {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Responsive adjustments */
@media (min-width: 850px) {
  .page-casino__content-wrapper {
    flex-direction: row;
    text-align: left;
  }
  .page-casino__image-content {
    order: 2; /* Image on right */
  }
  .page-casino__text-content {
    order: 1; /* Text on left */
    padding-right: 30px;
  }
}

@media (max-width: 768px) {
  .page-casino__hero-image,
  .page-casino__game-image,
  .page-casino__service-image {
    max-width: 100%;
    height: auto; /* Ensure images scale down */
  }

  .page-casino__main-title {
    font-size: clamp(1.1rem, 4.5vw, 1.75rem); /* Smaller H1 for mobile */
  }

  .page-casino__intro-text,
  .page-casino__promo-text,
  .page-casino__faq-answer {
    font-size: 0.95rem;
  }

  .page-casino__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .page-casino__section-title {
    font-size: clamp(1.4rem, 4vw, 2rem);
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .page-casino__games-grid {
    grid-template-columns: 1fr; /* Single column for games on small screens */
  }

  .page-casino__game-image {
    height: 180px; /* Slightly smaller fixed height for mobile game cards */
  }

  .page-casino__why-choose-us .page-casino__content-wrapper {
    flex-direction: column; /* Stack for mobile */
  }
  .page-casino__image-content {
    min-width: unset;
    max-width: 100%;
  }
  .page-casino__text-content {
    padding-right: 0;
  }
}

@media (max-width: 549px) {
  .page-casino__hero-section {
    margin-bottom: 30px;
  }
  .page-casino__main-title {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
  }
  .page-casino__section-title {
    font-size: clamp(1.2rem, 5vw, 1.8rem);
    margin-top: 30px;
    margin-bottom: 25px;
  }
  .page-casino__game-title {
    font-size: 1.3rem;
  }
  .page-casino__faq-question {
    font-size: 1.1rem;
  }
  .page-casino__benefit-item,
  .page-casino__faq-answer {
    font-size: 0.9rem;
  }
  .page-casino__promotions-cta {
    padding: 30px 15px;
  }
}