/* style/casino-games-live-casino.css */
.page-casino-games-live-casino {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-casino-games-live-casino .highlight {
  color: #007bff; /* Main brand blue */
}

.page-casino-games-live-casino__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-casino-games-live-casino__container--flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-casino-games-live-casino__container--center {
  text-align: center;
}

.page-casino-games-live-casino__section {
  padding: 80px 0;
  text-align: center;
}

.page-casino-games-live-casino__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-casino-games-live-casino__section-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #007bff; /* Main brand blue */
  font-weight: bold;
  line-height: 1.2;
}

.page-casino-games-live-casino__section-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555;
}

.page-casino-games-live-casino__hero {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Blue gradient */
  color: #fff;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.page-casino-games-live-casino__hero-content {
  z-index: 10;
  max-width: 600px;
  padding: 0 15px;
}

.page-casino-games-live-casino__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
}

.page-casino-games-live-casino__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-casino-games-live-casino__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

.page-casino-games-live-casino__hero-image {
  position: absolute;
  right: -100px;
  bottom: -50px;
  width: 700px;
  height: 700px;
  opacity: 0.2;
  z-index: 1;
}

.page-casino-games-live-casino__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-casino-games-live-casino__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  font-size: 1.1em;
}

.page-casino-games-live-casino__btn--primary {
  background-color: #ffc107; /* Auxiliary brand yellow */
  color: #333;
  border: 2px solid #ffc107;
}

.page-casino-games-live-casino__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-2px);
}

.page-casino-games-live-casino__btn--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-casino-games-live-casino__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-casino-games-live-casino__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-casino-games-live-casino__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-casino-games-live-casino__btn--center {
  margin: 0 auto;
  display: table;
}

.page-casino-games-live-casino__features-grid,
.page-casino-games-live-casino__games-grid,
.page-casino-games-live-casino__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-casino-games-live-casino__feature-item,
.page-casino-games-live-casino__game-card,
.page-casino-games-live-casino__promo-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-casino-games-live-casino__feature-item:hover,
.page-casino-games-live-casino__game-card:hover,
.page-casino-games-live-casino__promo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-casino-games-live-casino__feature-item img,
.page-casino-games-live-casino__promo-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}

.page-casino-games-live-casino__game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-casino-games-live-casino__feature-item h3,
.page-casino-games-live-casino__game-card h3,
.page-casino-games-live-casino__promo-item h3 {
  font-size: 1.5em;
  color: #007bff; /* Main brand blue */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-casino-games-live-casino__feature-item p,
.page-casino-games-live-casino__game-card p,
.page-casino-games-live-casino__promo-item p {
  color: #666;
  font-size: 1em;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-casino-games-live-casino__cta-text {
  font-size: 1.2em;
  margin-top: 60px;
  margin-bottom: 30px;
  color: #333;
}

.page-casino-games-live-casino__mobile-content {
  flex: 1;
  text-align: left;
}

.page-casino-games-live-casino__mobile-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-casino-games-live-casino__mobile-image img {
  max-width: 80%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-casino-games-live-casino__app-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
}

.page-casino-games-live-casino__app-features li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23ffc107" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
  background-size: 24px;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
}

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

.page-casino-games-live-casino__responsible-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23007bff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><polyline points="12 6 12 12 16 14"></polyline></svg>') no-repeat left center;
  background-size: 24px;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
}

/* Animations for JS */
.page-casino-games-live-casino .fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-casino-games-live-casino .fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-casino-games-live-casino__hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 80px 0 40px;
    min-height: auto;
  }

  .page-casino-games-live-casino__hero-content {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .page-casino-games-live-casino__hero-title {
    font-size: 3em;
  }

  .page-casino-games-live-casino__hero-subtitle {
    font-size: 1.2em;
  }

  .page-casino-games-live-casino__hero-actions {
    justify-content: center;
  }

  .page-casino-games-live-casino__hero-image {
    position: static;
    width: 100%;
    height: auto;
    opacity: 1;
    margin-bottom: 40px;
  }

  .page-casino-games-live-casino__container--flex {
    flex-direction: column;
  }

  .page-casino-games-live-casino__mobile-content,
  .page-casino-games-live-casino__mobile-image {
    flex: none;
    width: 100%;
    text-align: center;
  }

  .page-casino-games-live-casino__mobile-image img {
    max-width: 70%;
    margin-top: 30px;
  }

  .page-casino-games-live-casino__app-features,
  .page-casino-games-live-casino__responsible-list {
    text-align: center;
    padding-left: 0;
  }

  .page-casino-games-live-casino__app-features li,
  .page-casino-games-live-casino__responsible-list li {
    background-position: center left 10%; /* Adjust for center alignment */
  }
}

@media (max-width: 768px) {
  .page-casino-games-live-casino__section-title {
    font-size: 2.2em;
  }

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

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

  .page-casino-games-live-casino__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-casino-games-live-casino__btn--primary,
  .page-casino-games-live-casino__btn--secondary {
    width: 100%;
  }

  .page-casino-games-live-casino__features-grid,
  .page-casino-games-live-casino__games-grid,
  .page-casino-games-live-casino__promotions-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-casino-games-live-casino__hero-title {
    font-size: 2em;
  }

  .page-casino-games-live-casino__hero-subtitle {
    font-size: 1em;
  }

  .page-casino-games-live-casino__section-title {
    font-size: 1.8em;
  }

  .page-casino-games-live-casino__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}