.page-casino {
  color: #333333; /* Dark text for light background */
  background-color: #FFFFFF;
}

.page-casino__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #000000;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  padding-bottom: 0; /* Adjust as image is full width */
}

.page-casino__hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-casino__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Highlight color for title */
}

.page-casino__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

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

.page-casino__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
}

.page-casino__btn--register {
  background-color: #FCBC45;
  color: #000000;
}

.page-casino__btn--register:hover {
  background-color: #e0a53b;
}

.page-casino__btn--login {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-casino__btn--login:hover {
  background-color: #f0f0f0;
  border-color: #e0a53b;
}

.page-casino__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

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

.page-casino__content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-casino__section-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 30px;
  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: #FCBC45;
  border-radius: 2px;
}

.page-casino__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
  color: #555555;
}

.page-casino__about-section {
  background-color: #f8f8f8;
  padding: 60px 0;
}

.page-casino__text-block {
  margin-bottom: 40px;
  line-height: 1.7;
  font-size: 1.05em;
}

.page-casino__text-block h3 {
  font-size: 1.8em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-casino__text-block p {
  margin-bottom: 15px;
}

.page-casino__image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.page-casino__grid-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-casino__games-section {
  padding: 60px 0;
}

.page-casino__game-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino__game-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-casino__game-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-casino__category-title {
  font-size: 2.2em;
  color: #000000;
  margin-bottom: 15px;
}

.page-casino__game-category p {
  font-size: 1.05em;
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: 25px;
  color: #555555;
}

.page-casino__btn--play-slots,
.page-casino__btn--play-live,
.page-casino__btn--play-table,
.page-casino__btn--play-arcade {
  background-color: #FCBC45;
  color: #000000;
}

.page-casino__btn--play-slots:hover,
.page-casino__btn--play-live:hover,
.page-casino__btn--play-table:hover,
.page-casino__btn--play-arcade:hover {
  background-color: #e0a53b;
}

.page-casino__promotions-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 0;
}

.page-casino__promotions-section .page-casino__section-title,
.page-casino__promotions-section .page-casino__section-intro {
  color: #FFFFFF;
}

.page-casino__promotions-section .page-casino__section-title::after {
  background-color: #FCBC45;
}

.page-casino__promo-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.page-casino__promo-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-casino__promo-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-casino__promo-title {
  font-size: 2.2em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-casino__promo-card p {
  font-size: 1.05em;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 25px auto;
  color: #e0e0e0;
}

.page-casino__btn--claim-bonus,
.page-casino__btn--view-promos {
  background-color: #FCBC45;
  color: #000000;
}

.page-casino__btn--claim-bonus:hover,
.page-casino__btn--view-promos:hover {
  background-color: #e0a53b;
}

.page-casino__btn--learn-vip {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-casino__btn--learn-vip:hover {
  background-color: #f0f0f0;
  border-color: #e0a53b;
}

.page-casino__security-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-casino__security-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.page-casino__security-icon {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-casino__feature-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 10px;
}

.page-casino__security-feature p {
  font-size: 1.0em;
  line-height: 1.6;
  max-width: 600px;
  color: #555555;
}

.page-casino__mobile-section {
  padding: 60px 0;
}

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

.page-casino__mobile-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-casino__mobile-text {
  text-align: center;
}

.page-casino__mobile-text .page-casino__subsection-title {
  font-size: 2.2em;
  color: #000000;
  margin-bottom: 20px;
}

.page-casino__mobile-text p {
  font-size: 1.05em;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 30px auto;
  color: #555555;
}

.page-casino__btn--download-app {
  background-color: #FCBC45;
  color: #000000;
}

.page-casino__btn--download-app:hover {
  background-color: #e0a53b;
}

.page-casino__cta-section {
  background-color: #000000;
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-casino__cta-container {
  max-width: 900px;
}

.page-casino__cta-title {
  font-size: 3em;
  color: #FCBC45;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-casino__cta-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  color: #e0e0e0;
}

.page-casino__btn--cta-register {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
}

.page-casino__btn--cta-register:hover {
  background-color: #e0a53b;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-casino__games-section .page-casino__game-category,
  .page-casino__promotions-section .page-casino__promo-card,
  .page-casino__security-section .page-casino__security-feature {
    display: grid;
    grid-template-columns: 1fr 2fr; /* Image on left, text on right */
    gap: 30px;
    text-align: left;
    align-items: center;
  }

  .page-casino__games-section .page-casino__game-category:nth-child(even),
  .page-casino__promotions-section .page-casino__promo-card:nth-child(even) {
    grid-template-areas: "text image"; /* Image on right, text on left for even cards */
  }

  .page-casino__games-section .page-casino__game-image,
  .page-casino__promotions-section .page-casino__promo-image,
  .page-casino__security-section .page-casino__security-icon {
    grid-area: image;
    margin-bottom: 0;
  }

  .page-casino__games-section .page-casino__category-title,
  .page-casino__promotions-section .page-casino__promo-title,
  .page-casino__security-section .page-casino__feature-title {
    text-align: left;
  }

  .page-casino__games-section .page-casino__game-category p,
  .page-casino__promotions-section .page-casino__promo-card p,
  .page-casino__security-section .page-casino__security-feature p {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .page-casino__games-section .page-casino__btn,
  .page-casino__promotions-section .page-casino__btn {
    text-align: left;
    display: inline-block;
  }

  .page-casino__mobile-content {
    flex-direction: row;
    text-align: left;
  }

  .page-casino__mobile-text {
    text-align: left;
  }
}

@media (max-width: 1024px) {
  .page-casino__hero-title {
    font-size: 3em;
  }

  .page-casino__section-title {
    font-size: 2.5em;
  }

  .page-casino__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-casino__hero-section {
    padding: 30px 15px 0 15px;
  }

  .page-casino__hero-title {
    font-size: 2.5em;
  }

  .page-casino__hero-description {
    font-size: 1em;
  }

  .page-casino__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-casino__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-casino__content-container {
    padding: 30px 15px;
  }

  .page-casino__section-title {
    font-size: 2em;
  }

  .page-casino__section-intro {
    font-size: 0.95em;
  }

  .page-casino__game-category,
  .page-casino__promo-card,
  .page-casino__security-feature {
    padding: 20px;
  }

  .page-casino__category-title,
  .page-casino__promo-title,
  .page-casino__feature-title,
  .page-casino__mobile-text .page-casino__subsection-title {
    font-size: 1.8em;
  }

  .page-casino__game-category p,
  .page-casino__promo-card p,
  .page-casino__security-feature p,
  .page-casino__mobile-text p {
    font-size: 0.95em;
  }

  .page-casino__cta-section {
    padding: 60px 15px;
  }

  .page-casino__cta-title {
    font-size: 2em;
  }

  .page-casino__cta-description {
    font-size: 1em;
  }

  .page-casino__btn--cta-register {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-casino__mobile-content {
    flex-direction: column;
  }

  /* Mobile responsive image sizing for content area */
  .page-casino img {
    max-width: 100%;
    height: auto;
  }
}