/* style/resources-live-cockfighting-betting-guide.css */

/* Base Styles for the Page Content */
.page-resources-live-cockfighting-betting-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-resources-live-cockfighting-betting-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-live-cockfighting-betting-guide__section-title {
  font-size: 2.5em;
  color: #ffffff; /* White text on dark background */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-live-cockfighting-betting-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #017439; /* Primary color for accent */
  border-radius: 2px;
}

.page-resources-live-cockfighting-betting-guide__sub-section-title {
  font-size: 1.8em;
  color: #ffffff; /* White text on dark background */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-live-cockfighting-betting-guide__text-block {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #f0f0f0; /* Slightly off-white for readability on dark */
}

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

.page-resources-live-cockfighting-betting-guide__list-item {
  margin-bottom: 10px;
}

.page-resources-live-cockfighting-betting-guide__sub-list {
  list-style-type: circle;
  margin-left: 20px;
  margin-top: 5px;
}

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

/* Hero Section */
.page-resources-live-cockfighting-betting-guide__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  overflow: hidden;
  text-align: center;
  background-color: #1a1a2e; /* Fallback/Base for hero if image not loaded */
}

.page-resources-live-cockfighting-betting-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.page-resources-live-cockfighting-betting-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-resources-live-cockfighting-betting-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: #ffffff;
}

.page-resources-live-cockfighting-betting-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-resources-live-cockfighting-betting-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

/* CTA Buttons */
.page-resources-live-cockfighting-betting-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-resources-live-cockfighting-betting-guide__btn-primary,
.page-resources-live-cockfighting-betting-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* Ensure buttons don't overflow */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-live-cockfighting-betting-guide__btn-primary {
  background-color: #C30808; /* Custom color for register/login */
  color: #ffffff; /* Ensure WCAG AA contrast */
  border: 2px solid #C30808;
}

.page-resources-live-cockfighting-betting-guide__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-resources-live-cockfighting-betting-guide__btn-secondary {
  background-color: transparent;
  color: #ffffff; /* White text on dark background for contrast */
  border: 2px solid #ffffff;
}

.page-resources-live-cockfighting-betting-guide__btn-secondary:hover {
  background-color: #ffffff;
  color: #017439; /* Primary color for text on white background */
}

/* Section Backgrounds */
.page-resources-live-cockfighting-betting-guide__intro-section,
.page-resources-live-cockfighting-betting-guide__rules-bets-section,
.page-resources-live-cockfighting-betting-guide__tactics-tips-section,
.page-resources-live-cockfighting-betting-guide__faq-section {
  background-color: #1a1a2e; /* Dark background from body */
  padding: 60px 0;
  color: #ffffff;
}

.page-resources-live-cockfighting-betting-guide__about-thomo-section,
.page-resources-live-cockfighting-betting-guide__how-to-bet-section,
.page-resources-live-cockfighting-betting-guide__live-stream-section,
.page-resources-live-cockfighting-betting-guide__cta-bottom-section {
  background-color: #017439; /* Primary brand color for alternating sections */
  padding: 60px 0;
  color: #ffffff;
}

.page-resources-live-cockfighting-betting-guide__dark-section .page-resources-live-cockfighting-betting-guide__section-title,
.page-resources-live-cockfighting-betting-guide__dark-section .page-resources-live-cockfighting-betting-guide__sub-section-title {
  color: #ffffff;
}

.page-resources-live-cockfighting-betting-guide__dark-section .page-resources-live-cockfighting-betting-guide__section-title::after {
  background-color: #ffffff;
}

/* Content Grid for About Thomo Section */
.page-resources-live-cockfighting-betting-guide__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-resources-live-cockfighting-betting-guide__image-wrapper {
  text-align: center;
}

.page-resources-live-cockfighting-betting-guide__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Video Section */
.page-resources-live-cockfighting-betting-guide__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px; /* Max width for video */
  margin: 40px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-live-cockfighting-betting-guide__video {
  width: 100%;
  height: auto;
  display: block;
}