/* style/trend-community-hot-topics.css */

/* Base styles for the page content */
.page-trend-community-hot-topics {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for main text */
    line-height: 1.6;
    background-color: #1A1A1A; /* Dark background */
}

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

/* Hero Section */
.page-trend-community-hot-topics__hero-section {
    background: linear-gradient(135deg, #FF0055, #00FFEE);
    padding: 100px 0;
    text-align: center;
    color: #1A1A1A; /* Dark text for bright background */
}

.page-trend-community-hot-topics__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 900;
    color: #1A1A1A; /* Ensure contrast */
}

.page-trend-community-hot-topics__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #333333; /* Slightly darker for readability */
}

/* Section common styles */
.page-trend-community-hot-topics__content-section {
    padding: 60px 0;
    background-color: #1A1A1A;
}

.page-trend-community-hot-topics__section--bg-dark {
    background-color: #222222;
}

.page-trend-community-hot-topics__section-title {
    font-size: 2.8em;
    color: #FF0055; /* Primary color for main titles */
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: 800;
}

.page-trend-community-hot-topics__sub-title {
    font-size: 2em;
    color: #00FFEE; /* Secondary color for sub-titles */
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-trend-community-hot-topics__article-content p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-trend-community-hot-topics__article-content ul,
.page-trend-community-hot-topics__article-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
    color: #E0E0E0;
}

.page-trend-community-hot-topics__article-content li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-trend-community-hot-topics__keyword {
    color: #00FFEE;
    font-weight: bold;
}

.page-trend-community-hot-topics__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* CTA Buttons */
.page-trend-community-hot-topics__cta-button {
    display: inline-block;
    background-color: #FF0055; /* Primary CTA color */
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.page-trend-community-hot-topics__cta-button:hover {
    background-color: #E6004D; /* Darker on hover */
    transform: translateY(-3px);
}

.page-trend-community-hot-topics__cta-button--secondary {
    background-color: #00FFEE; /* Secondary CTA color */
    color: #1A1A1A; /* Dark text for secondary button */
}

.page-trend-community-hot-topics__cta-button--secondary:hover {
    background-color: #00DDEE; /* Darker on hover */
    color: #000000;
}

.page-trend-community-hot-topics__cta-button--large {
    padding: 20px 40px;
    font-size: 1.5em;
}

.page-trend-community-hot-topics__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Text Links */
.page-trend-community-hot-topics__text-link {
    color: #00FFEE; /* Secondary color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-trend-community-hot-topics__text-link:hover {
    color: #FF0055; /* Primary color on hover */
    text-decoration: underline;
}

/* Call to Action Box */
.page-trend-community-hot-topics__call-to-action {
    padding: 80px 0;
    text-align: center;
}

.page-trend-community-hot-topics__cta-box {
    background-color: #1A1A1A;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    border: 2px solid #FF0055;
}

.page-trend-community-hot-topics__cta-title {
    font-size: 3em;
    color: #FF0055;
    margin-bottom: 20px;
    font-weight: 900;
}

.page-trend-community-hot-topics__cta-description {
    font-size: 1.3em;
    color: #E0E0E0;
    margin-bottom: 40px;
}

/* Related Topics */
.page-trend-community-hot-topics__related-topics {
    padding: 60px 0;
    text-align: center;
}

.page-trend-community-hot-topics__topic-list {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.page-trend-community-hot-topics__topic-list li a {
    display: block;
    padding: 15px 25px;
    background-color: #222222;
    border: 1px solid #00FFEE;
    border-radius: 8px;
    color: #E0E0E0;
    text-decoration: none;
    font-size: 1.1em;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-trend-community-hot-topics__topic-list li a:hover {
    background-color: #00FFEE;
    border-color: #FF0055;
    color: #1A1A1A;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-trend-community-hot-topics__hero-title {
        font-size: 2.8em;
    }
    .page-trend-community-hot-topics__hero-subtitle {
        font-size: 1.2em;
    }
    .page-trend-community-hot-topics__section-title {
        font-size: 2.2em;
    }
    .page-trend-community-hot-topics__sub-title {
        font-size: 1.7em;
    }
    .page-trend-community-hot-topics__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-trend-community-hot-topics__hero-section {
        padding: 80px 0;
    }
    .page-trend-community-hot-topics__hero-title {
        font-size: 2.2em;
    }
    .page-trend-community-hot-topics__hero-subtitle {
        font-size: 1em;
    }
    .page-trend-community-hot-topics__section-title {
        font-size: 1.8em;
    }
    .page-trend-community-hot-topics__sub-title {
        font-size: 1.4em;
    }
    .page-trend-community-hot-topics__article-content p,
    .page-trend-community-hot-topics__article-content li {
        font-size: 1em;
    }
    .page-trend-community-hot-topics__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-trend-community-hot-topics__cta-button--large {
        padding: 15px 30px;
        font-size: 1.2em;
    }
    .page-trend-community-hot-topics__button-group {
        flex-direction: column;
        align-items: center;
    }
    .page-trend-community-hot-topics__cta-box {
        padding: 30px;
    }
    .page-trend-community-hot-topics__cta-title {
        font-size: 2em;
    }
    .page-trend-community-hot-topics__cta-description {
        font-size: 1.1em;
    }
    .page-trend-community-hot-topics__topic-list li a {
        padding: 12px 20px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-trend-community-hot-topics__hero-title {
        font-size: 1.8em;
    }
    .page-trend-community-hot-topics__section-title {
        font-size: 1.6em;
    }
    .page-trend-community-hot-topics__cta-title {
        font-size: 1.8em;
    }
}