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

.page-casino-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, larger bottom for spacing */
  background-color: #111111; /* Card BG for hero background */
  position: relative;
  overflow: hidden;
}

.page-casino-games__hero-image {
  width: 100%;
  max-width: 1920px; /* Constrain hero image width */
  margin-bottom: 30px;
}

.page-casino-games__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 211, 107, 0.3);
}

.page-casino-games__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-casino-games__main-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem); /* Adjusted H1 font size */
  font-weight: bold;
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-casino-games__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-casino-games__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-casino-games__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #3A2A12; /* Darker text for contrast on gold button */
  border: none;
  cursor: pointer;
}

.page-casino-games__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 211, 107, 0.4);
}

.page-casino-games__button--secondary {
  background: none;
  border: 2px solid #FFD36B;
  color: #FFD36B;
}

.page-casino-games__button--secondary:hover {
  background: rgba(255, 211, 107, 0.1);
  box-shadow: 0 0 15px rgba(255, 211, 107, 0.5);
}

.page-casino-games__section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-casino-games__section-title {
  font-size: 2.5rem;
  color: #FFD36B; /* Glow */
  margin-bottom: 25px;
  font-weight: bold;
}

.page-casino-games__section-description {
  font-size: 1.1rem;
  color: #FFF6D6;
  max-width: 800px;
  margin: 0 auto 50px;
}

.page-casino-games__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-casino-games__category-card {
  background-color: #111111; /* Card BG */
  border-radius: 15px;
  padding: 30px;
  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; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-casino-games__category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 211, 107, 0.2);
}

.page-casino-games__category-card img {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensure images are not too small */
  min-width: 200px;
  min-height: 200px;
  border-radius: 10px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-casino-games__card-title {
  font-size: 1.8rem;
  color: #F2C14E; /* Main Color */
  margin-bottom: 15px;
}

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

.page-casino-games__button--small {
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 30px;
}

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

.page-casino-games__feature-item {
  background-color: #111111; /* Card BG */
  border-radius: 15px;
  padding: 30px;
  text-align: left;
  border: 1px solid #3A2A12; /* Border */
}

.page-casino-games__feature-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Main Color */
  margin-bottom: 10px;
}

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

.page-casino-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.page-casino-games__button--large {
  padding: 18px 40px;
  font-size: 1.2rem;
}

.page-casino-games__download-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 80px 20px;
}

.page-casino-games__download-content {
  text-align: center;
  max-width: 600px;
}

.page-casino-games__download-image img {
  max-width: 100%;
  height: auto;
  min-width: 200px;
  min-height: 200px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.page-casino-games__explore-more {
  padding-bottom: 80px;
}

.page-casino-games__more-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.page-casino-games__link-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-decoration: none;
  color: #F2C14E; /* Main Color */
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.page-casino-games__link-card:hover {
  background-color: #3A2A12; /* Darker border color on hover */
  color: #FFD36B; /* Glow */
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-casino-games__hero-section {
    flex-direction: column;
  }
  .page-casino-games__download-app {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    text-align: left;
  }
  .page-casino-games__download-content {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-casino-games__main-title {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }
  .page-casino-games__section-title {
    font-size: 2rem;
  }
  .page-casino-games__hero-actions, .page-casino-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-casino-games__button, .page-casino-games__button--large {
    width: 100%;
    max-width: 300px;
  }
  .page-casino-games__category-card img, .page-casino-games__download-image img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px;
  }
  .page-casino-games__game-categories, .page-casino-games__features-grid, .page-casino-games__more-links {
    grid-template-columns: 1fr;
  }
}