.page-games-center-live-casino {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for readability on dark background */
  background-color: #0A192F;
  line-height: 1.6;
}

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

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

.page-games-center-live-casino__section:nth-of-type(even) {
  background-color: #1A2A42; /* Slightly lighter dark blue for contrast */
}

.page-games-center-live-casino__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for titles */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-games-center-live-casino__section-description {
  font-size: 1.1em;
  color: #B0B0B0; /* Slightly darker gray for descriptions */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-games-center-live-casino__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #2c3e50 100%); /* Dark gradient */
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.page-games-center-live-casino__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px; /* Adjust as needed */
  height: auto;
  opacity: 0.3;
  z-index: 0;
}

.page-games-center-live-casino__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-games-center-live-casino__hero-title {
  font-size: 4em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  z-index: 1;
  position: relative;
}

.page-games-center-live-casino__hero-subtitle {
  font-size: 1.5em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  z-index: 1;
  position: relative;
}

.page-games-center-live-casino__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 1;
  position: relative;
}

.page-games-center-live-casino__btn--primary {
  background-color: #FFD700;
  color: #0A192F;
  border: 2px solid #FFD700;
}

.page-games-center-live-casino__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

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

.page-games-center-live-casino__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

.page-games-center-live-casino__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #FFD700;
  color: #0A192F;
  border: none;
}

.page-games-center-live-casino__btn--small:hover {
  background-color: #e6c200;
}

.page-games-center-live-casino__content-flex {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  margin-top: 50px;
}

.page-games-center-live-casino__content-flex--reverse {
  flex-direction: row-reverse;
}

.page-games-center-live-casino__text-content {
  flex: 1;
}

.page-games-center-live-casino__text-content p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-games-center-live-casino__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-games-center-live-casino__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-games-center-live-casino__game-card {
  background-color: #1A2A42;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-games-center-live-casino__game-card:hover {
  transform: translateY(-10px);
}

.page-games-center-live-casino__game-card-image {
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-games-center-live-casino__game-card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-games-center-live-casino__game-card-text {
  font-size: 1em;
  color: #B0B0B0;
  margin-bottom: 20px;
}

.page-games-center-live-casino__dealer-gallery {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-games-center-live-casino__dealer-image {
  width: 100%;
  max-width: 350px;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-games-center-live-casino__promo-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 40px auto;
  text-align: left;
}

.page-games-center-live-casino__promo-list li {
  background-color: #1A2A42;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #E0E0E0;
  border-left: 5px solid #FFD700;
}

.page-games-center-live-casino__promo-list li strong {
  color: #FFD700;
}

.page-games-center-live-casino__step-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  counter-reset: step-counter;
  text-align: left;
}

.page-games-center-live-casino__step-list li {
  position: relative;
  margin-bottom: 25px;
  padding-left: 60px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-games-center-live-casino__step-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: #FFD700;
  color: #0A192F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.4em;
}

.page-games-center-live-casino__security-icon {
  max-width: 150px;
  margin-top: 40px;
}

.page-games-center-live-casino__accordion {
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
}

.page-games-center-live-casino__accordion-item {
  background-color: #1A2A42;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.page-games-center-live-casino__accordion-header {
  background-color: #2c3e50; /* Slightly darker for header */
  color: #FFD700;
  padding: 20px;
  width: 100%;
  text-align: left;
  border: none;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-games-center-live-casino__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-games-center-live-casino__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-games-center-live-casino__accordion-header:hover {
  background-color: #34495e;
}

.page-games-center-live-casino__accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-games-center-live-casino__accordion-content p {
  padding-bottom: 20px;
  color: #E0E0E0;
  font-size: 1.05em;
}

.page-games-center-live-casino__accordion-content.open {
  max-height: 200px; /* Adjust based on expected content height */
  padding-top: 10px;
  padding-bottom: 20px;
}

.page-games-center-live-casino__cta-bottom {
  padding: 80px 0;
  background-color: #0A192F;
}

/* Floating Promotion */
.page-games-center-live-casino__floating-promo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: rgba(255, 215, 0, 0.95); /* Gold with transparency */
  color: #0A192F;
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 350px;
  animation: page-games-center-live-casino__slideIn 0.5s ease-out forwards;
}

.page-games-center-live-casino__floating-promo-content p {
  margin: 0;
  font-size: 1.1em;
  font-weight: bold;
  color: #0A192F;
}

.page-games-center-live-casino__close-floating-promo {
  background: none;
  border: none;
  color: #0A192F;
  font-size: 1.8em;
  cursor: pointer;
  line-height: 1;
  padding: 0 5px;
}

.page-games-center-live-casino__close-floating-promo:hover {
  color: #555;
}

@keyframes page-games-center-live-casino__slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-games-center-live-casino__hero-title {
    font-size: 3em;
  }

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

  .page-games-center-live-casino__section-title {
    font-size: 2.2em;
  }

  .page-games-center-live-casino__content-flex {
    flex-direction: column;
    text-align: center;
  }

  .page-games-center-live-casino__content-flex--reverse {
    flex-direction: column;
  }

  .page-games-center-live-casino__image-wrapper {
    margin-top: 30px;
  }

  .page-games-center-live-casino__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-games-center-live-casino__dealer-gallery {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .page-games-center-live-casino__hero-title {
    font-size: 2.5em;
  }

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

  .page-games-center-live-casino__section {
    padding: 40px 0;
  }

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

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

  .page-games-center-live-casino__floating-promo {
    flex-direction: column;
    text-align: center;
    right: 10px;
    bottom: 10px;
    max-width: 90%;
  }

  .page-games-center-live-casino__floating-promo-content p {
    margin-bottom: 10px;
  }

  .page-games-center-live-casino__close-floating-promo {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 1.5em;
  }
}