.page-cockfighting-live-matches {
  --primary-color: #FFD700;
  --secondary-color: #8B0000;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f8f8f8;
  --bg-dark: #2c2c2c;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

.page-cockfighting-live-matches .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-cockfighting-live-matches .bg-light {
  background-color: var(--bg-light);
}

.page-cockfighting-live-matches .text-center {
  text-align: center;
}

.page-cockfighting-live-matches .mt-4 {
  margin-top: 2rem;
}

.page-cockfighting-live-matches .mt-5 {
  margin-top: 3rem;
}

/* Hero Section */
.page-cockfighting-live-matches .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-cockfighting-live-matches .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-cockfighting-live-matches .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-cockfighting-live-matches .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-cockfighting-live-matches .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-cockfighting-live-matches .main-title {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting-live-matches .hero-description {
  font-size: 1.3rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

.page-cockfighting-live-matches .hero-description strong {
  color: var(--primary-color);
}

.page-cockfighting-live-matches .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-cockfighting-live-matches .cta-button:hover {
  background: var(--secondary-color);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-cockfighting-live-matches .button-secondary {
  display: inline-block;
  padding: 10px 25px;
  background: var(--secondary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-cockfighting-live-matches .button-secondary:hover {
  background: darken(var(--secondary-color), 10%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* General Section Styling */
.page-cockfighting-live-matches section {
  padding: 80px 0;
}

.page-cockfighting-live-matches .section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--secondary-color);
}

.page-cockfighting-live-matches .section-intro .section-title {
  color: var(--secondary-color);
}

.page-cockfighting-live-matches .section-text {
  font-size: 1.1rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: var(--text-dark);
}

.page-cockfighting-live-matches .section-text strong {
  color: var(--secondary-color);
}

/* Features Grid */
.page-cockfighting-live-matches .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting-live-matches .feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting-live-matches .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-cockfighting-live-matches .feature-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-cockfighting-live-matches .feature-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-cockfighting-live-matches .feature-description {
  font-size: 1rem;
  color: var(--text-dark);
}

/* Schedule List */
.page-cockfighting-live-matches .schedule-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting-live-matches .schedule-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting-live-matches .schedule-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-cockfighting-live-matches .schedule-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-cockfighting-live-matches .schedule-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.page-cockfighting-live-matches .schedule-details {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

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

.page-cockfighting-live-matches .step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  padding-top: 60px;
}

.page-cockfighting-live-matches .step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  border: 4px solid var(--secondary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-live-matches .step-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-cockfighting-live-matches .step-description {
  font-size: 1rem;
  color: var(--text-dark);
}

.page-cockfighting-live-matches .step-description strong {
  color: var(--secondary-color);
}

/* Advantages List */
.page-cockfighting-live-matches .advantage-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-cockfighting-live-matches .advantage-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting-live-matches .advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-cockfighting-live-matches .advantage-heading {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.page-cockfighting-live-matches .advantage-description {
  font-size: 1rem;
  color: var(--text-dark);
}

.page-cockfighting-live-matches .advantage-description strong {
  color: var(--primary-color);
}

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

.page-cockfighting-live-matches .bet-type-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting-live-matches .bet-type-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-cockfighting-live-matches .bet-type-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-cockfighting-live-matches .bet-type-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.page-cockfighting-live-matches .bet-type-description {
  font-size: 1rem;
  color: var(--text-dark);
}

/* Tips List */
.page-cockfighting-live-matches .tip-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-cockfighting-live-matches .tip-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting-live-matches .tip-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-cockfighting-live-matches .tip-heading {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.page-cockfighting-live-matches .tip-description {
  font-size: 1rem;
  color: var(--text-dark);
}

.page-cockfighting-live-matches .tip-description strong {
  color: var(--primary-color);
}

/* Security Features */
.page-cockfighting-live-matches .security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting-live-matches .security-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-cockfighting-live-matches .security-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-cockfighting-live-matches .security-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-cockfighting-live-matches .security-description {
  font-size: 1rem;
  color: var(--text-dark);
}

/* FAQ Section */
.page-cockfighting-live-matches .faq-container {
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f5f5f5;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--text-dark);
  font-weight: bold;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: var(--bg-light);
}

.faq-answer p {
  margin: 0;
  padding-bottom: 20px;
  font-size: 1rem;
  color: var(--text-dark);
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 15px 25px;
  border-top: 1px solid #e0e0e0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-color);
}

/* Call to Action Bottom */
.page-cockfighting-live-matches .section-cta-bottom {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--secondary-color), #A52A2A);
  color: var(--text-light);
}

.page-cockfighting-live-matches .section-cta-bottom .section-title {
  color: var(--primary-color);
  font-size: 2.8rem;
}

.page-cockfighting-live-matches .section-cta-bottom .section-text {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.page-cockfighting-live-matches .section-cta-bottom .section-text strong {
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-cockfighting-live-matches .main-title {
    font-size: 2.5rem;
  }
  .page-cockfighting-live-matches .hero-description {
    font-size: 1.1rem;
  }
  .page-cockfighting-live-matches .section-title {
    font-size: 2rem;
  }
  .page-cockfighting-live-matches .section-text {
    font-size: 1rem;
  }
  .page-cockfighting-live-matches section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .page-cockfighting-live-matches .hero-section {
    padding: 40px 15px;
  }
  .page-cockfighting-live-matches .main-title {
    font-size: 2rem;
  }
  .page-cockfighting-live-matches .hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .page-cockfighting-live-matches .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
    margin-top: 20px;
  }
  .page-cockfighting-live-matches .section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-cockfighting-live-matches .section-text {
    margin-bottom: 30px;
  }
  .page-cockfighting-live-matches .features-grid, 
  .page-cockfighting-live-matches .schedule-list, 
  .page-cockfighting-live-matches .steps-grid, 
  .page-cockfighting-live-matches .advantage-list,
  .page-cockfighting-live-matches .bet-type-grid,
  .page-cockfighting-live-matches .tip-list,
  .page-cockfighting-live-matches .security-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-cockfighting-live-matches .feature-icon, .page-cockfighting-live-matches .security-icon {
    width: 80px;
    height: 80px;
  }
  .page-cockfighting-live-matches .step-item {
    padding-top: 40px;
  }
  .page-cockfighting-live-matches .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    top: -20px;
    border-width: 3px;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1rem;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 10px 20px;
  }
  .page-cockfighting-live-matches .section-cta-bottom .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .page-cockfighting-live-matches .main-title {
    font-size: 1.8rem;
  }
  .page-cockfighting-live-matches .cta-button {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
  .page-cockfighting-live-matches .section-title {
    font-size: 1.6rem;
  }
  .page-cockfighting-live-matches .section-cta-bottom .section-title {
    font-size: 1.8rem;
  }
}