/* style/casino-live-games.css */
.page-casino-live-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is #000 (dark), so use light text */
  background-color: transparent; /* inherited from body, which is #000 from shared.css */
}

.page-casino-live-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-casino-live-games__section-title {
  font-size: 2.5rem;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.page-casino-live-games__light-text {
  color: #ffffff;
}

.page-casino-live-games__text-block {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-casino-live-games__btn-primary,
.page-casino-live-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-casino-live-games__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-casino-live-games__btn-primary:hover {
  background-color: #1a7ea6;
  border-color: #1a7ea6;
}

.page-casino-live-games__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-casino-live-games__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-casino-live-games__btn-small {
  padding: 10px 20px;
  font-size: 0.95rem;
  border-radius: 5px;
}

/* Hero Section */
.page-casino-live-games__hero-section {
  position: relative;
  width: 100%;
  height: 700px; /* Adjust height as needed */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  box-sizing: border-box;
}

.page-casino-live-games__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.page-casino-live-games__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: #FFFFFF;
  padding: 20px;
}

.page-casino-live-games__hero-title {
  font-size: 3.8rem;
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 900;
  color: #FFFFFF;
}

.page-casino-live-games__hero-description {
  font-size: 1.4rem;
  margin-bottom: 40px;
  line-height: 1.5;
  color: #f0f0f0;
}

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

/* Intro Section */
.page-casino-live-games__intro-section {
  padding: 80px 0;
  background-color: #0d0d0d; /* Slightly lighter dark background for contrast */
}

/* Games List Section */
.page-casino-live-games__games-list-section {
  padding: 80px 0;
  background-color: #000;
}

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

.page-casino-live-games__game-card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for dark background */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino-live-games__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-casino-live-games__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-casino-live-games__game-title {
  font-size: 1.6rem;
  color: #26A9E0;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-casino-live-games__game-title a {
  color: #26A9E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-casino-live-games__game-title a:hover {
  color: #FFFFFF;
}

.page-casino-live-games__game-description {
  font-size: 0.95rem;
  color: #cccccc;
  margin-bottom: 20px;
  padding: 0 15px;
  flex-grow: 1;
}

.page-casino-live-games__view-all-btn {
  margin-top: 20px;
}

/* Providers Section */
.page-casino-live-games__providers-section {
  padding: 80px 0;
  background-color: #0d0d0d;
}

.page-casino-live-games__provider-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  margin-bottom: 40px;
}

.page-casino-live-games__provider-logo {
  max-width: 200px;
  height: auto;
  filter: grayscale(80%);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
  min-width: 200px; /* Ensure minimum size */
  min-height: 100px; /* Ensure minimum size */
  object-fit: contain;
}

.page-casino-live-games__provider-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Benefits Section */
.page-casino-live-games__benefits-section {
  padding: 80px 0;
  background-color: #000;
}

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

.page-casino-live-games__benefit-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino-live-games__benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-casino-live-games__benefit-icon {
  width: 100%;
  max-width: 150px; /* Adjusted from 200px to fit common icon-like images better while meeting min size */
  height: auto;
  margin-bottom: 25px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
  object-fit: contain;
}

.page-casino-live-games__benefit-title {
  font-size: 1.5rem;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-casino-live-games__benefit-description {
  font-size: 0.95rem;
  color: #cccccc;
}

/* Guide Section */
.page-casino-live-games__guide-section {
  padding: 80px 0;
  background-color: #0d0d0d;
}

.page-casino-live-games__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  counter-reset: guide-counter;
}

.page-casino-live-games__guide-list li {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 25px;
  position: relative;
  padding-left: 80px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-casino-live-games__guide-list li::before {
  counter-increment: guide-counter;
  content: counter(guide-counter);
  position: absolute;
  left: 30px;
  top: 30px;
  width: 40px;
  height: 40px;
  background-color: #26A9E0;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.page-casino-live-games__guide-list li h3 {
  font-size: 1.6rem;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-casino-live-games__guide-list li p {
  font-size: 1rem;
  color: #cccccc;
}

/* Tips Section */
.page-casino-live-games__tips-section {
  padding: 80px 0;
  background-color: #000;
}

.page-casino-live-games__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.page-casino-live-games__tips-list li {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-casino-live-games__tips-list li h3 {
  font-size: 1.6rem;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-casino-live-games__tips-list li p {
  font-size: 1rem;
  color: #cccccc;
}

/* Promotions Section */
.page-casino-live-games__promotions-section {
  padding: 80px 0;
  background-color: #0d0d0d;
}

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

.page-casino-live-games__promo-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino-live-games__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-casino-live-games__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-casino-live-games__promo-title {
  font-size: 1.6rem;
  color: #26A9E0;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-casino-live-games__promo-title a {
  color: #26A9E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-casino-live-games__promo-title a:hover {
  color: #FFFFFF;
}

.page-casino-live-games__promo-description {
  font-size: 0.95rem;
  color: #cccccc;
  margin-bottom: 20px;
  padding: 0 15px;
  flex-grow: 1;
}

/* FAQ Section */
.page-casino-live-games__faq-section {
  padding: 80px 0;
  background-color: #000;
}

.page-casino-live-games__faq-list {
  max-width: 900px;
  margin: 50px auto 30px auto;
}

.page-casino-live-games__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-casino-live-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.15);
  transition: background-color 0.3s ease;
}

.page-casino-live-games__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.page-casino-live-games__faq-question h3 {
  font-size: 1.25rem;
  color: #FFFFFF;
  margin: 0;
  flex-grow: 1;
}

.page-casino-live-games__faq-toggle {
  font-size: 2rem;
  color: #26A9E0;
  margin-left: 20px;
  transition: transform 0.3s ease;
  line-height: 1;
}

.page-casino-live-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #cccccc;
}

.page-casino-live-games__faq-answer p {
  margin: 0;
  padding-bottom: 15px;
  font-size: 1rem;
}

.page-casino-live-games__faq-item.active .page-casino-live-games__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show all content */
  padding: 15px 30px;
}

.page-casino-live-games__faq-item.active .page-casino-live-games__faq-toggle {
  transform: rotate(45deg);
}

/* CTA Section */
.page-casino-live-games__cta-section {
  padding: 80px 0;
  background-color: #26A9E0; /* Use brand color for CTA */
  color: #FFFFFF;
}

.page-casino-live-games__cta-section .page-casino-live-games__section-title {
  color: #FFFFFF;
}

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

.page-casino-live-games__cta-buttons .page-casino-live-games__btn-primary {
  background-color: #EA7C07; /* Login color for primary CTA */
  border-color: #EA7C07;
}

.page-casino-live-games__cta-buttons .page-casino-live-games__btn-primary:hover {
  background-color: #c46506;
  border-color: #c46506;
}

.page-casino-live-games__cta-buttons .page-casino-live-games__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border-color: #FFFFFF;
}

.page-casino-live-games__cta-buttons .page-casino-live-games__btn-secondary:hover {
  background-color: #e0e0e0;
  border-color: #e0e0e0;
  color: #1a7ea6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-casino-live-games__hero-title {
    font-size: 3rem;
  }
  .page-casino-live-games__hero-description {
    font-size: 1.2rem;
  }
  .page-casino-live-games__section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-casino-live-games {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-casino-live-games__hero-section {
    height: 600px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }
  .page-casino-live-games__hero-content {
    padding: 15px;
  }
  .page-casino-live-games__hero-title {
    font-size: 2.5rem;
  }
  .page-casino-live-games__hero-description {
    font-size: 1rem;
  }
  .page-casino-live-games__hero-buttons,
  .page-casino-live-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-casino-live-games__btn-primary,
  .page-casino-live-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }
  .page-casino-live-games__container {
    padding: 0 15px;
  }
  .page-casino-live-games__section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .page-casino-live-games__text-block {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  .page-casino-live-games__game-grid,
  .page-casino-live-games__benefits-grid,
  .page-casino-live-games__promo-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-casino-live-games__game-card,
  .page-casino-live-games__benefit-card,
  .page-casino-live-games__promo-card {
    padding-bottom: 20px;
  }
  .page-casino-live-games__game-image,
  .page-casino-live-games__promo-image {
    height: 180px;
  }
  .page-casino-live-games__benefit-icon {
    max-width: 120px;
    min-width: 200px !important; /* Enforce minimum size */
    min-height: 200px !important; /* Enforce minimum size */
  }
  .page-casino-live-games__provider-logos {
    gap: 20px;
  }
  .page-casino-live-games__provider-logo {
    max-width: 150px;
    min-width: 200px !important; /* Enforce minimum size */
    min-height: 100px !important; /* Enforce minimum size */
  }
  .page-casino-live-games__guide-list li {
    padding-left: 65px;
  }
  .page-casino-live-games__guide-list li::before {
    left: 20px;
    top: 25px;
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
  }
  .page-casino-live-games__guide-list li h3,
  .page-casino-live-games__tips-list li h3,
  .page-casino-live-games__game-title,
  .page-casino-live-games__promo-title,
  .page-casino-live-games__benefit-title {
    font-size: 1.3rem;
  }
  .page-casino-live-games__faq-question {
    padding: 15px 20px;
  }
  .page-casino-live-games__faq-question h3 {
    font-size: 1.1rem;
  }
  .page-casino-live-games__faq-toggle {
    font-size: 1.8rem;
  }
  .page-casino-live-games__faq-answer {
    padding: 0 20px;
  }
  .page-casino-live-games__faq-item.active .page-casino-live-games__faq-answer {
    padding: 15px 20px;
  }
  /* Ensure all images are responsive and do not overflow */
  .page-casino-live-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-casino-live-games__hero-section,
  .page-casino-live-games__intro-section,
  .page-casino-live-games__games-list-section,
  .page-casino-live-games__providers-section,
  .page-casino-live-games__benefits-section,
  .page-casino-live-games__guide-section,
  .page-casino-live-games__tips-section,
  .page-casino-live-games__promotions-section,
  .page-casino-live-games__faq-section,
  .page-casino-live-games__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
  .page-casino-live-games__game-card, .page-casino-live-games__benefit-card, .page-casino-live-games__promo-card {
    box-sizing: border-box !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-casino-live-games__hero-title {
    font-size: 2rem;
  }
  .page-casino-live-games__hero-description {
    font-size: 0.9rem;
  }
  .page-casino-live-games__section-title {
    font-size: 1.5rem;
  }
  .page-casino-live-games__game-title,
  .page-casino-live-games__promo-title,
  .page-casino-live-games__benefit-title {
    font-size: 1.2rem;
  }
  .page-casino-live-games__faq-question h3 {
    font-size: 1rem;
  }
  .page-casino-live-games__faq-toggle {
    font-size: 1.5rem;
  }
  .page-casino-live-games__guide-list li h3,
  .page-casino-live-games__tips-list li h3 {
    font-size: 1.3rem;
  }
}