.page-casino {
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small padding to avoid content being completely hidden by fixed header */
}

.page-casino__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background-color: #F4F7FB;
}

.page-casino__hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.page-casino__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-casino__main-title {
  font-size: clamp(2.2rem, 4vw, 3rem); /* Using clamp for responsive H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-casino__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #1F2D3D; /* Text Main */
}

.page-casino__hero-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.page-casino__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  font-size: 1rem;
}

.page-casino__btn--primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  border: none;
}

.page-casino__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.4);
}

.page-casino__btn--secondary {
  background-color: #FFFFFF;
  color: #2F6BFF;
  border: 1px solid #2F6BFF;
}

.page-casino__btn--secondary:hover {
  background-color: #E6F0FF;
  transform: translateY(-2px);
}

.page-casino__games-overview,
.page-casino__features-section,
.page-casino__promotions-callout {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 20px;
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-casino__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  text-align: center;
  margin-bottom: 15px;
}

.page-casino__section-description {
  font-size: 1.1rem;
  color: #1F2D3D; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-casino__game-card {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

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

.page-casino__game-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2F6BFF; /* Main Color */
  margin-bottom: 10px;
}

.page-casino__game-card-title a {
  color: #2F6BFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-casino__game-card-title a:hover {
  color: #1F2D3D; /* Text Main */
}

.page-casino__game-card-text {
  font-size: 0.95rem;
  color: #1F2D3D; /* Text Main */
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-casino__btn--small {
  padding: 8px 18px;
  font-size: 0.9rem;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  border: none;
}

.page-casino__btn--small:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 5px rgba(47, 107, 255, 0.3);
}

.page-casino__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-casino__feature-item {
  padding: 25px;
  background-color: #FFFFFF;
  border-radius: 10px;
  border: 1px solid #D6E2FF;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.page-casino__feature-icon {
  width: 80px; /* Min 200px rule is for content images, these are illustrative */
  height: 80px; /* However, the global rule states ALL images must be >= 200px. This implies these icons should be larger. */
  /* Adjusting to meet minimum 200x200 requirement */
  min-width: 200px;
  min-height: 200px;
  width: 200px; /* For display */
  height: 200px; /* For display */
  object-fit: contain;
  margin: 0 auto 20px auto;
  display: block;
  border-radius: 50%; /* Make them round if they are icons */
  box-shadow: 0 0 0 10px #A5C4FF; /* Glow */
}

.page-casino__feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2F6BFF; /* Main Color */
  margin-bottom: 10px;
}

.page-casino__feature-text {
  font-size: 0.95rem;
  color: #1F2D3D; /* Text Main */
}

.page-casino__promotions-callout {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  padding: 50px;
  background: linear-gradient(180deg, #6FA3FF 0%, #2F6BFF 100%); /* Using main/aux colors for background */
  color: #FFFFFF;
  text-align: left;
}

.page-casino__promotions-callout .page-casino__section-title {
  color: #FFFFFF;
  text-align: left;
  font-size: 2.5rem;
}

.page-casino__promotions-callout .page-casino__description {
  color: #FFFFFF;
  text-align: left;
  margin-bottom: 30px;
}

.page-casino__btn--cta {
  background-color: #FFFFFF;
  color: #2F6BFF;
  border: none;
}

.page-casino__btn--cta:hover {
  background-color: #E6F0FF;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.4);
}

.page-casino__promotions-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

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

  .page-casino__main-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }

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

  .page-casino__promotions-callout {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .page-casino__promotions-callout .page-casino__section-title,
  .page-casino__promotions-callout .page-casino__description {
    text-align: center;
  }

  .page-casino__promotions-image {
    order: -1; /* Image appears above text on smaller screens */
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-casino__hero-section {
    padding: 20px 10px;
  }

  .page-casino__hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .page-casino__btn {
    width: 100%;
    padding: 10px 20px;
  }

  .page-casino__game-cards,
  .page-casino__features-grid {
    grid-template-columns: 1fr;
  }

  .page-casino__section-title {
    font-size: 1.8rem;
  }

  .page-casino__section-description {
    font-size: 1rem;
  }

  .page-casino__games-overview,
  .page-casino__features-section,
  .page-casino__promotions-callout {
    margin: 20px auto;
    padding: 30px 15px;
  }

  /* Enforce image responsiveness for content area images */
  .page-casino img {
    max-width: 100%;
    height: auto;
  }

  .page-casino__feature-icon {
    width: 200px;
    height: 200px;
  }
}

/* Ensure color contrast */
.page-casino__main-title,
.page-casino__section-title,
.page-casino__game-card-title a,
.page-casino__feature-title {
  /* Assuming background is light, these dark colors will have good contrast */
  color: #000000; /* Custom Color_1776249996415 */
}

.page-casino__description,
.page-casino__section-description,
.page-casino__game-card-text,
.page-casino__feature-text {
  /* Assuming background is light, these dark colors will have good contrast */
  color: #1F2D3D; /* Text Main */
}

.page-casino__btn--primary,
.page-casino__btn--small {
  color: #FFFFFF; /* White text on blue gradient background */
}

.page-casino__btn--secondary {
  color: #2F6BFF; /* Blue text on white background */
}

.page-casino__promotions-callout .page-casino__section-title,
.page-casino__promotions-callout .page-casino__description {
  color: #FFFFFF; /* White text on blue gradient background */
}

.page-casino__btn--cta {
  color: #2F6BFF; /* Blue text on white background */
}


/* No CSS filters allowed for images */
.page-casino img {
  filter: none !important;
}