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

/* Base styles for the page */
.page-casino-live-game-rules {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #ffffff; /* Explicitly white background */
}

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

/* Hero Section */
.page-casino-live-game-rules__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background-color: #26A9E0;
  color: #ffffff;
}

.page-casino-live-game-rules__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
}

.page-casino-live-game-rules__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-casino-live-game-rules__hero-content {
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-casino-live-game-rules__hero-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size for H1 */
}

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

/* Section Titles */
.page-casino-live-game-rules__section-title {
  font-size: 2.5rem;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-casino-live-game-rules__subsection-title {
  font-size: 1.8rem;
  color: #26A9E0;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-casino-live-game-rules__sub-heading {
  font-size: 1.4rem;
  color: #333333;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

/* Paragraphs and Lists */
.page-casino-live-game-rules__paragraph {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #333333;
}

.page-casino-live-game-rules__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #333333;
}

.page-casino-live-game-rules__list-item {
  margin-bottom: 8px;
  color: #333333;
}

.page-casino-live-game-rules__highlight {
  font-weight: bold;
  color: #26A9E0;
}

.page-casino-live-game-rules__inline-link {
  color: #EA7C07;
  text-decoration: underline;
}

.page-casino-live-game-rules__inline-link:hover {
  color: #d66a00;
}

/* Buttons */
.page-casino-live-game-rules__btn-primary,
.page-casino-live-game-rules__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  margin: 10px;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

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

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

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

.page-casino-live-game-rules__button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Section Specifics */
.page-casino-live-game-rules__intro-section,
.page-casino-live-game-rules__game-rules-section,
.page-casino-live-game-rules__strategy-section,
.page-casino-live-game-rules__security-section,
.page-casino-live-game-rules__faq-section,
.page-casino-live-game-rules__cta-section {
  padding: 60px 0;
}

.page-casino-live-game-rules__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-casino-live-game-rules__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-casino-live-game-rules__dark-bg .page-casino-live-game-rules__section-title,
.page-casino-live-game-rules__dark-bg .page-casino-live-game-rules__subsection-title {
  color: #ffffff;
}

.page-casino-live-game-rules__dark-bg .page-casino-live-game-rules__paragraph,
.page-casino-live-game-rules__dark-bg .page-casino-live-game-rules__list-item {
  color: #f0f0f0;
}

.page-casino-live-game-rules__dark-bg .page-casino-live-game-rules__highlight {
  color: #ffffff;
}

.page-casino-live-game-rules__dark-bg .page-casino-live-game-rules__inline-link {
  color: #ffffff;
}

.page-casino-live-game-rules__section-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  max-width: 800px;
}

.page-casino-live-game-rules__game-subsection {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid #e0e0e0;
}

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

.page-casino-live-game-rules__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-casino-live-game-rules__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  background-color: #f5f5f5;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-casino-live-game-rules__faq-question:hover {
  background-color: #e9e9e9;
}

.page-casino-live-game-rules__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-casino-live-game-rules__faq-answer {
  padding: 20px;
  font-size: 1rem;
  color: #555555;
  border-top: 1px solid #e0e0e0;
}

.page-casino-live-game-rules__faq-item[open] .page-casino-live-game-rules__faq-question {
  background-color: #e9e9e9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-casino-live-game-rules {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-casino-live-game-rules__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-casino-live-game-rules__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-casino-live-game-rules__hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
    margin-bottom: 15px;
  }

  .page-casino-live-game-rules__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-casino-live-game-rules__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .page-casino-live-game-rules__subsection-title {
    font-size: 1.5rem;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-casino-live-game-rules__sub-heading {
    font-size: 1.2rem;
    margin-top: 15px;
    margin-bottom: 8px;
  }

  /* Image 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__hero-image-wrapper,
  .page-casino-live-game-rules__section-image {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Button responsiveness */
  .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;
    margin: 5px 0 !important;
    padding: 12px 20px !important;
  }

  .page-casino-live-game-rules__button-group {
    flex-direction: column !important;
    gap: 10px !important;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-casino-live-game-rules__game-subsection {
    padding: 20px;
  }

  .page-casino-live-game-rules__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

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