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

:root {
  --b123-win-primary: #11A84E;
  --b123-win-secondary: #22C768;
  --b123-win-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --b123-win-card-bg: #11271B;
  --b123-win-bg: #08160F;
  --b123-win-text-main: #F2FFF6;
  --b123-win-text-secondary: #A7D9B8;
  --b123-win-border: #2E7A4E;
  --b123-win-glow: #57E38D;
  --b123-win-gold: #F2C14E;
  --b123-win-divider: #1E3A2A;
  --b123-win-deep-green: #0A4B2C;
}

/* body 已 padding-top: var(--header-offset)；页面禁止再写该变量 */
.page-casino-live-game-rules-tips {
  font-family: Arial, sans-serif;
  color: var(--b123-win-text-main); /* Default text color for the page, assuming dark body bg */
  background-color: var(--b123-win-bg);
  line-height: 1.6;
}

.page-casino-live-game-rules-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small decorative top padding, body handles header offset */
  background-color: var(--b123-win-bg);
  overflow: hidden;
}

.page-casino-live-game-rules-tips__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

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

.page-casino-live-game-rules-tips__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 40px 20px;
  z-index: 1;
  background-color: var(--b123-win-bg);
  width: 100%;
  box-sizing: border-box;
}

.page-casino-live-game-rules-tips__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--b123-win-text-main);
  margin-bottom: 20px;
  max-width: 100%;
}

.page-casino-live-game-rules-tips__intro-text {
  font-size: 1.1em;
  color: var(--b123-win-text-secondary);
  margin-bottom: 30px;
}

.page-casino-live-game-rules-tips__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-casino-live-game-rules-tips__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
}

.page-casino-live-game-rules-tips__btn-primary {
  background: var(--b123-win-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-casino-live-game-rules-tips__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-casino-live-game-rules-tips__btn-secondary {
  background: #ffffff;
  color: var(--b123-win-primary);
  border: 2px solid var(--b123-win-primary);
}

.page-casino-live-game-rules-tips__btn-secondary:hover {
  background: var(--b123-win-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-casino-live-game-rules-tips__video-section {
  padding: 40px 20px;
  background-color: var(--b123-win-card-bg);
  text-align: center;
  padding-top: 10px; /* Small decorative top padding */
}

.page-casino-live-game-rules-tips__video-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-casino-live-game-rules-tips__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 20px;
  width: 100%; /* Ensure desktop width is 100% */
  max-width: 100%;
  box-sizing: border-box;
}

.page-casino-live-game-rules-tips__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  cursor: pointer;
}

.page-casino-live-game-rules-tips__video-description {
  font-size: 1.1em;
  color: var(--b123-win-text-secondary);
  margin-top: 10px;
}

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

.page-casino-live-game-rules-tips__dark-section {
  background-color: var(--b123-win-card-bg);
  color: var(--b123-win-text-main);
}

.page-casino-live-game-rules-tips__section-title {
  font-size: 2.2em;
  font-weight: bold;
  color: var(--b123-win-gold);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-casino-live-game-rules-tips__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--b123-win-primary);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-casino-live-game-rules-tips__sub-title {
  font-size: 1.8em;
  color: var(--b123-win-text-main);
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid var(--b123-win-primary);
  padding-left: 15px;
}

.page-casino-live-game-rules-tips__game-sub-title {
  font-size: 1.4em;
  color: var(--b123-win-text-secondary);
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-casino-live-game-rules-tips__text-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-casino-live-game-rules-tips__text-block p {
  font-size: 1.05em;
  color: var(--b123-win-text-secondary);
  text-align: justify;
}

.page-casino-live-game-rules-tips__list {
  list-style: disc;
  margin-left: 25px;
  padding-left: 0;
  color: var(--b123-win-text-secondary);
}

.page-casino-live-game-rules-tips__list li {
  margin-bottom: 10px;
}

.page-casino-live-game-rules-tips__list li strong {
  color: var(--b123-win-text-main);
}

.page-casino-live-game-rules-tips__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 20px 0;
  object-fit: cover;
}

.page-casino-live-game-rules-tips__image--left {
  float: left;
  margin-right: 25px;
  margin-bottom: 15px;
  max-width: 45%;
}

.page-casino-live-game-rules-tips__image--right {
  float: right;
  margin-left: 25px;
  margin-bottom: 15px;
  max-width: 45%;
}

.page-casino-live-game-rules-tips__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-casino-live-game-rules-tips__faq-item {
  background-color: var(--b123-win-bg);
  border: 1px solid var(--b123-win-divider);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-casino-live-game-rules-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: var(--b123-win-card-bg);
  color: var(--b123-win-text-main);
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-casino-live-game-rules-tips__faq-question:hover {
  background-color: var(--b123-win-deep-green);
}

.page-casino-live-game-rules-tips__faq-item details > summary {
  list-style: none;
}

.page-casino-live-game-rules-tips__faq-item details > summary::-webkit-details-marker {
  display: none;
}

.page-casino-live-game-rules-tips__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--b123-win-primary);
}

.page-casino-live-game-rules-tips__faq-answer {
  padding: 15px 25px 20px;
  color: var(--b123-win-text-secondary);
  background-color: var(--b123-win-bg);
  font-size: 1em;
  line-height: 1.7;
}

.page-casino-live-game-rules-tips__cta-section {
  background-color: var(--b123-win-deep-green);
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-casino-live-game-rules-tips__cta-content {
  max-width: 800px;
  z-index: 1;
}

.page-casino-live-game-rules-tips__cta-text {
  font-size: 1.1em;
  color: var(--b123-win-text-secondary);
  margin-bottom: 30px;
}

.page-casino-live-game-rules-tips__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

/* Responsive Design */
@media (min-width: 769px) {
  .page-casino-live-game-rules-tips__text-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-casino-live-game-rules-tips__image--left {
    shape-outside: circle(50% at 20% 50%);
    float: left;
    margin-right: 30px;
    margin-bottom: 15px;
  }

  .page-casino-live-game-rules-tips__image--right {
    shape-outside: circle(50% at 80% 50%);
    float: right;
    margin-left: 30px;
    margin-bottom: 15px;
  }

  .page-casino-live-game-rules-tips__main-title {
    font-size: 3.2em;
  }
}

@media (max-width: 768px) {
  .page-casino-live-game-rules-tips__hero-content,
  .page-casino-live-game-rules-tips__video-container,
  .page-casino-live-game-rules-tips__content-area,
  .page-casino-live-game-rules-tips__faq-list,
  .page-casino-live-game-rules-tips__cta-section {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-casino-live-game-rules-tips__hero-section {
    padding-top: 10px !important; /* body handles --header-offset */
  }

  .page-casino-live-game-rules-tips__main-title {
    font-size: 2.2em;
  }

  .page-casino-live-game-rules-tips__intro-text {
    font-size: 1em;
  }

  .page-casino-live-game-rules-tips__section-title {
    font-size: 1.8em;
  }

  .page-casino-live-game-rules-tips__sub-title {
    font-size: 1.5em;
  }

  .page-casino-live-game-rules-tips__game-sub-title {
    font-size: 1.2em;
  }

  /* Images responsive */
  .page-casino-live-game-rules-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Videos responsive */
  .page-casino-live-game-rules-tips video,
  .page-casino-live-game-rules-tips__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-casino-live-game-rules-tips__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-bottom: 56.25% !important; /* Ensure aspect ratio */
  }

  .page-casino-live-game-rules-tips__video-section {
    padding-top: 10px !important; /* body handles --header-offset */
  }

  /* Buttons responsive */
  .page-casino-live-game-rules-tips__cta-button,
  .page-casino-live-game-rules-tips__btn-primary,
  .page-casino-live-game-rules-tips__btn-secondary,
  .page-casino-live-game-rules-tips a[class*="button"],
  .page-casino-live-game-rules-tips 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-casino-live-game-rules-tips__cta-buttons,
  .page-casino-live-game-rules-tips__button-group,
  .page-casino-live-game-rules-tips__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    flex-direction: column;
    gap: 10px;
  }

  .page-casino-live-game-rules-tips__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-casino-live-game-rules-tips__faq-answer {
    padding: 10px 20px 15px;
  }
}