.page-game-rules-live-casino {
  color: #ffffff; /* Body background is #0a0a0a (dark), so text should be light */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-game-rules-live-casino__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
}

.page-game-rules-live-casino__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* Ensure image is background */
  filter: brightness(0.5); /* Slightly darken image for text readability */
}

.page-game-rules-live-casino__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-game-rules-live-casino__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  /* Using clamp for responsive font-size, respecting the rule */
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

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

.page-game-rules-live-casino__cta-button {
  display: inline-block;
  background: #26A9E0;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-game-rules-live-casino__cta-button:hover {
  background: #1a8cc2;
  transform: translateY(-2px);
}

.page-game-rules-live-casino__section-title {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 40px;
  text-align: center;
  color: #26A9E0;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.page-game-rules-live-casino__introduction-section,
.page-game-rules-live-casino__policies-section,
.page-game-rules-live-casino__faq-section {
  background: #ffffff; /* Light background for these sections */
  color: #333333; /* Dark text for light background */
  padding: 60px 0;
}

.page-game-rules-live-casino__games-section,
.page-game-rules-live-casino__tips-section,
.page-game-rules-live-casino__conclusion-section {
  background: #0a0a0a; /* Dark background for these sections */
  color: #ffffff; /* Light text for dark background */
  padding: 60px 0;
}

.page-game-rules-live-casino__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: inherit;
}

.page-game-rules-live-casino__game-card {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white for cards on dark background */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-game-rules-live-casino__game-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

.page-game-rules-live-casino__game-title {
  font-size: 2rem;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-game-rules-live-casino__game-description {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-game-rules-live-casino__game-rules-list {
  list-style-type: disc;
  text-align: left;
  width: 100%;
  max-width: 700px;
  margin: 0 auto 20px;
  padding-left: 20px;
  color: #f0f0f0;
}

.page-game-rules-live-casino__game-rules-list li {
  margin-bottom: 10px;
}

.page-game-rules-live-casino__policy-item {
  background: #f8f8f8; /* Light background for policy cards */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-game-rules-live-casino__policy-title {
  font-size: 1.8rem;
  color: #26A9E0;
  margin-bottom: 15px;
  text-align: center;
}

.page-game-rules-live-casino__policy-description {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #555555;
}

.page-game-rules-live-casino__policy-list {
  list-style-type: decimal;
  text-align: left;
  width: 100%;
  max-width: 700px;
  margin: 0 auto 20px;
  padding-left: 20px;
  color: #555555;
}

.page-game-rules-live-casino__policy-list li {
  margin-bottom: 10px;
}

.page-game-rules-live-casino__content-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  object-fit: cover;
}

.page-game-rules-live-casino__tips-list {
  list-style-type: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-game-rules-live-casino__tip-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  color: #f0f0f0;
}

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

.page-game-rules-live-casino__tip-description {
  font-size: 1rem;
  color: #f0f0f0;
}

.page-game-rules-live-casino__faq-item {
  background: #f8f8f8;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-game-rules-live-casino__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #e0e0e0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: #333333;
  transition: background-color 0.3s ease;
}

.page-game-rules-live-casino__faq-question:hover {
  background: #d0d0d0;
}

.page-game-rules-live-casino__faq-qtext {
  flex-grow: 1;
}

.page-game-rules-live-casino__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-game-rules-live-casino__faq-item[open] .page-game-rules-live-casino__faq-toggle {
  transform: rotate(45deg); /* Rotate '+' to 'x' or '-' */
}

.page-game-rules-live-casino__faq-answer {
  padding: 20px 25px;
  border-top: 1px solid #d0d0d0;
  background: #ffffff;
  font-size: 1rem;
  color: #555555;
}

.page-game-rules-live-casino__faq-answer p {
  margin: 0;
}

.page-game-rules-live-casino__conclusion-section .page-game-rules-live-casino__text-block {
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
  color: #f0f0f0;
}

.page-game-rules-live-casino__conclusion-section .page-game-rules-live-casino__cta-button {
  margin: 0 auto;
  display: block;
  max-width: 300px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-game-rules-live-casino__hero-content {
    padding: 30px 15px;
  }

  .page-game-rules-live-casino__main-title {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
  }

  .page-game-rules-live-casino__hero-description {
    font-size: 1.05rem;
  }

  .page-game-rules-live-casino__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }

  .page-game-rules-live-casino__game-title,
  .page-game-rules-live-casino__policy-title {
    font-size: 1.6rem;
  }

  .page-game-rules-live-casino__tip-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .page-game-rules-live-casino__container {
    padding: 0 15px !important;
  }

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

  .page-game-rules-live-casino__hero-content {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-game-rules-live-casino__hero-image,
  .page-game-rules-live-casino__game-image,
  .page-game-rules-live-casino__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-game-rules-live-casino__cta-button,
  .page-game-rules-live-casino a[class*="button"],
  .page-game-rules-live-casino 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;
  }

  .page-game-rules-live-casino__section-title {
    font-size: 1.8rem;
  }

  .page-game-rules-live-casino__game-card,
  .page-game-rules-live-casino__policy-item,
  .page-game-rules-live-casino__tip-item {
    padding: 20px;
    margin-bottom: 30px;
  }

  .page-game-rules-live-casino__game-rules-list,
  .page-game-rules-live-casino__policy-list {
    padding-left: 15px;
  }

  .page-game-rules-live-casino__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-game-rules-live-casino__faq-answer {
    padding: 15px 20px;
  }

  .page-game-rules-live-casino__tips-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}