/* style/cockfighting-platforms-comparison.css */

/* Variables for colors and fonts */
:root {
    --page-cockfighting-platforms-comparison-primary-color: #FFD700; /* Gold */
    --page-cockfighting-platforms-comparison-secondary-color: #8B0000; /* Dark Red */
    --page-cockfighting-platforms-comparison-text-dark: #333;
    --page-cockfighting-platforms-comparison-text-light: #f8f8f8;
    --page-cockfighting-platforms-comparison-bg-light: #ffffff;
    --page-cockfighting-platforms-comparison-bg-dark: #222;
    --page-cockfighting-platforms-comparison-border-color: #eee;
    --page-cockfighting-platforms-comparison-font-family: 'Arial', sans-serif;
}

.page-cockfighting-platforms-comparison {
    font-family: var(--page-cockfighting-platforms-comparison-font-family);
    line-height: 1.6;
    color: var(--page-cockfighting-platforms-comparison-text-dark);
    background-color: var(--page-cockfighting-platforms-comparison-bg-light);
}

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

/* Hero Section */
.page-cockfighting-platforms-comparison__hero {
    background: linear-gradient(135deg, var(--page-cockfighting-platforms-comparison-primary-color) 0%, var(--page-cockfighting-platforms-comparison-secondary-color) 100%);
    color: var(--page-cockfighting-platforms-comparison-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-cockfighting-platforms-comparison__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
}

.page-cockfighting-platforms-comparison__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
}

.page-cockfighting-platforms-comparison__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--page-cockfighting-platforms-comparison-text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-platforms-comparison__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--page-cockfighting-platforms-comparison-text-light);
}

.page-cockfighting-platforms-comparison__hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.page-cockfighting-platforms-comparison__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-cockfighting-platforms-comparison__btn--primary {
    background-color: var(--page-cockfighting-platforms-comparison-primary-color);
    color: var(--page-cockfighting-platforms-comparison-secondary-color); /* Dark red text for gold button for contrast */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-platforms-comparison__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-platforms-comparison__btn--secondary {
    background-color: var(--page-cockfighting-platforms-comparison-secondary-color);
    color: var(--page-cockfighting-platforms-comparison-primary-color); /* Gold text for dark red button for contrast */
    border: 2px solid var(--page-cockfighting-platforms-comparison-primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-platforms-comparison__btn--secondary:hover {
    background-color: #a30000; /* Slightly darker red */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-platforms-comparison__btn--small {
    padding: 10px 20px;
    font-size: 0.95em;
    border-radius: 5px;
    margin-top: 15px;
}

/* Sections */
.page-cockfighting-platforms-comparison__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--page-cockfighting-platforms-comparison-border-color);
}

.page-cockfighting-platforms-comparison__section:last-of-type {
    border-bottom: none;
}

.page-cockfighting-platforms-comparison__section-title {
    font-size: 2.5em;
    color: var(--page-cockfighting-platforms-comparison-secondary-color);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

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

.page-cockfighting-platforms-comparison__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #555;
}

/* Content Grid for text and image */
.page-cockfighting-platforms-comparison__content-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-cockfighting-platforms-comparison__content-grid--reverse {
    flex-direction: row-reverse;
}

.page-cockfighting-platforms-comparison__text-content {
    flex: 1;
}

.page-cockfighting-platforms-comparison__text-content p {
    margin-bottom: 15px;
    color: #444;
}

.page-cockfighting-platforms-comparison__text-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-cockfighting-platforms-comparison__text-content ul li {
    margin-bottom: 8px;
    color: #444;
}

.page-cockfighting-platforms-comparison__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-cockfighting-platforms-comparison__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.page-cockfighting-platforms-comparison__criteria-item {
    background-color: var(--page-cockfighting-platforms-comparison-bg-light);
    border: 1px solid var(--page-cockfighting-platforms-comparison-border-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting-platforms-comparison__criteria-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-cockfighting-platforms-comparison__criteria-title {
    font-size: 1.5em;
    color: var(--page-cockfighting-platforms-comparison-secondary-color);
    margin-bottom: 15px;
}

/* alo789 Section Specifics */
.page-cockfighting-platforms-comparison__section--alo789 {
    background-color: #fcfcfc; /* Slightly off-white for contrast */
}

.page-cockfighting-platforms-comparison__sub-title {
    font-size: 1.8em;
    color: var(--page-cockfighting-platforms-comparison-primary-color);
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-cockfighting-platforms-comparison__cta-group {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Tips Grid */
.page-cockfighting-platforms-comparison__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-cockfighting-platforms-comparison__tip-item {
    background-color: var(--page-cockfighting-platforms-comparison-primary-color);
    color: var(--page-cockfighting-platforms-comparison-secondary-color); /* Dark red text for gold background */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.page-cockfighting-platforms-comparison__tip-title {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: var(--page-cockfighting-platforms-comparison-secondary-color);
}

.page-cockfighting-platforms-comparison__tip-item p {
    color: var(--page-cockfighting-platforms-comparison-secondary-color);
}

/* Conclusion Section */
.page-cockfighting-platforms-comparison__section--conclusion {
    text-align: center;
    background-color: var(--page-cockfighting-platforms-comparison-bg-dark); /* Dark background for strong contrast */
    color: var(--page-cockfighting-platforms-comparison-text-light);
}

.page-cockfighting-platforms-comparison__section--conclusion .page-cockfighting-platforms-comparison__section-title {
    color: var(--page-cockfighting-platforms-comparison-primary-color); /* Gold title on dark background */
}

.page-cockfighting-platforms-comparison__section--conclusion .page-cockfighting-platforms-comparison__section-title::after {
    background-color: var(--page-cockfighting-platforms-comparison-primary-color);
}

.page-cockfighting-platforms-comparison__section--conclusion p {
    color: var(--page-cockfighting-platforms-comparison-text-light);
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 25px;
}

.page-cockfighting-platforms-comparison__cta-final {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* FAQ Section */
.page-cockfighting-platforms-comparison__section--faq {
    background-color: #f5f5f5;
}

.page-cockfighting-platforms-comparison__faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.page-cockfighting-platforms-comparison__faq-item {
    background-color: var(--page-cockfighting-platforms-comparison-bg-light);
    border: 1px solid var(--page-cockfighting-platforms-comparison-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-cockfighting-platforms-comparison__faq-question {
    font-size: 1.2em;
    color: var(--page-cockfighting-platforms-comparison-secondary-color);
    padding: 20px 25px;
    cursor: pointer;
    position: relative;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    transition: background-color 0.3s ease;
}

.page-cockfighting-platforms-comparison__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: var(--page-cockfighting-platforms-comparison-primary-color);
    transition: transform 0.3s ease;
}

.page-cockfighting-platforms-comparison__faq-item.active .page-cockfighting-platforms-comparison__faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.page-cockfighting-platforms-comparison__faq-answer {
    padding: 0 25px 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    color: #555;
}

.page-cockfighting-platforms-comparison__faq-item.active .page-cockfighting-platforms-comparison__faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding-top: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-cockfighting-platforms-comparison__hero-title {
        font-size: 2.5em;
    }
    .page-cockfighting-platforms-comparison__section-title {
        font-size: 2em;
    }
    .page-cockfighting-platforms-comparison__content-grid {
        flex-direction: column;
    }
    .page-cockfighting-platforms-comparison__content-grid--reverse {
        flex-direction: column;
    }
    .page-cockfighting-platforms-comparison__criteria-grid,
    .page-cockfighting-platforms-comparison__tips-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-cockfighting-platforms-comparison__hero {
        padding: 80px 0;
    }
    .page-cockfighting-platforms-comparison__hero-title {
        font-size: 2em;
    }
    .page-cockfighting-platforms-comparison__hero-subtitle {
        font-size: 1.1em;
    }
    .page-cockfighting-platforms-comparison__hero-cta,
    .page-cockfighting-platforms-comparison__cta-group,
    .page-cockfighting-platforms-comparison__cta-final {
        flex-direction: column;
        gap: 15px;
    }
    .page-cockfighting-platforms-comparison__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-cockfighting-platforms-comparison__section {
        padding: 40px 0;
    }
    .page-cockfighting-platforms-comparison__section-title {
        font-size: 1.8em;
    }
    .page-cockfighting-platforms-comparison__criteria-grid,
    .page-cockfighting-platforms-comparison__tips-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-cockfighting-platforms-comparison__hero-title {
        font-size: 1.8em;
    }
    .page-cockfighting-platforms-comparison__hero-subtitle {
        font-size: 1em;
    }
    .page-cockfighting-platforms-comparison__btn {
        width: 90%;
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-cockfighting-platforms-comparison__section-title {
        font-size: 1.5em;
    }
    .page-cockfighting-platforms-comparison__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-cockfighting-platforms-comparison__faq-answer {
        padding: 0 20px 15px;
    }
}