/* style/news-latest-industry-trends.css */
:root {
    --primary-color: #1A202C;
    --secondary-color: #FFD700;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #0a0a0a;
    --border-color: #e0e0e0;
}

.page-news-latest-industry-trends {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Body background is dark, so text is light */
    background-color: var(--bg-dark);
    padding-top: var(--header-offset, 120px);
}

.page-news-latest-industry-trends__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-news-latest-industry-trends__hero-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-news-latest-industry-trends__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--secondary-color);
    line-height: 1.2;
}

.page-news-latest-industry-trends__intro-text {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-news-latest-industry-trends__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-news-latest-industry-trends__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-news-latest-industry-trends__cta-button--primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.page-news-latest-industry-trends__cta-button--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-news-latest-industry-trends__cta-button--secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-news-latest-industry-trends__cta-button--secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-news-latest-industry-trends__cta-button--inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    margin-top: 15px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.95em;
    transition: all 0.3s ease;
}

.page-news-latest-industry-trends__cta-button--inline:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-1px);
}

.page-news-latest-industry-trends__content-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-news-latest-industry-trends__dark-section {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-news-latest-industry-trends__dark-section .page-news-latest-industry-trends__section-title,
.page-news-latest-industry-trends__dark-section .page-news-latest-industry-trends__subsection-title {
    color: var(--secondary-color);
}

.page-news-latest-industry-trends__section-title {
    font-size: 2.5em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-news-latest-industry-trends__subsection-title {
    font-size: 1.8em;
    color: var(--text-light);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-news-latest-industry-trends__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.85);
}

.page-news-latest-industry-trends__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.85);
}

.page-news-latest-industry-trends__list-item {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-news-latest-industry-trends__list-item strong {
    color: var(--secondary-color);
}

.page-news-latest-industry-trends__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.page-news-latest-industry-trends__game-types {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.page-news-latest-industry-trends__game-link {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-news-latest-industry-trends__game-link:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.page-news-latest-industry-trends__cta-group--bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-news-latest-industry-trends__main-title {
        font-size: 2.8em;
    }
    .page-news-latest-industry-trends__section-title {
        font-size: 2.2em;
    }
    .page-news-latest-industry-trends__subsection-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-news-latest-industry-trends {
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile padding is applied */
    }
    .page-news-latest-industry-trends__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    .page-news-latest-industry-trends__hero-section {
        padding: 60px 0;
    }
    .page-news-latest-industry-trends__main-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }
    .page-news-latest-industry-trends__intro-text {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-news-latest-industry-trends__cta-group {
        flex-direction: column;
        gap: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px;
    }
    .page-news-latest-industry-trends__cta-button {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        font-size: 1em;
        padding: 12px 20px;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-news-latest-industry-trends__cta-button--inline {
        width: auto !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        font-size: 0.9em;
        padding: 8px 15px;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-news-latest-industry-trends__content-section {
        padding: 40px 0;
    }
    .page-news-latest-industry-trends__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-news-latest-industry-trends__subsection-title {
        font-size: 1.4em;
        margin-top: 25px;
        margin-bottom: 10px;
    }
    .page-news-latest-industry-trends__paragraph,
    .page-news-latest-industry-trends__list-item {
        font-size: 0.95em;
    }
    .page-news-latest-industry-trends__image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin: 20px auto;
    }
    .page-news-latest-industry-trends__game-types {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    .page-news-latest-industry-trends__game-link {
        width: 100%;
        text-align: center;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 480px) {
    .page-news-latest-industry-trends__main-title {
        font-size: 1.8em;
    }
    .page-news-latest-industry-trends__section-title {
        font-size: 1.6em;
    }
    .page-news-latest-industry-trends__subsection-title {
        font-size: 1.2em;
    }
    .page-news-latest-industry-trends__hero-section {
        padding: 40px 0;
    }
}