.page-casino {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  padding-bottom: 50px;
}

.page-casino__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Desktop default */
  padding-bottom: 50px;
  background: linear-gradient(135deg, #F2C14E, #FFD36B);
  color: #000000; /* Dark text on light gradient */
  position: relative;
  overflow: hidden;
}

.page-casino__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Max height for hero image */
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.page-casino__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim the image to ensure text readability on top */
}

.page-casino__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-top: -150px; /* Pull content up over the dimmed image */
  padding: 20px;
  background: rgba(17, 17, 17, 0.8); /* Card BG with transparency for contrast */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  color: #FFF6D6;
}

.page-casino__hero-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.05em;
  margin-bottom: 15px;
  color: #F2C14E; /* Primary color for title */
}

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

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

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

.page-casino__section {
  padding: 60px 0;
  text-align: center;
}

.page-casino__section--discover {
  background-color: #0A0A0A;
}

.page-casino__section-title {
  font-size: 2.5rem;
  color: #F2C14E; /* Primary color for titles */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-casino__section-description {
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #FFF6D6;
}

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

.page-casino__feature-card {
  background: #111111; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #FFF6D6;
  border: 1px solid #3A2A12; /* Border */
}

.page-casino__feature-icon {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px auto;
  object-fit: contain;
}

.page-casino__feature-title {
  font-size: 1.5rem;
  color: #FFD36B; /* Glow color for feature titles */
  margin-bottom: 15px;
}

.page-casino__feature-text {
  font-size: 1rem;
  color: #FFF6D6;
}

.page-casino__section--games {
  background-color: #0A0A0A;
}

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

.page-casino__category-item {
  background: #111111; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #FFF6D6;
  border: 1px solid #3A2A12; /* Border */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-casino__category-icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 20px auto;
  object-fit: contain;
}

.page-casino__category-title {
  font-size: 1.4rem;
  color: #FFD36B; /* Glow color for category titles */
  margin-bottom: 15px;
}

.page-casino__category-text {
  font-size: 1rem;
  color: #FFF6D6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-casino__btn-text-link {
  color: #F2C14E;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-casino__btn-text-link:hover {
  color: #FFD36B;
  text-decoration: underline;
}

.page-casino__section--promotions {
  background-color: #111111; /* Card BG for dark section */
}

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

.page-casino__promo-card {
  background: #0A0A0A; /* Background color for promo cards */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  color: #FFF6D6;
  border: 1px solid #3A2A12; /* Border */
}

.page-casino__promo-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-casino__promo-title {
  font-size: 1.3rem;
  color: #FFD36B; /* Glow color for promo titles */
  margin-bottom: 10px;
}

.page-casino__promo-text {
  font-size: 0.95rem;
  color: #FFF6D6;
  margin-bottom: 20px;
}

.page-casino__section--login-register {
  background-color: #0A0A0A;
}

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

.page-casino__step-card {
  background: #111111; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #FFF6D6;
  border: 1px solid #3A2A12; /* Border */
}

.page-casino__step-icon {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px auto;
  object-fit: contain;
}

.page-casino__step-title {
  font-size: 1.4rem;
  color: #FFD36B; /* Glow color for step titles */
  margin-bottom: 15px;
}

.page-casino__step-text {
  font-size: 1rem;
  color: #FFF6D6;
}

.page-casino__cta-buttons--centered {
  margin-top: 40px;
}

.page-casino__section--mobile {
  background-color: #111111; /* Card BG for dark section */
}

.page-casino__mobile-grid {
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: left;
}

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

.page-casino__mobile-content .page-casino__section-title,
.page-casino__mobile-content .page-casino__section-description {
  text-align: left;
}

.page-casino__app-download-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-casino__mobile-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-casino__mobile-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-casino__section--banking {
  background-color: #0A0A0A;
}

.page-casino__payment-methods {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.page-casino__payment-logo {
  width: 167px; /* Fixed width */
  height: 127px; /* Fixed height */
  object-fit: contain;
  filter: brightness(0.8) grayscale(100%) opacity(0.7); /* Slightly muted for integration */
  transition: filter 0.3s ease;
}

.page-casino__payment-logo:hover {
  filter: brightness(1) grayscale(0%) opacity(1);
}

.page-casino__btn-secondary--wide {
  margin-top: 40px;
  min-width: 250px;
  display: inline-block;
}

.page-casino__section--support {
  background-color: #111111; /* Card BG for dark section */
}