/* style/casino.css */

/* Custom Colors */
:root {
  --page-casino-bg-dark: #08160F;
  --page-casino-card-bg: #11271B;
  --page-casino-text-main: #F2FFF6;
  --page-casino-text-secondary: #A7D9B8;
  --page-casino-btn-gradient-start: #2AD16F;
  --page-casino-btn-gradient-end: #13994A;
  --page-casino-border: #2E7A4E;
  --page-casino-glow: #57E38D;
  --page-casino-gold: #F2C14E;
  --page-casino-divider: #1E3A2A;
  --page-casino-deep-green: #0A4B2C;
  --page-casino-brand-primary: #11A84E;
  --page-casino-brand-secondary: #22C768;
}

.page-casino {
  background-color: var(--page-casino-bg-dark); /* Dark background */
  color: var(--page-casino-text-main); /* Light text for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-casino__section-title {
  font-size: clamp(2em, 4vw, 2.8em); /* H1/H2 font-size clamp */
  color: var(--page-casino-text-main);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-casino__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* H1 font-size clamp for hero */
  color: var(--page-casino-text-main);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.1;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino__description {
  font-size: 1.1em;
  color: var(--page-casino-text-secondary);
  text-align: center;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-casino__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image block on top, text block below */
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  background-color: var(--page-casino-bg-dark); /* Ensure background is dark */
}

.page-casino__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px; /* Space between image and content */
}

.page-casino__hero-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  min-height: 400px; /* Ensure image is not too small */
  max-height: 700px;
}

.page-casino__hero-content {
  position: relative; /* Not absolute, to ensure text is below image */
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

/* CTA Buttons */
.page-casino__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* For mobile responsiveness */
}

.page-casino__btn-primary,
.page-casino__btn-secondary,
.page-casino__card-link,
.page-casino__faq-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  max-width: 100%;
}