.page-index-live-cockfighting {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  line-height: 1.6;
}

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

.page-index-live-cockfighting__section-title {
  font-size: 2.5em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-live-cockfighting__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

/* Hero Section */
.page-index-live-cockfighting__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure spacing below fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  background: linear-gradient(135deg, #017439, #005f2e);
  overflow: hidden;
  color: #ffffff;
  padding-bottom: 60px;
}

.page-index-live-cockfighting__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-index-live-cockfighting__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-index-live-cockfighting__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.page-index-live-cockfighting__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFF00; /* Custom color for H1 */
}

.page-index-live-cockfighting__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

/* Buttons */
.page-index-live-cockfighting__btn-primary,
.page-index-live-cockfighting__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-index-live-cockfighting__btn-primary {
  background-color: #C30808; /* Custom color for primary buttons */
  color: #FFFF00; /* Custom font color for primary buttons */
  border: 2px solid #C30808;
}

.page-index-live-cockfighting__btn-primary:hover {
  background-color: #e02020;
  transform: translateY(-3px);
}

.page-index-live-cockfighting__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-index-live-cockfighting__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.page-index-live-cockfighting__btn-small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-index-live-cockfighting__btn-large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-index-live-cockfighting__cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Sections */
.page-index-live-cockfighting__dark-bg {
  background-color: #1a1a1a; /* Dark background for sections */
  color: #ffffff;
  padding: 80px 0;
}

.page-index-live-cockfighting__light-bg {
  background-color: #f8f8f8; /* Light background for sections */
  color: #333333;
  padding: 80px 0;
}

.page-index-live-cockfighting__light-bg .page-index-live-cockfighting__section-title {
  color: #017439;
}

.page-index-live-cockfighting__light-bg .page-index-live-cockfighting__section-intro {
  color: #555555;
}

/* Why Choose Us Section */
.page-index-live-cockfighting__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-live-cockfighting__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
  color: #333333;
}

.page-index-live-cockfighting__feature-item:hover {
  transform: translateY(-10px);
}

.page-index-live-cockfighting__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-index-live-cockfighting__feature-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-live-cockfighting__feature-description {
  font-size: 1em;
  color: #555555;
}

/* How To Bet Section */
.page-index-live-cockfighting__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-live-cockfighting__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-index-live-cockfighting__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #017439;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 3px solid #1a1a1a;
}

.page-index-live-cockfighting__step-title {
  font-size: 1.4em;
  color: #FFFF00; /* Custom color for step titles */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-live-cockfighting__step-description {
  font-size: 0.95em;
  color: #f0f0f0;
  margin-bottom: 20px;
}

/* Bet Types Section */
.page-index-live-cockfighting__types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}