.page-casino {
  background-color: #0A0A0A; /* Ensure main content area matches body background */
  color: #FFF6D6; /* Main text color for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Hero Section */
.page-casino__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image first, then content */
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: #0A0A0A; /* Match body */
}

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

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

.page-casino__hero-content {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: center;
  padding: 0 20px;
}

.page-casino__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em); /* H1 font size with clamp */
  color: #FFD36B; /* Highlight with auxiliary color */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 8px rgba(255, 211, 107, 0.4);
}

.page-casino__lead-text {
  font-size: 1.2em;
  color: #FFF6D6;
  margin-bottom: 30px;
}

.page-casino__cta-buttons {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping for mobile */
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.page-casino__btn-primary,
.page-casino__btn-secondary,
.page-casino__btn-download {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box; /* Crucial for button responsiveness */
  text-align: center;
}

.page-casino__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for bright button */
  border: 2px solid transparent;
}

.page-casino__btn-primary:hover {
  background: linear-gradient(180deg, #FFE085 0%, #E8B02F 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(242, 193, 78, 0.4);
}

.page-casino__btn-secondary,
.page-casino__btn-download {
  background: #111111; /* Card BG color */
  color: #FFD36B; /* Auxiliary color */
  border: 2px solid #3A2A12; /* Border color */
}

.page-casino__btn-secondary:hover,
.page-casino__btn-download:hover {
  background: #1A1A1A;
  color: #FFE085;
  border-color: #F2C14E;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* General Sections */
.page-casino__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-casino__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  color: #F2C14E; /* Main color for titles */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-casino__sub-title {
  font-size: clamp(1.4em, 2.8vw, 2em);
  color: #FFD36B; /* Auxiliary color for sub-titles */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-casino__text-block {
  font-size: 1.1em;
  color: #FFF6D6;
  margin-bottom: 20px;
}

.page-casino__text-link {
  color: #F2C14E;
  text-decoration: none;
  font-weight: bold;
}

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

/* About Section */
.page-casino__about-section {
  background-color: #0A0A0A;
  padding-bottom: 60px;
}

.page-casino__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  list-style: none;
  padding: 0;
}

.page-casino__feature-item {
  background-color: #111111; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-casino__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.2);
}

.page-casino__feature-icon {
  width: 200px; /* Enforce min size */
  height: 200px; /* Enforce min size */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-casino__feature-heading {
  font-size: 1.3em;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-casino__feature-description {
  color: #FFF6D6;
  font-size: 0.95em;
}

/* Games Section */
.page-casino__games-section {
  background-color: #0A0A0A;
  padding-bottom: 60px;
}

.page-casino__game-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 50px;
}

.page-casino__game-category-item {
  background-color: #111111;
  border-radius: 50px;
  padding: 10px 25px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-casino__game-category-item:hover {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(242, 193, 78, 0.3);
}

.page-casino__game-category-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #FFF6D6;
  font-weight: bold;
}

.page-casino__game-category-item:hover .page-casino__game-category-link {
  color: #111111; /* Dark text on hover */
}

.page-casino__category-icon {
  width: 30px; /* Allowed small size */
  height: 30px; /* Allowed small size */
  margin-right: 10px;
  object-fit: contain;
}

.page-casino__category-name {
  font-size: 1.1em;
}

.page-casino__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

/* Promo Section */
.page-casino__promo-section {
  background-color: #0A0A0A;
  padding-bottom: 60px;
}

.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-color: #111111;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-casino__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.2);
}

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

.page-casino__promo-title {
  font-size: 1.3em;
  color: #F2C14E;
  padding: 20px 20px 10px;
}

.page-casino__promo-description {
  color: #FFF6D6;
  padding: 0 20px 20px;
  flex-grow: 1; /* Push button to bottom */
}

.page-casino__promo-card .page-casino__btn-primary,
.page-casino__promo-card .page-casino__btn-secondary {
  margin: 0 20px 20px;
  width: calc(100% - 40px); /* Adjust width to fit padding */
}

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

/* Security Section */
.page-casino__security-section {
  background-color: #0A0A0A;
  padding-bottom: 60px;
}

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

.page-casino__security-item {
  background-color: #111111;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-casino__security-icon {
  width: 200px; /* Enforce min size */
  height: 200px; /* Enforce min size */
  object-fit: contain;
  margin-bottom: 20px;
}

/* Mobile Section */
.page-casino__mobile-section {
  background-color: #0A0A0A;
  padding-bottom: 60px;
}