/* style/trending-topics.css */

/* Base styles for the page content */
.page-trending-topics {
    font-family: Arial, sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    line-height: 1.6;
    background-color: #0d0d1a; /* Very dark background */
}

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

.page-trending-topics__section-title {
    font-size: 2.5em;
    color: #FFCC00; /* Accent color for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-trending-topics__section-title .highlight {
    color: #f0f0f0;
}

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

.page-trending-topics__section-description {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 50px;
    color: #cccccc;
}

.page-trending-topics h2, .page-trending-topics h3 {
    color: #FFCC00;
}

.page-trending-topics p {
    color: #cccccc;
    margin-bottom: 1em;
}

.page-trending-topics .btn {
    display: inline-block;
    background-color: #FFCC00; /* Accent color for buttons */
    color: #003366; /* Dark text for accent button */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-trending-topics .btn:hover {
    background-color: #e6b800; /* Slightly darker accent on hover */
    color: #001a33;
}

.page-trending-topics .btn--secondary {
    background-color: #003366; /* Primary color for secondary button */
    color: #FFCC00; /* Accent color text for primary button */
    border: 1px solid #FFCC00;
}

.page-trending-topics .btn--secondary:hover {
    background-color: #004080; /* Slightly lighter primary on hover */
    color: #FFCC00;
}

/* Hero Section */
.page-trending-topics__hero {
    background: linear-gradient(135deg, #003366, #001a33);
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    min-height: 450px;
}

.page-trending-topics__hero-content {
    max-width: 600px;
    text-align: center;
    color: #f0f0f0;
    padding: 0 20px;
}

.page-trending-topics__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #f0f0f0;
    line-height: 1.2;
}

.page-trending-topics__hero-title .highlight {
    color: #FFCC00;
}

.page-trending-topics__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #cccccc;
}

.page-trending-topics__hero-image-wrapper {
    flex-shrink: 0;
    max-width: 500px;
    text-align: center;
}

.page-trending-topics__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Introduction Section */
.page-trending-topics__introduction {
    padding: 80px 0;
    background-color: #1a1a2e;
    text-align: center;
}

.page-trending-topics__introduction p {
    max-width: 900px;
    margin: 0 auto 20px auto;
    font-size: 1.1em;
}

.page-trending-topics__introduction .highlight {
    color: #FFCC00;
    font-weight: bold;
}

/* Content Grid Section */
.page-trending-topics__content-grid {
    padding: 80px 0;
    background-color: #0d0d1a;
}

.page-trending-topics__content-grid .page-trending-topics__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.page-trending-topics__grid-item {
    background-color: #1a1a2e;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease;
}

.page-trending-topics__grid-item:hover {
    transform: translateY(-10px);
}

.page-trending-topics__grid-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-trending-topics__grid-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #FFCC00;
}

.page-trending-topics__grid-item p {
    font-size: 1em;
    color: #cccccc;
}

.page-trending-topics__read-more {
    display: inline-block;
    margin-top: 20px;
    color: #FFCC00;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-trending-topics__read-more:hover {
    color: #f0f0f0;
    text-decoration: underline;
}

/* CTA Banner */
.page-trending-topics__cta-banner {
    background: linear-gradient(90deg, #003366, #FFCC00);
    padding: 60px 0;
    text-align: center;
    margin: 60px 0;
}

.page-trending-topics__cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-trending-topics__cta-title {
    font-size: 2.8em;
    color: #f0f0f0;
    margin-bottom: 20px;
}

.page-trending-topics__cta-title .highlight {
    color: #001a33;
}

.page-trending-topics__cta-text {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 40px;
}

.page-trending-topics__cta-button {
    margin: 0 10px;
}

/* Related Articles Section */
.page-trending-topics__related-articles {
    padding: 80px 0;
    background-color: #1a1a2e;
}

.page-trending-topics__article-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-trending-topics__article-item {
    background-color: #0d0d1a;
    border-left: 5px solid #FFCC00;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-trending-topics__article-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-trending-topics__article-title a {
    color: #FFCC00;
    text-decoration: none;
}

.page-trending-topics__article-title a:hover {
    text-decoration: underline;
}

.page-trending-topics__article-description {
    color: #cccccc;
    font-size: 0.95em;
    margin-bottom: 15px;
}

/* Responsible Gambling Section */
.page-trending-topics__responsible-gambling {
    padding: 80px 0;
    background-color: #003366;
    text-align: center;
}

.page-trending-topics__responsible-gambling .page-trending-topics__section-title {
    color: #f0f0f0;
}

.page-trending-topics__responsible-gambling .page-trending-topics__section-title::after {
    background-color: #f0f0f0;
}

.page-trending-topics__responsible-gambling p {
    max-width: 900px;
    margin: 0 auto 20px auto;
    font-size: 1.1em;
    color: #e0e0e0;
}

.page-trending-topics__responsible-gambling .highlight {
    color: #FFCC00;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-trending-topics__hero {
        padding: 60px 0;
        flex-direction: column;
    }

    .page-trending-topics__hero-title {
        font-size: 2.5em;
    }

    .page-trending-topics__hero-subtitle {
        font-size: 1.1em;
    }

    .page-trending-topics__section-title {
        font-size: 2em;
    }

    .page-trending-topics__grid-item {
        padding: 20px;
    }

    .page-trending-topics__grid-title {
        font-size: 1.5em;
    }

    .page-trending-topics__cta-title {
        font-size: 2em;
    }

    .page-trending-topics__cta-text {
        font-size: 1em;
    }

    .page-trending-topics__cta-button {
        margin: 10px 0;
        width: 80%;
    }

    .page-trending-topics__article-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-trending-topics__hero-title {
        font-size: 2em;
    }

    .page-trending-topics__hero-subtitle {
        font-size: 1em;
    }

    .page-trending-topics__section-title {
        font-size: 1.8em;
    }

    .page-trending-topics__cta-title {
        font-size: 1.8em;
    }

    .page-trending-topics .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}