/* style/live-casino-game-halls.css */
.page-live-casino-game-halls {
  font-family: 'Arial', sans-serif;
  color: #f5e6ce; /* Light text for dark background */
  background-color: #0A1931; /* Main dark background */
}

.page-live-casino-game-halls__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-live-casino-game-halls__hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  background: linear-gradient(135deg, #0A1931 0%, #301934 100%); /* Darker gradient for background */
  color: #f5e6ce;
  text-align: center;
  overflow: hidden;
  padding: 80px 20px;
}

.page-live-casino-game-halls__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-live-casino-game-halls__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-live-casino-game-halls__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-live-casino-game-halls__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary gold for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-live-casino-game-halls__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-live-casino-game-halls__hero-btn, .page-live-casino-game-halls__btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FFD700; /* Gold button */
  color: #0A1931; /* Dark text on gold */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-live-casino-game-halls__hero-btn:hover, .page-live-casino-game-halls__btn:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-live-casino-game-halls__btn--primary {
  background-color: #FFD700;
  color: #0A1931;
}

.page-live-casino-game-halls__btn--secondary {
  background-color: #0A1931;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-live-casino-game-halls__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
}

.page-live-casino-game-halls__btn--text {
  background: none;
  color: #FFD700;
  border: none;
  padding: 10px 20px;
  text-decoration: underline;
}

.page-live-casino-game-halls__btn--text:hover {
  color: #e6c200;
  background: none;
  transform: none;
}

.page-live-casino-game-halls__intro,
.page-live-casino-game-halls__game-halls,
.page-live-casino-game-halls__game-types,
.page-live-casino-game-halls__promotions,
.page-live-casino-game-halls__responsible-gambling,
.page-live-casino-game-halls__cta {
  padding: 80px 0;
  text-align: center;
}

.page-live-casino-game-halls__intro {
  background-color: #1A2B44; /* Slightly lighter dark blue */
}

.page-live-casino-game-halls__game-halls {
  background-color: #0A1931;
}

.page-live-casino-game-halls__game-types {
  background-color: #1A2B44;
}

.page-live-casino-game-halls__promotions {
  background-color: #0A1931;
}

.page-live-casino-game-halls__responsible-gambling {
  background-color: #1A2B44;
}

.page-live-casino-game-halls__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 30px;
}

.page-live-casino-game-halls__text-content {
  font-size: 1.1em;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #f5e6ce;
}

.page-live-casino-game-halls__text-content--callout {
  font-style: italic;
  color: #FFD700;
  font-weight: bold;
}

.page-live-casino-game-halls__features {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.page-live-casino-game-halls__feature-item {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background-color: #0A1931;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-live-casino-game-halls__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-live-casino-game-halls__feature-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-live-casino-game-halls__feature-item p {
  color: #f5e6ce;
  font-size: 1em;
  line-height: 1.6;
}

.page-live-casino-game-halls__hall-grid, .page-live-casino-game-halls__game-grid, .page-live-casino-game-halls__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-live-casino-game-halls__hall-item, .page-live-casino-game-halls__game-item, .page-live-casino-game-halls__promo-item {
  background-color: #1A2B44;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-live-casino-game-halls__hall-image, .page-live-casino-game-halls__game-image, .page-live-casino-game-halls__promo-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-live-casino-game-halls__hall-title, .page-live-casino-game-halls__game-title, .page-live-casino-game-halls__promo-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-live-casino-game-halls__hall-item p, .page-live-casino-game-halls__game-item p, .page-live-casino-game-halls__promo-item p {
  color: #f5e6ce;
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-live-casino-game-halls__hall-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FFD700;
  color: #0A1931;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-live-casino-game-halls__hall-btn:hover {
  background-color: #e6c200;
}

.page-live-casino-game-halls__responsible-gambling ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
}

.page-live-casino-game-halls__responsible-gambling li {
  background-color: #0A1931;
  margin-bottom: 15px;
  padding: 15px 25px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  color: #f5e6ce;
  font-size: 1.1em;
}

.page-live-casino-game-halls__cta {
  background-color: #0A1931;
  padding: 100px 0;
}

.page-live-casino-game-halls__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-live-casino-game-halls__cta-description {
  font-size: 1.2em;
  color: #f5e6ce;
  margin-bottom: 50px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-live-casino-game-halls__hero-title {
    font-size: 2.8em;
  }
  .page-live-casino-game-halls__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-live-casino-game-halls__hero-title {
    font-size: 2.2em;
  }
  .page-live-casino-game-halls__hero-description {
    font-size: 1.1em;
  }
  .page-live-casino-game-halls__hero-btn, .page-live-casino-game-halls__btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-live-casino-game-halls__section-title {
    font-size: 1.8em;
  }
  .page-live-casino-game-halls__text-content {
    font-size: 1em;
  }
  .page-live-casino-game-halls__features, .page-live-casino-game-halls__hall-grid, .page-live-casino-game-halls__game-grid, .page-live-casino-game-halls__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-live-casino-game-halls__cta-title {
    font-size: 2.2em;
  }
  .page-live-casino-game-halls__cta-description {
    font-size: 1em;
  }
  .page-live-casino-game-halls__responsible-gambling li {
    font-size: 1em;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .page-live-casino-game-halls__hero-title {
    font-size: 1.8em;
  }
  .page-live-casino-game-halls__hero-description {
    font-size: 0.9em;
  }
  .page-live-casino-game-halls__section-title {
    font-size: 1.5em;
  }
  .page-live-casino-game-halls__hero-btn, .page-live-casino-game-halls__btn {
    padding: 10px 20px;
    font-size: 0.8em;
  }
}