/* style/cockfighting-forum-hot-topics.css */

/* General Page Styling */
.page-cockfighting-forum-hot-topics {
    font-family: 'Arial', sans-serif;
    color: #333333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

/* Hero Section */
.page-cockfighting-forum-hot-topics__hero-section {
    background: linear-gradient(135deg, #FFD700 0%, #8B0000 100%);
    color: #FFFFFF;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.page-cockfighting-forum-hot-topics__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.2) 0%, rgba(139, 0, 0, 0.2) 100%);
    opacity: 0.3;
    animation: page-cockfighting-forum-hot-topics__hero-glow 10s infinite alternate;
}

@keyframes page-cockfighting-forum-hot-topics__hero-glow {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.2); opacity: 0.5; }
}

.page-cockfighting-forum-hot-topics__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.page-cockfighting-forum-hot-topics__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* Buttons */
.page-cockfighting-forum-hot-topics__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;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border: none;
}

.page-cockfighting-forum-hot-topics__btn--primary {
    background-color: #FFD700;
    color: #8B0000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-cockfighting-forum-hot-topics__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-cockfighting-forum-hot-topics__btn--secondary {
    background-color: #8B0000;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

.page-cockfighting-forum-hot-topics__btn--secondary:hover {
    background-color: #6a0000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.6);
}

.page-cockfighting-forum-hot-topics__btn--inverted {
    background-color: #FFFFFF;
    color: #8B0000;
    border: 2px solid #8B0000;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

.page-cockfighting-forum-hot-topics__btn--inverted:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.6);
}

/* Content Section */
.page-cockfighting-forum-hot-topics__content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-cockfighting-forum-hot-topics__intro-text {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #555555;
}

.page-cockfighting-forum-hot-topics__topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.page-cockfighting-forum-hot-topics__topic-card {
    background-color: #fdfdfd;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}

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

.page-cockfighting-forum-hot-topics__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-cockfighting-forum-hot-topics__topic-card h2 {
    font-size: 1.6em;
    color: #8B0000;
    padding: 20px 25px 10px;
    margin: 0;
    min-height: 80px;
}

.page-cockfighting-forum-hot-topics__card-description {
    font-size: 0.95em;
    color: #555555;
    padding: 0 25px 20px;
    flex-grow: 1;
}

.page-cockfighting-forum-hot-topics__topic-card .page-cockfighting-forum-hot-topics__btn {
    margin: 0 25px 25px;
    text-align: center;
}

.page-cockfighting-forum-hot-topics__section-heading {
    font-size: 2.5em;
    color: #8B0000;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 30px;
    font-weight: bold;
    position: relative;
}

.page-cockfighting-forum-hot-topics__section-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-cockfighting-forum-hot-topics__text-block {
    font-size: 1.1em;
    margin-bottom: 25px;
    text-align: justify;
    color: #444444;
}

.page-cockfighting-forum-hot-topics__full-width-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    margin: 40px 0;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-cockfighting-forum-hot-topics__feature-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.page-cockfighting-forum-hot-topics__feature-list li {
    background-color: #fffaf0;
    border-left: 5px solid #FFD700;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.05em;
    color: #333333;
    transition: transform 0.2s ease;
}

.page-cockfighting-forum-hot-topics__feature-list li:hover {
    transform: translateX(5px);
}

.page-cockfighting-forum-hot-topics__feature-list strong {
    color: #8B0000;
}

.page-cockfighting-forum-hot-topics__cta-group {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* FAQ Section */
.page-cockfighting-forum-hot-topics__faq-accordion {
    margin-top: 40px;
    margin-bottom: 60px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.page-cockfighting-forum-hot-topics__faq-item {
    border-bottom: 1px solid #eee;
}

.page-cockfighting-forum-hot-topics__faq-item:last-child {
    border-bottom: none;
}

.page-cockfighting-forum-hot-topics__faq-question {
    background-color: #fdfdfd;
    color: #8B0000;
    padding: 20px 25px;
    margin: 0;
    cursor: pointer;
    font-size: 1.2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-cockfighting-forum-hot-topics__faq-question:hover {
    background-color: #fff5e0;
}

.page-cockfighting-forum-hot-topics__faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    color: #FFD700;
}

.page-cockfighting-forum-hot-topics__faq-question.active::after {
    content: '-';
}

.page-cockfighting-forum-hot-topics__faq-answer {
    padding: 0 25px;
    background-color: #ffffff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-cockfighting-forum-hot-topics__faq-answer p {
    padding-bottom: 20px;
    margin: 0;
    color: #555555;
}

.page-cockfighting-forum-hot-topics__conclusion-text {
    font-size: 1.15em;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    color: #333333;
    font-weight: 500;
}

.page-cockfighting-forum-hot-topics__final-cta {
    text-align: center;
    margin-bottom: 60px;
}

/* Promotion Banner */
.page-cockfighting-forum-hot-topics__promotion-banner {
    background: linear-gradient(90deg, #8B0000, #b30000);
    padding: 50px 0;
    color: #FFFFFF;
    text-align: center;
    margin-top: 60px;
}

.page-cockfighting-forum-hot-topics__promotion-banner .page-cockfighting-forum-hot-topics__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.page-cockfighting-forum-hot-topics__banner-content {
    text-align: center;
}

.page-cockfighting-forum-hot-topics__banner-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #FFD700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-forum-hot-topics__banner-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-cockfighting-forum-hot-topics__banner-image {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    display: none; /* Hidden by default, shown on larger screens */
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-cockfighting-forum-hot-topics__promotion-banner .page-cockfighting-forum-hot-topics__container {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
    .page-cockfighting-forum-hot-topics__banner-content {
        flex: 1;
        text-align: left;
        padding-right: 30px;
    }
    .page-cockfighting-forum-hot-topics__banner-image {
        display: block;
    }
}

@media (max-width: 1024px) {
    .page-cockfighting-forum-hot-topics__hero-title {
        font-size: 3em;
    }
    .page-cockfighting-forum-hot-topics__section-heading {
        font-size: 2em;
    }
    .page-cockfighting-forum-hot-topics__full-width-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .page-cockfighting-forum-hot-topics__hero-title {
        font-size: 2.5em;
    }
    .page-cockfighting-forum-hot-topics__hero-subtitle {
        font-size: 1.2em;
    }
    .page-cockfighting-forum-hot-topics__topic-grid {
        grid-template-columns: 1fr;
    }
    .page-cockfighting-forum-hot-topics__full-width-image {
        height: 250px;
    }
    .page-cockfighting-forum-hot-topics__feature-list {
        grid-template-columns: 1fr;
    }
    .page-cockfighting-forum-hot-topics__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-cockfighting-forum-hot-topics__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-cockfighting-forum-hot-topics__topic-card .page-cockfighting-forum-hot-topics__btn {
        width: auto;
        margin: 0 25px 25px;
    }
    .page-cockfighting-forum-hot-topics__banner-title {
        font-size: 2em;
    }
    .page-cockfighting-forum-hot-topics__banner-description {
        font-size: 1.1em;
    }
    .page-cockfighting-forum-hot-topics__promotion-banner .page-cockfighting-forum-hot-topics__container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .page-cockfighting-forum-hot-topics__hero-title {
        font-size: 2em;
    }
    .page-cockfighting-forum-hot-topics__hero-subtitle {
        font-size: 1em;
    }
    .page-cockfighting-forum-hot-topics__hero-section {
        padding: 60px 0;
    }
    .page-cockfighting-forum-hot-topics__topic-card h2 {
        font-size: 1.4em;
    }
    .page-cockfighting-forum-hot-topics__section-heading {
        font-size: 1.8em;
    }
    .page-cockfighting-forum-hot-topics__full-width-image {
        height: 200px;
    }
    .page-cockfighting-forum-hot-topics__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-cockfighting-forum-hot-topics__faq-answer p {
        padding-bottom: 15px;
    }
    .page-cockfighting-forum-hot-topics__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-cockfighting-forum-hot-topics__banner-title {
        font-size: 1.8em;
    }
    .page-cockfighting-forum-hot-topics__banner-description {
        font-size: 1em;
    }
}