.page-casino {
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding for inner pages */
}

.page-casino__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(to right, #F2C14E, #FFD36B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; /* Fallback for browsers not supporting text-fill-color */
}

.page-casino__section-subtitle {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6;
}

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

.page-casino__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Max width for hero image */
  margin-bottom: 30px;
}

.page-casino__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(242, 193, 78, 0.3);
}

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

.page-casino__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: #F2C14E;
  line-height: 1.2;
}

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

.page-casino__hero-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino__hero-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 211, 107, 0.4);
}

.page-casino__games-showcase {
  padding: 60px 20px;
  background-color: #0A0A0A;
}

.page-casino__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.page-casino__game-tile {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3A2A12;
}

.page-casino__game-tile:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 25px rgba(255, 211, 107, 0.3);
}

.page-casino__game-tile img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  min-height: 200px; /* Ensure images are not too small */
}

.page-casino__button-wrapper {
  text-align: center;
  margin-top: 20px;
}

.page-casino__view-all-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino__view-all-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(255, 211, 107, 0.3);
}

.page-casino__features-section {
  padding: 60px 20px;
  background-color: #111111;
}

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

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

.page-casino__feature-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
  min-height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-casino__feature-title {
  font-size: 1.5em;
  color: #FFD36B;
  margin-bottom: 15px;
}

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

.page-casino__promotions-cta {
  padding: 60px 20px;
  background-color: #0A0A0A;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-casino__promotions-content {
  flex: 1;
  max-width: 600px;
}

.page-casino__promotions-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #F2C14E;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-casino__promotions-description {
  font-size: 1.1em;
  color: #FFF6D6;
  margin-bottom: 30px;
}

.page-casino__promotions-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino__promotions-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 211, 107, 0.4);
}

.page-casino__promotions-image-wrapper {
  flex: 1;
  max-width: 500px;
}

.page-casino__promotions-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.2);
  min-height: 200px; /* Ensure image is not too small */
}

.page-casino__join-us-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #111111;
}

.page-casino__button-group {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-casino__join-button,
.page-casino__login-button {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 150px;
}

.page-casino__login-button {
  background: #3A2A12;
  color: #FFF6D6;
  border: 1px solid #FFD36B;
}

.page-casino__join-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 211, 107, 0.4);
}

.page-casino__login-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(58, 42, 18, 0.4);
  background: #5A4A32;
}

/* Mobile responsiveness */
@media (max-width: 849px) {
  .page-casino__hero-section {
    padding: 15px;
  }

  .page-casino__hero-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }

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

  .page-casino__games-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .page-casino__promotions-cta {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .page-casino__promotions-content,
  .page-casino__promotions-image-wrapper {
    max-width: 100%;
  }

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

  .page-casino__promotions-button {
    width: 100%;
    max-width: 250px;
  }

  .page-casino__join-button,
  .page-casino__login-button {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  .page-casino__games-grid,
  .page-casino__features-grid {
    grid-template-columns: 1fr;
  }
  .page-casino__games-grid img, .page-casino__feature-card img, .page-casino__promotions-image {
    max-width: 100%;
    height: auto;
    min-height: 200px;
  }
  .page-casino__section-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-casino__section-subtitle {
    font-size: 0.9em;
  }
}

@media (max-width: 549px) {
  .page-casino__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-casino__hero-title {
    font-size: clamp(1.8rem, 8vw, 2.2rem);
  }

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

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

  .page-casino__games-grid {
    gap: 15px;
  }

  .page-casino__feature-card {
    padding: 20px;
  }

  .page-casino__promotions-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
  }

  .page-casino__join-button,
  .page-casino__login-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-casino__button-group {
    flex-direction: column;
    align-items: center;
  }
  .page-casino__games-grid img, .page-casino__feature-card img, .page-casino__promotions-image {
    width: 100%;
    height: auto;
    min-height: 200px;
  }
}