/* style/c7clubs-cockfighting-live.css */
:root {
  --primary-color: #FFD700;
  --secondary-color: #1A1A1A;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #1A1A1A;
  --background-light: #f9f9f9;
  --border-color: #e0e0e0;
}

.page-c7clubs-cockfighting-live {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Body background is dark, so text is light */
  background-color: var(--background-dark);
}

/* Fixed Navbar Spacing */
.page-c7clubs-cockfighting-live__hero-section {
  padding-top: 120px; /* Desktop: Adjust based on fixed header height */
}

.page-c7clubs-cockfighting-live__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-c7clubs-cockfighting-live__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-c7clubs-cockfighting-live__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.page-c7clubs-cockfighting-live__content-wrapper {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 40px;
  color: var(--text-light);
}

.page-c7clubs-cockfighting-live__content-wrapper p,
.page-c7clubs-cockfighting-live__content-wrapper ul,
.page-c7clubs-cockfighting-live__content-wrapper li {
  color: var(--text-light);
  font-size: 17px;
  margin-bottom: 15px;
}

.page-c7clubs-cockfighting-live__content-wrapper a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-c7clubs-cockfighting-live__content-wrapper a:hover {
  text-decoration: underline;
}

/* Buttons */
.page-c7clubs-cockfighting-live__btn-primary,
.page-c7clubs-cockfighting-live__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-c7clubs-cockfighting-live__btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.page-c7clubs-cockfighting-live__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

.page-c7clubs-cockfighting-live__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
}

.page-c7clubs-cockfighting-live__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* Hero Section */
.page-c7clubs-cockfighting-live__hero-section {
  position: relative;
  background-color: var(--background-dark);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 50px;
}

.page-c7clubs-cockfighting-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
}

.page-c7clubs-cockfighting-live__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.page-c7clubs-cockfighting-live__hero-title {
  font-size: 56px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color);
  line-height: 1.2;
}

.page-c7clubs-cockfighting-live__hero-description {
  font-size: 20px;
  margin-bottom: 40px;
  line-height: 1.5;
  color: #f0f0f0;
}

.page-c7clubs-cockfighting-live__hero-cta .page-c7clubs-cockfighting-live__btn-primary {
  padding: 18px 45px;
  font-size: 22px;
  border-radius: 10px;
}

/* Intro Section */
.page-c7clubs-cockfighting-live__intro-section {
  padding: 80px 0;
  background-color: var(--background-dark);
  color: var(--text-light);
}

/* Features Section */
.page-c7clubs-cockfighting-live__features-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-c7clubs-cockfighting-live__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-c7clubs-cockfighting-live__feature-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-light);
}

.page-c7clubs-cockfighting-live__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-c7clubs-cockfighting-live__feature-card .page-c7clubs-cockfighting-live__card-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-c7clubs-cockfighting-live__feature-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
}

/* How-To-Play Section */
.page-c7clubs-cockfighting-live__how-to-play-section {
  padding: 80px 0;
  background-color: var(--background-dark);
}

.page-c7clubs-cockfighting-live__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-c7clubs-cockfighting-live__step-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-c7clubs-cockfighting-live__step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.page-c7clubs-cockfighting-live__step-item .page-c7clubs-cockfighting-live__step-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-c7clubs-cockfighting-live__step-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-c7clubs-cockfighting-live__step-item .page-c7clubs-cockfighting-live__btn-secondary {
  margin-top: auto; /* Push button to bottom */
}

/* Bet Types Section */
.page-c7clubs-cockfighting-live__bet-types-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-c7clubs-cockfighting-live__bet-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-c7clubs-cockfighting-live__type-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-light);
}

.page-c7clubs-cockfighting-live__type-card .page-c7clubs-cockfighting-live__type-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-c7clubs-cockfighting-live__type-card .page-c7clubs-cockfighting-live__card-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-c7clubs-cockfighting-live__type-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
}

/* Tips Section */
.page-c7clubs-cockfighting-live__tips-section {
  padding: 80px 0;
  background-color: var(--background-dark);
}

.page-c7clubs-cockfighting-live__tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-c7clubs-cockfighting-live__tips-list li {
  background-color: rgba(255, 215, 0, 0.1);
  border-left: 5px solid var(--primary-color);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 17px;
  color: var(--text-light);
}

.page-c7clubs-cockfighting-live__tips-list li strong {
  color: var(--primary-color);
}

/* Security Section */
.page-c7clubs-cockfighting-live__security-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-c7clubs-cockfighting-live__security-section .page-c7clubs-cockfighting-live__content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-c7clubs-cockfighting-live__security-image {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  object-fit: cover;
}

.page-c7clubs-cockfighting-live__security-section ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
  max-width: 800px;
}

.page-c7clubs-cockfighting-live__security-section ul li {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
  font-size: 17px;
  color: var(--text-light);
}

.page-c7clubs-cockfighting-live__security-section ul li strong {
  color: var(--primary-color);
}

/* Promotions Section */
.page-c7clubs-cockfighting-live__promotions-section {
  padding: 80px 0;
  background-color: var(--background-dark);
}

.page-c7clubs-cockfighting-live__promotions-intro {
  text-align: center;
  font-size: 18px;
  margin-bottom: 50px;
  color: #e0e0e0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-c7clubs-cockfighting-live__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-c7clubs-cockfighting-live__promo-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-c7clubs-cockfighting-live__promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-c7clubs-cockfighting-live__promo-card .page-c7clubs-cockfighting-live__card-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-c7clubs-cockfighting-live__promo-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-c7clubs-cockfighting-live__promo-card .page-c7clubs-cockfighting-live__btn-primary {
  margin-top: auto;
}

.page-c7clubs-cockfighting-live__all-promos-cta {
  text-align: center;
}

/* Final CTA Section */
.page-c7clubs-cockfighting-live__final-cta-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  text-align: center;
}

.page-c7clubs-cockfighting-live__final-cta-description {
  font-size: 20px;
  margin-bottom: 40px;
  color: #e0e0e0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-c7clubs-cockfighting-live__final-cta-section .page-c7clubs-cockfighting-live__btn-primary {
  padding: 18px 45px;
  font-size: 22px;
  border-radius: 10px;
}

/* General image responsiveness */
.page-c7clubs-cockfighting-live img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-c7clubs-cockfighting-live {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Fixed Navbar Spacing for mobile */
  .page-c7clubs-cockfighting-live__hero-section {
    padding-top: 100px !important; /* Mobile: Adjust based on fixed header height */
    min-height: 400px;
  }

  .page-c7clubs-cockfighting-live__hero-title {
    font-size: 36px;
  }

  .page-c7clubs-cockfighting-live__hero-description {
    font-size: 16px;
  }

  .page-c7clubs-cockfighting-live__hero-cta .page-c7clubs-cockfighting-live__btn-primary,
  .page-c7clubs-cockfighting-live__final-cta-section .page-c7clubs-cockfighting-live__btn-primary {
    padding: 15px 30px !important;
    font-size: 18px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-c7clubs-cockfighting-live__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-c7clubs-cockfighting-live__container {
    padding: 0 15px;
  }

  .page-c7clubs-cockfighting-live__content-wrapper {
    padding: 25px;
  }

  .page-c7clubs-cockfighting-live__features-grid,
  .page-c7clubs-cockfighting-live__steps-grid,
  .page-c7clubs-cockfighting-live__bet-types-grid,
  .page-c7clubs-cockfighting-live__promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-c7clubs-cockfighting-live__feature-card,
  .page-c7clubs-cockfighting-live__step-item,
  .page-c7clubs-cockfighting-live__type-card,
  .page-c7clubs-cockfighting-live__promo-card {
    padding: 20px;
  }

  .page-c7clubs-cockfighting-live__feature-card .page-c7clubs-cockfighting-live__card-title,
  .page-c7clubs-cockfighting-live__step-item .page-c7clubs-cockfighting-live__step-title,
  .page-c7clubs-cockfighting-live__type-card .page-c7clubs-cockfighting-live__card-title,
  .page-c7clubs-cockfighting-live__promo-card .page-c7clubs-cockfighting-live__card-title {
    font-size: 20px;
  }

  .page-c7clubs-cockfighting-live__content-wrapper p,
  .page-c7clubs-cockfighting-live__content-wrapper ul,
  .page-c7clubs-cockfighting-live__content-wrapper li,
  .page-c7clubs-cockfighting-live__feature-card p,
  .page-c7clubs-cockfighting-live__step-item p,
  .page-c7clubs-cockfighting-live__type-card p,
  .page-c7clubs-cockfighting-live__promo-card p {
    font-size: 15px;
  }

  .page-c7clubs-cockfighting-live__tips-list li,
  .page-c7clubs-cockfighting-live__security-section ul li {
    font-size: 15px;
    padding: 15px;
  }

  .page-c7clubs-cockfighting-live__security-image {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-c7clubs-cockfighting-live__promotions-intro,
  .page-c7clubs-cockfighting-live__final-cta-description {
    font-size: 16px;
  }

  /* Ensure all images are responsive */
  .page-c7clubs-cockfighting-live img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .page-c7clubs-cockfighting-live__content-image,
  .page-c7clubs-cockfighting-live__type-image,
  .page-c7clubs-cockfighting-live__promo-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
  }

  .page-c7clubs-cockfighting-live__btn-primary,
  .page-c7clubs-cockfighting-live__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-c7clubs-cockfighting-live__hero-cta,
  .page-c7clubs-cockfighting-live__how-to-play-section .page-c7clubs-cockfighting-live__step-item,
  .page-c7clubs-cockfighting-live__all-promos-cta,
  .page-c7clubs-cockfighting-live__final-cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}