/* style/cockfighting.css */
.page-cockfighting {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f7f6;
}

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

/* Hero Section */
.page-cockfighting .hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #4A148C 0%, #6A0DAD 100%); /* Deep purple gradient */
    color: #ffffff;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting .hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.page-cockfighting .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    color: #FFD700; /* Gold for emphasis */
}

.page-cockfighting .hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-cockfighting .cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: #FFD700; /* Gold button */
    color: #4A148C; /* Deep purple text for contrast */
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-cockfighting .cta-button:hover {
    background: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Section Titles */
.page-cockfighting .section-title {
    font-size: 2.5em;
    color: #4A148C; /* Primary purple */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.page-cockfighting .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    border-radius: 2px;
}

/* Intro Section */
.page-cockfighting .intro-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-cockfighting .intro-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
}

.page-cockfighting .intro-section ul {
    list-style: none;
    padding-left: 0;
}

.page-cockfighting .intro-section ul li {
    font-size: 1.1em;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    color: #444;
}

.page-cockfighting .intro-section ul li::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 1.2em;
}

.page-cockfishing .image-text-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.page-cockfighting .image-text-block .content-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    width: 100%;
    height: auto;
}

.page-cockfighting .image-text-block .text-content {
    flex: 2;
    min-width: 300px;
}

.page-cockfighting .image-text-block h3 {
    font-size: 1.8em;
    color: #4A148C;
    margin-bottom: 20px;
}

/* How-To-Play Section */
.page-cockfighting .how-to-play-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-cockfighting .how-to-play-section ol {
    list-style-type: none;
    counter-reset: step-counter;
    padding-left: 0;
}

.page-cockfighting .how-to-play-section ol li {
    counter-increment: step-counter;
    margin-bottom: 25px;
    font-size: 1.1em;
    color: #444;
    position: relative;
    padding-left: 50px;
}

.page-cockfighting .how-to-play-section ol li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #4A148C; /* Primary purple */
    color: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-cockfighting .secondary-button {
    background: #4A148C;
    color: #FFD700;
    margin-top: 30px;
}

.page-cockfighting .secondary-button:hover {
    background: #3a106e;
    color: #FFD700;
}

/* Betting Types Section */
.page-cockfighting .betting-types-section {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.page-cockfighting .card {
    background: #fdfdfd;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.page-cockfighting .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-cockfighting .card-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%; /* Make images round for icons */
    border: 3px solid #FFD700;
    padding: 10px;
}

.page-cockfighting .card-title {
    font-size: 1.6em;
    color: #4A148C;
    margin-bottom: 15px;
}

.page-cockfighting .card p {
    color: #666;
    font-size: 1.05em;
}

/* Strategy Section */
.page-cockfighting .strategy-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-cockfighting .strategy-section ul {
    list-style: none;
    padding-left: 0;
}

.page-cockfighting .strategy-section ul li {
    font-size: 1.1em;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    color: #444;
}

.page-cockfighting .strategy-section ul li::before {
    content: '💡'; /* Lightbulb icon */
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 1.3em;
}

.page-cockfighting .content-image-fullwidth {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

/* Advantages Section */
.page-cockfighting .advantages-section {
    padding: 60px 0;
    background: linear-gradient(to right, #4A148C, #6A0DAD);
    color: #ffffff;
}

.page-cockfighting .advantages-section .section-title {
    color: #FFD700;
}

.page-cockfighting .advantages-section .section-title::after {
    background-color: #ffffff;
}

.page-cockfighting .advantages-section p {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

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

.page-cockfighting .feature-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-cockfighting .feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.page-cockfighting .feature-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.page-cockfighting .feature-item h3 {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-cockfighting .feature-item p {
    color: #e0e0e0;
    font-size: 1em;
}

/* Promotions Section */
.page-cockfighting .promotions-section {
    padding: 60px 0;
    background-color: #f4f7f6;
}

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

.page-cockfighting .promo-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting .promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-cockfighting .promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-cockfighting .promo-card h3 {
    font-size: 1.5em;
    color: #4A148C;
    margin: 20px 15px 10px;
}

.page-cockfighting .promo-card p {
    color: #666;
    font-size: 1em;
    padding: 0 15px 20px;
}

.page-cockfighting .promo-button {
    display: inline-block;
    padding: 12px 30px;
    background: #FFD700;
    color: #4A148C;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.page-cockfighting .promo-button:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-cockfighting .faq-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-cockfighting .faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #4A148C; /* Primary purple */
  color: #ffffff;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-radius 0.3s ease;
}

.faq-item.active .faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.faq-question:hover {
  background: #6A0DAD; /* Lighter purple on hover */
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700; /* Gold for question text */
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
  line-height: 1;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 8px 8px;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed to fit content */
  padding: 20px 25px;
  border-bottom: 1px solid #e0e0e0;
}

.faq-answer p {
    margin: 0;
    color: #555;
    font-size: 1em;
}

/* Final CTA Section */
.page-cockfighting .cta-final-section {
    padding: 80px 0;
    background: linear-gradient(to right, #6A0DAD, #4A148C);
    color: #ffffff;
    text-align: center;
}

.page-cockfighting .cta-final-section .section-title {
    color: #FFD700;
}

.page-cockfighting .cta-final-section .section-title::after {
    background-color: #ffffff;
}

.page-cockfighting .cta-final-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-cockfighting .hero-title {
        font-size: 2.8em;
    }
    .page-cockfighting .hero-subtitle {
        font-size: 1.2em;
    }
    .page-cockfighting .section-title {
        font-size: 2em;
    }
    .page-cockfighting .image-text-block {
        flex-direction: column;
    }
    .page-cockfighting .image-text-block .content-image {
        min-width: unset;
    }
    .page-cockfighting .image-text-block .text-content {
        min-width: unset;
    }
    .page-cockfighting .cards-grid, .page-cockfighting .promo-grid, .page-cockfighting .feature-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-cockfighting .hero-section {
        padding: 60px 15px;
        min-height: 400px;
    }
    .page-cockfighting .hero-title {
        font-size: 2.2em;
    }
    .page-cockfighting .hero-subtitle {
        font-size: 1em;
    }
    .page-cockfighting .cta-button {
        padding: 15px 35px;
        font-size: 1.1em;
    }
    .page-cockfighting .section-title {
        font-size: 1.8em;
    }
    .page-cockfighting .intro-section, .page-cockfighting .how-to-play-section, .page-cockfighting .betting-types-section, .page-cockfighting .strategy-section, .page-cockfighting .advantages-section, .page-cockfighting .promotions-section, .page-cockfighting .faq-section, .page-cockfighting .cta-final-section {
        padding: 40px 0;
    }
    .page-cockfighting .intro-section p, .page-cockfighting .intro-section ul li, .page-cockfighting .how-to-play-section ol li, .page-cockfighting .strategy-section ul li {
        font-size: 0.95em;
    }
    .page-cockfighting .card-image {
        width: 100px;
        height: 100px;
    }
    .faq-question {
      padding: 15px 20px;
    }
    .faq-question h3 {
      font-size: 1.1em;
    }
    .faq-toggle {
      font-size: 20px;
    }
    .faq-item.active .faq-answer {
      padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-cockfighting .hero-title {
        font-size: 1.8em;
    }
    .page-cockfighting .hero-subtitle {
        font-size: 0.9em;
    }
    .page-cockfighting .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-cockfighting .section-title {
        font-size: 1.6em;
    }
    .page-cockfighting .card-title, .page-cockfighting .feature-item h3, .page-cockfighting .promo-card h3 {
        font-size: 1.3em;
    }
    .page-cockfighting .feature-icon {
        width: 60px;
        height: 60px;
    }
}

/* Ensure link text color contrast */
.page-cockfighting a {
    color: #FFD700; /* Gold for links on dark backgrounds */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-cockfighting a:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-cockfighting .intro-section p a, 
.page-cockfighting .how-to-play-section p a, 
.page-cockfighting .strategy-section p a, 
.page-cockfighting .faq-answer p a, 
.page-cockfighting .cta-final-section p a {
    color: #4A148C; /* Primary purple for links on light backgrounds */
}

.page-cockfighting .intro-section p a:hover, 
.page-cockfighting .how-to-play-section p a:hover, 
.page-cockfighting .strategy-section p a:hover, 
.page-cockfighting .faq-answer p a:hover, 
.page-cockfighting .cta-final-section p a:hover {
    color: #6A0DAD;
}