/* style/live-betting-rules.css */
.page-live-betting-rules {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #000000; /* Ensure main content background matches body */
}

.page-live-betting-rules__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
}

.page-live-betting-rules__hero-container {
  position: relative;
  width: 100%;
  height: auto;
}

.page-live-betting-rules__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6);
}

.page-live-betting-rules__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
  padding: 20px;
  box-sizing: border-box;
}

.page-live-betting-rules__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  max-width: 90%;
}

.page-live-betting-rules__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
}

.page-live-betting-rules__hero-actions {
  display: flex;
  gap: 20px;
}

.page-live-betting-rules__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  font-size: 1.1em;
}

.page-live-betting-rules__button--register {
  background-color: #333333; /* Darker background for register */
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-live-betting-rules__button--register:hover {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FCBC45;
}

.page-live-betting-rules__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-live-betting-rules__button--login:hover {
  background-color: #e0a73b;
  color: #000000;
  border-color: #e0a73b;
}

.page-live-betting-rules__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #000000;
}

.page-live-betting-rules__section-title {
  font-size: 2.5em;
  color: #FCBC45;
  margin-top: 50px;
  margin-bottom: 25px;
  text-align: center;
}

.page-live-betting-rules__sub-title {
  font-size: 1.8em;
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 15px;
}

.page-live-betting-rules__paragraph {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-live-betting-rules__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-live-betting-rules__ordered-list {
  list-style-type: decimal;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-live-betting-rules__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-live-betting-rules__list-item strong {
  color: #FCBC45;
}

.page-live-betting-rules__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  min-height: 200px;
}

.page-live-betting-rules__content-image--small {
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  min-height: 200px;
}

.page-live-betting-rules__link {
  color: #FCBC45;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-live-betting-rules__link:hover {
  color: #e0a73b;
  text-decoration: underline;
}

.page-live-betting-rules__cta-section {
  background-color: #1a1a1a;
  padding: 50px 30px;
  margin-top: 60px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.page-live-betting-rules__cta-title {
  font-size: 2.2em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-live-betting-rules__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live-betting-rules__hero-title {
    font-size: 3em;
  }
  .page-live-betting-rules__hero-description {
    font-size: 1.1em;
  }
  .page-live-betting-rules__section-title {
    font-size: 2.2em;
  }
  .page-live-betting-rules__sub-title {
    font-size: 1.6em;
  }
  .page-live-betting-rules__paragraph,
  .page-live-betting-rules__list-item {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-live-betting-rules__hero-section {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
  }
  .page-live-betting-rules__hero-title {
    font-size: 2.5em;
  }
  .page-live-betting-rules__hero-description {
    font-size: 1em;
  }
  .page-live-betting-rules__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live-betting-rules__button {
    width: 80%;
    max-width: 300px;
  }
  .page-live-betting-rules__content-area {
    padding: 20px 15px;
  }
  .page-live-betting-rules__section-title {
    font-size: 2em;
  }
  .page-live-betting-rules__sub-title {
    font-size: 1.4em;
  }
  /* Mobile image scaling for content area images */
  .page-live-betting-rules__content-area img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-live-betting-rules__cta-title {
    font-size: 1.8em;
  }
  .page-live-betting-rules__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-live-betting-rules__hero-title {
    font-size: 2em;
  }
  .page-live-betting-rules__hero-description {
    font-size: 0.9em;
  }
  .page-live-betting-rules__button {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-live-betting-rules__section-title {
    font-size: 1.8em;
  }
  .page-live-betting-rules__sub-title {
    font-size: 1.2em;
  }
  .page-live-betting-rules__paragraph,
  .page-live-betting-rules__list-item {
    font-size: 0.95em;
  }
  .page-live-betting-rules__cta-title {
    font-size: 1.5em;
  }
}