/* style/casino-live-game-rules.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-casino-live-game-rules {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Main content background is transparent to show body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

/* Hero Section */
.page-casino-live-game-rules__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.page-casino-live-game-rules__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  margin-bottom: 30px;
  border-radius: 8px;
  max-width: 1200px; /* Constrain image width */
}

.page-casino-live-game-rules__hero-content {
  max-width: 900px;
  margin: 0 auto;
  color: #ffffff;
}

.page-casino-live-game-rules__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-casino-live-game-rules__subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

/* General Content Area */
.page-casino-live-game-rules__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for content sections */
  border-radius: 8px;
  margin-top: 20px;
  color: #ffffff; /* Light text on slightly darker background */
  box-sizing: border-box;
}

.page-casino-live-game-rules__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #26A9E0;
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: 600;
  text-align: center;
}

.page-casino-live-game-rules__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #f0f0f0;
}

/* Game Cards */
.page-casino-live-game-rules__game-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-casino-live-game-rules__game-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
}

.page-casino-live-game-rules__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-casino-live-game-rules__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block; /* Ensure it behaves as a block element */
}

.page-casino-live-game-rules__game-title {
  font-size: 1.4rem;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-casino-live-game-rules__game-description {
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 20px;
}

/* List styles */
.page-casino-live-game-rules__list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.page-casino-live-game-rules__list li {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 5px solid #26A9E0;
  border-radius: 5px;
  font-size: 1.1rem;
  color: #ffffff;
}

.page-casino-live-game-rules__list li strong {
  color: #26A9E0;
}

/* Tips Grid */
.page-casino-live-game-rules__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-casino-live-game-rules__tip-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  text-align: left;
  color: #ffffff;
}

.page-casino-live-game-rules__tip-title {
  font-size: 1.3rem;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-casino-live-game-rules__tip-item p {
  font-size: 1rem;
  color: #e0e0e0;
}

/* FAQ Section */
.page-casino-live-game-rules__faq-list {
  margin-top: 30px;
}

.page-casino-live-game-rules__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-casino-live-game-rules__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: #26A9E0;
  background-color: rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none; /* Hide default marker */
}

.page-casino-live-game-rules__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-casino-live-game-rules__faq-qtext {
  flex-grow: 1;
}

.page-casino-live-game-rules__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 15px;
  color: #ffffff; /* White color for the toggle icon */
}

.page-casino-live-game-rules__faq-answer {
  padding: 20px;
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.7;
}

/* CTA Banner */
.page-casino-live-game-rules__cta-banner {
  background: linear-gradient(90deg, #26A9E0, #1a7bb0);
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
  margin-top: 40px;
  border-radius: 8px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.page-casino-live-game-rules__cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-casino-live-game-rules__cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-casino-live-game-rules__cta-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Buttons */
.page-casino-live-game-rules__btn-primary,
.page-casino-live-game-rules__btn-secondary,
.page-casino-live-game-rules__btn-text,
.page-casino-live-game-rules a[class*="button"],
.page-casino-live-game-rules a[class*="btn"] {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow long words to break */
}

.page-casino-live-game-rules__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-casino-live-game-rules__btn-primary:hover {
  background-color: #1a7bb0;
  border-color: #1a7bb0;
}

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

.page-casino-live-game-rules__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-casino-live-game-rules__btn-text {
  background-color: transparent;
  color: #26A9E0;
  border: none;
  padding: 5px 0;
  font-size: 1rem;
  font-weight: 500;
}

.page-casino-live-game-rules__btn-text:hover {
  text-decoration: underline;
}

.page-casino-live-game-rules__btn-lg {
  padding: 15px 30px;
  font-size: 1.1rem;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-casino-live-game-rules__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body handles --header-offset, small top padding for section */
  }

  .page-casino-live-game-rules__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-casino-live-game-rules__subtitle {
    font-size: 1rem;
  }

  .page-casino-live-game-rules__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
  }

  .page-casino-live-game-rules__cta-buttons a {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-casino-live-game-rules__content-area {
    padding: 30px 15px;
  }

  .page-casino-live-game-rules__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }

  .page-casino-live-game-rules__text-block,
  .page-casino-live-game-rules__list li,
  .page-casino-live-game-rules__tip-item p,
  .page-casino-live-game-rules__faq-answer {
    font-size: 0.95rem;
  }

  .page-casino-live-game-rules__game-card-grid,
  .page-casino-live-game-rules__tips-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-casino-live-game-rules__game-image {
    height: 180px;
  }

  .page-casino-live-game-rules__game-title,
  .page-casino-live-game-rules__tip-title {
    font-size: 1.2rem;
  }

  .page-casino-live-game-rules__faq-item summary {
    font-size: 1.05rem;
    padding: 15px;
  }

  .page-casino-live-game-rules__faq-answer {
    padding: 15px;
  }

  .page-casino-live-game-rules__cta-banner {
    padding: 40px 15px;
  }

  .page-casino-live-game-rules__cta-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-casino-live-game-rules__cta-description {
    font-size: 1rem;
  }

  /* Mobile image and video responsiveness */
  .page-casino-live-game-rules img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-casino-live-game-rules video,
  .page-casino-live-game-rules__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-casino-live-game-rules__section,
  .page-casino-live-game-rules__card,
  .page-casino-live-game-rules__container,
  .page-casino-live-game-rules__video-section,
  .page-casino-live-game-rules__video-container,
  .page-casino-live-game-rules__video-wrapper,
  .page-casino-live-game-rules__cta-buttons,
  .page-casino-live-game-rules__button-group,
  .page-casino-live-game-rules__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-casino-live-game-rules__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-casino-live-game-rules__cta-button,
  .page-casino-live-game-rules__btn-primary,
  .page-casino-live-game-rules__btn-secondary,
  .page-casino-live-game-rules a[class*="button"],
  .page-casino-live-game-rules a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Color contrast fixes for specific elements if needed */
.page-casino-live-game-rules__dark-bg {
  color: #ffffff; /* Deep dark background, so white text */
}

.page-casino-live-game-rules__light-bg {
  color: #ffffff; /* This section background is rgba(255,255,255,0.05), which is still dark, so white text */
}