/* style/cockfighting-stars-legends.css */
.page-cockfighting-stars-legends {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Default text color for dark background */
    background-color: #1a1a1a; /* Dark background */
}

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

.page-cockfighting-stars-legends__hero-section {
    background: linear-gradient(135deg, #B22222, #FFD700);
    padding: 100px 0;
    text-align: center;
    color: #1a1a1a; /* Dark text for light gradient background */
}

.page-cockfighting-stars-legends__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #1a1a1a; /* Ensure high contrast */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-stars-legends__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: #333; /* Ensure high contrast */
}

.page-cockfighting-stars-legends__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-cockfighting-stars-legends__btn--primary {
    background-color: #B22222;
    color: #fff;
}

.page-cockfighting-stars-legends__btn--primary:hover {
    background-color: #8B0000;
    transform: translateY(-3px);
}

.page-cockfighting-stars-legends__btn--secondary {
    background-color: #FFD700;
    color: #1a1a1a;
}

.page-cockfighting-stars-legends__btn--secondary:hover {
    background-color: #E6B800;
    transform: translateY(-3px);
}

.page-cockfighting-stars-legends__btn--download {
    background-color: #4CAF50;
    color: #fff;
}

.page-cockfighting-stars-legends__btn--download:hover {
    background-color: #45a049;
    transform: translateY(-3px);
}

.page-cockfighting-stars-legends__btn--detail {
    background-color: #FFD700;
    color: #1a1a1a;
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 15px;
}

.page-cockfighting-stars-legends__btn--detail:hover {
    background-color: #E6B800;
}

.page-cockfighting-stars-legends__content-section {
    padding: 80px 0;
}

.page-cockfighting-stars-legends__bg--dark {
    background-color: #2a2a2a;
}

.page-cockfighting-stars-legends__bg--light {
    background-color: #3a3a3a;
}

.page-cockfighting-stars-legends__bg--cta {
    background-color: #B22222;
    color: #fff;
    text-align: center;
}

.page-cockfighting-stars-legends__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 50px;
    color: #FFD700;
    position: relative;
    padding-bottom: 10px;
}

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

.page-cockfighting-stars-legends__bg--dark .page-cockfighting-stars-legends__section-title::after {
    background-color: #FFD700;
}

.page-cockfighting-stars-legends__text {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-cockfighting-stars-legends__text--cta {
    text-align: center;
    margin-top: 30px;
    font-size: 1.2em;
}

.page-cockfighting-stars-legends__link--cta {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-cockfighting-stars-legends__link--cta:hover {
    color: #B22222;
}

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

.page-cockfighting-stars-legends__legend-card, .page-cockfighting-stars-legends__trainer-card, .page-cockfighting-stars-legends__detail-card {
    background-color: #3a3a3a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-cockfighting-stars-legends__legend-card:hover, .page-cockfighting-stars-legends__trainer-card:hover, .page-cockfighting-stars-legends__detail-card:hover {
    transform: translateY(-10px);
}

.page-cockfighting-stars-legends__card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 3px solid #B22222;
}

.page-cockfighting-stars-legends__legend-card .page-cockfighting-stars-legends__card-title, .page-cockfighting-stars-legends__trainer-card .page-cockfighting-stars-legends__card-title, .page-cockfighting-stars-legends__detail-card .page-cockfighting-stars-legends__detail-title {
    font-size: 1.8em;
    color: #FFD700;
    margin: 20px 15px 10px;
}

.page-cockfighting-stars-legends__detail-card .page-cockfighting-stars-legends__detail-title a {
    color: #FFD700;
    text-decoration: none;
}

.page-cockfighting-stars-legends__detail-card .page-cockfighting-stars-legends__detail-title a:hover {
    color: #B22222;
}

.page-cockfighting-stars-legends__card-text, .page-cockfighting-stars-legends__detail-description {
    font-size: 1em;
    color: #ccc;
    padding: 0 15px 20px;
    line-height: 1.6;
}

.page-cockfighting-stars-legends__event-card {
    background-color: #3a3a3a;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.page-cockfighting-stars-legends__event-card .page-cockfighting-stars-legends__card-img {
    height: 300px;
    object-fit: cover;
}

.page-cockfighting-stars-legends__event-card .page-cockfighting-stars-legends__card-title {
    font-size: 2em;
    color: #FFD700;
    margin: 25px 25px 15px;
    text-align: left;
}

.page-cockfighting-stars-legends__event-card .page-cockfighting-stars-legends__card-text {
    font-size: 1.1em;
    color: #ccc;
    padding: 0 25px 25px;
    line-height: 1.7;
    text-align: left;
}

.page-cockfighting-stars-legends__cta-buttons {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-cockfighting-stars-legends__floating-ad-menu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(178, 34, 34, 0.9);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 1000;
}

.page-cockfighting-stars-legends__floating-btn {
    display: block;
    background-color: #FFD700;
    color: #1a1a1a;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-cockfighting-stars-legends__floating-btn:hover {
    background-color: #E6B800;
    color: #B22222;
}

.page-cockfighting-stars-legends .highlight-keyword {
    color: #FFD700;
    font-weight: bold;
}

@media (max-width: 992px) {
    .page-cockfighting-stars-legends__hero-title {
        font-size: 2.8em;
    }
    .page-cockfighting-stars-legends__section-title {
        font-size: 2em;
    }
    .page-cockfighting-stars-legends__legend-grid, .page-cockfighting-stars-legends__trainer-grid, .page-cockfighting-stars-legends__detail-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-cockfighting-stars-legends__event-card {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-cockfighting-stars-legends__hero-section {
        padding: 80px 0;
    }
    .page-cockfighting-stars-legends__hero-title {
        font-size: 2.2em;
    }
    .page-cockfighting-stars-legends__hero-description {
        font-size: 1.1em;
    }
    .page-cockfighting-stars-legends__section-title {
        font-size: 1.8em;
    }
    .page-cockfighting-stars-legends__content-section {
        padding: 60px 0;
    }
    .page-cockfighting-stars-legends__floating-ad-menu {
        right: 10px;
        bottom: 10px;
        padding: 8px;
        gap: 8px;
    }
    .page-cockfighting-stars-legends__floating-btn {
        padding: 10px 15px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-cockfighting-stars-legends__hero-title {
        font-size: 1.8em;
    }
    .page-cockfighting-stars-legends__section-title {
        font-size: 1.5em;
    }
    .page-cockfighting-stars-legends__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-cockfighting-stars-legends__legend-grid, .page-cockfighting-stars-legends__trainer-grid, .page-cockfighting-stars-legends__detail-grid {
        grid-template-columns: 1fr;
    }
    .page-cockfighting-stars-legends__event-card .page-cockfighting-stars-legends__card-title {
        font-size: 1.6em;
    }
    .page-cockfighting-stars-legends__event-card .page-cockfighting-stars-legends__card-text {
        font-size: 1em;
    }
}