/* style/cockfighting-live-streams.css */
:root {
    --primary-color: #FFD700;
    --secondary-color: #8B0000;
    --text-color-dark-bg: #ffffff;
    --text-color-light-bg: #333333;
    --card-bg-dark-mode: rgba(255, 255, 255, 0.1);
    --card-bg-light-mode: #ffffff;
    --section-bg-dark-mode: rgba(0, 0, 0, 0.3);
    --section-bg-light-mode: #f1f3f5;
    --border-color: #e0e0e0;
}

.page-cockfighting-live-streams {
    background-color: #000; /* Body background is dark */
    color: var(--text-color-dark-bg); /* Default text color for dark body background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.page-cockfighting-live-streams__hero-content-section {
    padding-top: 180px; /* Desktop: Adjust for fixed header */
    padding-bottom: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #333333 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.page-cockfighting-live-streams__hero-description {
    font-size: 18px;
    color: var(--text-color-dark-bg);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting-live-streams__promotion-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-cockfighting-live-streams__promotion-link:hover {
    color: var(--text-color-dark-bg);
}

.page-cockfighting-live-streams__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-cockfighting-live-streams__cta-button {
    display: inline-block;
    padding: 15px 35px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-live-streams__cta-button--primary {
    background: linear-gradient(135deg, var(--primary-color), #FFA500);
    color: #000000; /* Dark text for primary button */
    border: none;
}

.page-cockfighting-live-streams__cta-button--primary:hover {
    background: linear-gradient(135deg, #FFA500, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-live-streams__cta-button--secondary {
    background: none;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-cockfighting-live-streams__cta-button--secondary:hover {
    background: var(--primary-color);
    color: #000000; /* Dark text when hovered */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-live-streams__main-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 12px;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting-live-streams__section {
    padding: 60px 0;
    background-color: #000; /* Default section background */
    color: var(--text-color-dark-bg);
}

.page-cockfighting-live-streams__section:nth-of-type(even) {
    background-color: var(--section-bg-dark-mode);
}

.page-cockfighting-live-streams__section-title {
    font-size: 38px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-cockfighting-live-streams__introduction p,
.page-cockfighting-live-streams__why-choose-us li,
.page-cockfighting-live-streams__tips-strategies p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-color-dark-bg);
}

.page-cockfighting-live-streams__introduction p strong {
    color: var(--primary-color);
}

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

.page-cockfighting-live-streams__card {
    background: var(--card-bg-dark-mode);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-color-dark-bg);
}

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

.page-cockfighting-live-streams__card-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-cockfighting-live-streams__card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color-dark-bg);
}

.page-cockfighting-live-streams__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-cockfighting-live-streams__step-item {
    text-align: center;
    background: var(--card-bg-dark-mode);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-color-dark-bg);
}

.page-cockfighting-live-streams__step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-live-streams__step-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-cockfighting-live-streams__step-title {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-cockfighting-live-streams__step-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color-dark-bg);
}

.page-cockfighting-live-streams__center-cta {
    text-align: center;
    margin-top: 50px;
}

.page-cockfighting-live-streams__promotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-cockfighting-live-streams__promotion-card {
    background: var(--card-bg-light-mode); /* Lighter background for promotion cards */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-color-light-bg);
    text-align: center;
}

.page-cockfighting-live-streams__promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-live-streams__promotion-card-title {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-cockfighting-live-streams__promotion-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-color-light-bg);
}

.page-cockfighting-live-streams__highlight-text {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 18px;
}

.page-cockfighting-live-streams__btn-small {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--secondary-color), #B80000);
    color: var(--text-color-dark-bg);
    text-decoration: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-cockfighting-live-streams__btn-small:hover {
    background: linear-gradient(135deg, #B80000, var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-live-streams__promotion-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    margin-top: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting-live-streams__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting-live-streams__feature-list li {
    background: var(--card-bg-dark-mode);
    border-left: 5px solid var(--primary-color);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    font-size: 17px;
    color: var(--text-color-dark-bg);
}

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

.page-cockfighting-live-streams__platform-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 12px;
    margin-top: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting-live-streams__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-cockfighting-live-streams__tip-card {
    background: var(--card-bg-light-mode);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-color-light-bg);
}

.page-cockfighting-live-streams__tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-live-streams__tip-card-title {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-cockfighting-live-streams__tip-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color-light-bg);
}

/* FAQ Styles */
.page-cockfighting-live-streams__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-cockfighting-live-streams__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-cockfighting-live-streams__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-cockfighting-live-streams__faq-item.active .page-cockfighting-live-streams__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: var(--card-bg-dark-mode);
  border-radius: 0 0 5px 5px;
}

.page-cockfighting-live-streams__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: var(--card-bg-dark-mode);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-cockfighting-live-streams__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.page-cockfighting-live-streams__faq-question:active {
  background: rgba(255, 255, 255, 0.2);
}

.page-cockfighting-live-streams__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--primary-color);
}

.page-cockfighting-live-streams__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-cockfighting-live-streams__faq-item.active .page-cockfighting-live-streams__faq-toggle {
  color: var(--text-color-dark-bg);
  transform: rotate(45deg);
}

.page-cockfighting-live-streams__faq-answer p {
    color: var(--text-color-dark-bg);
    font-size: 16px;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-cockfighting-live-streams__main-title {
        font-size: 40px;
    }
    .page-cockfighting-live-streams__section-title {
        font-size: 32px;
    }
    .page-cockfighting-live-streams__hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-cockfighting-live-streams__cta-button {
        width: 80%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .page-cockfighting-live-streams__hero-content-section {
        padding-top: 140px; /* Mobile: Adjust for fixed header */
        padding-bottom: 40px;
    }
    .page-cockfighting-live-streams__main-title {
        font-size: 32px;
    }
    .page-cockfighting-live-streams__hero-description {
        font-size: 16px;
    }
    .page-cockfighting-live-streams__cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }
    .page-cockfighting-live-streams__section {
        padding: 40px 0;
    }
    .page-cockfighting-live-streams__section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .page-cockfighting-live-streams__introduction p,
    .page-cockfighting-live-streams__why-choose-us li,
    .page-cockfighting-live-streams__tips-strategies p {
        font-size: 15px;
        line-height: 1.7;
    }
    .page-cockfighting-live-streams__card,
    .page-cockfighting-live-streams__step-item,
    .page-cockfighting-live-streams__promotion-card,
    .page-cockfighting-live-streams__tip-card {
        padding: 20px;
    }
    .page-cockfighting-live-streams__card-title,
    .page-cockfighting-live-streams__step-title,
    .page-cockfighting-live-streams__promotion-card-title,
    .page-cockfighting-live-streams__tip-card-title {
        font-size: 20px;
    }
    .page-cockfighting-live-streams__card p,
    .page-cockfighting-live-streams__step-item p,
    .page-cockfighting-live-streams__promotion-card p,
    .page-cockfighting-live-streams__tip-card p {
        font-size: 15px;
    }
    .page-cockfighting-live-streams__btn-small {
        font-size: 14px;
        padding: 8px 15px;
    }
    .page-cockfighting-live-streams__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    .page-cockfighting-live-streams__faq-question h3 {
        font-size: 16px;
        width: calc(100% - 40px);
    }
    .page-cockfighting-live-streams__faq-toggle {
        margin-left: 10px;
        width: 28px;
        height: 28px;
        font-size: 24px;
    }
    .page-cockfighting-live-streams__faq-item.active .page-cockfighting-live-streams__faq-answer {
        padding: 15px !important;
    }
    .page-cockfighting-live-streams__faq-answer p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .page-cockfighting-live-streams__main-title {
        font-size: 28px;
    }
    .page-cockfighting-live-streams__section-title {
        font-size: 24px;
    }
    .page-cockfighting-live-streams__hero-description {
        font-size: 15px;
    }
    .page-cockfighting-live-streams__cta-button {
        width: 90%;
    }
    .page-cockfighting-live-streams__grid,
    .page-cockfighting-live-streams__steps-grid,
    .page-cockfighting-live-streams__promotion-grid,
    .page-cockfighting-live-streams__tips-grid {
        gap: 20px;
    }
    .page-cockfighting-live-streams__card-title,
    .page-cockfighting-live-streams__step-title,
    .page-cockfighting-live-streams__promotion-card-title,
    .page-cockfighting-live-streams__tip-card-title {
        font-size: 18px;
    }
    .page-cockfighting-live-streams__card p,
    .page-cockfighting-live-streams__step-item p,
    .page-cockfighting-live-streams__promotion-card p,
    .page-cockfighting-live-streams__tip-card p {
        font-size: 14px;
    }
    .page-cockfighting-live-streams__faq-question h3 {
        font-size: 15px;
    }
    .page-cockfighting-live-streams__faq-toggle {
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
}