/* style/industry-news-online-entertainment-tech-trends.css */

:root {
    --page-industry-news-online-entertainment-tech-trends-primary-bg: #1A202C;
    --page-industry-news-online-entertainment-tech-trends-secondary-accent: #FFD700;
    --page-industry-news-online-entertainment-tech-trends-text-light: #F7FAFC;
    --page-industry-news-online-entertainment-tech-trends-text-dark: #1A202C;
    --page-industry-news-online-entertainment-tech-trends-border-color: #3C4257;
    --page-industry-news-online-entertainment-tech-trends-card-bg: #2D3748;
    --page-industry-news-online-entertainment-tech-trends-hover-dark: #b39700;
}

.page-industry-news-online-entertainment-tech-trends {
    font-family: 'Arial', sans-serif;
    color: var(--page-industry-news-online-entertainment-tech-trends-text-light);
    background-color: var(--page-industry-news-online-entertainment-tech-trends-primary-bg);
    line-height: 1.6;
}

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

.page-industry-news-online-entertainment-tech-trends__hero {
    background: linear-gradient(135deg, var(--page-industry-news-online-entertainment-tech-trends-primary-bg) 0%, #0a0e14 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--page-industry-news-online-entertainment-tech-trends-border-color);
}

.page-industry-news-online-entertainment-tech-trends__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    animation: page-industry-news-online-entertainment-tech-trends-rotate 20s linear infinite;
    z-index: 0;
}

@keyframes page-industry-news-online-entertainment-tech-trends-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-industry-news-online-entertainment-tech-trends__hero .page-industry-news-online-entertainment-tech-trends__container {
    position: relative;
    z-index: 1;
}

.page-industry-news-online-entertainment-tech-trends__title {
    font-size: 3.5em;
    color: var(--page-industry-news-online-entertainment-tech-trends-secondary-accent);
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-industry-news-online-entertainment-tech-trends__subtitle {
    font-size: 1.3em;
    color: var(--page-industry-news-online-entertainment-tech-trends-text-light);
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-industry-news-online-entertainment-tech-trends__btn-primary,
.page-industry-news-online-entertainment-tech-trends__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin: 10px;
    cursor: pointer;
}

.page-industry-news-online-entertainment-tech-trends__btn-primary {
    background-color: var(--page-industry-news-online-entertainment-tech-trends-secondary-accent);
    color: var(--page-industry-news-online-entertainment-tech-trends-text-dark);
    border: 2px solid var(--page-industry-news-online-entertainment-tech-trends-secondary-accent);
}

.page-industry-news-online-entertainment-tech-trends__btn-primary:hover {
    background-color: var(--page-industry-news-online-entertainment-tech-trends-hover-dark);
    border-color: var(--page-industry-news-online-entertainment-tech-trends-hover-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-industry-news-online-entertainment-tech-trends__btn-secondary {
    background-color: transparent;
    color: var(--page-industry-news-online-entertainment-tech-trends-secondary-accent);
    border: 2px solid var(--page-industry-news-online-entertainment-tech-trends-secondary-accent);
}

.page-industry-news-online-entertainment-tech-trends__btn-secondary:hover {
    background-color: var(--page-industry-news-online-entertainment-tech-trends-secondary-accent);
    color: var(--page-industry-news-online-entertainment-tech-trends-text-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-industry-news-online-entertainment-tech-trends__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--page-industry-news-online-entertainment-tech-trends-border-color);
}

.page-industry-news-online-entertainment-tech-trends__section:last-of-type {
    border-bottom: none;
}

.page-industry-news-online-entertainment-tech-trends__section-title {
    font-size: 2.5em;
    color: var(--page-industry-news-online-entertainment-tech-trends-secondary-accent);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-industry-news-online-entertainment-tech-trends__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--page-industry-news-online-entertainment-tech-trends-secondary-accent);
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.page-industry-news-online-entertainment-tech-trends__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-industry-news-online-entertainment-tech-trends__content-grid--reverse {
    grid-template-columns: 1fr 1fr;
}

.page-industry-news-online-entertainment-tech-trends__content-grid--reverse .page-industry-news-online-entertainment-tech-trends__text-content {
    order: 2;
}

.page-industry-news-online-entertainment-tech-trends__content-grid--reverse .page-industry-news-online-entertainment-tech-trends__image-wrapper {
    order: 1;
}

.page-industry-news-online-entertainment-tech-trends__text-content p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: var(--page-industry-news-online-entertainment-tech-trends-text-light);
}

.page-industry-news-online-entertainment-tech-trends__image-wrapper {
    text-align: center;
}

.page-industry-news-online-entertainment-tech-trends__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-industry-news-online-entertainment-tech-trends__image:hover {
    transform: scale(1.02);
}

.page-industry-news-online-entertainment-tech-trends__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-industry-news-online-entertainment-tech-trends__feature-card {
    background-color: var(--page-industry-news-online-entertainment-tech-trends-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--page-industry-news-online-entertainment-tech-trends-border-color);
}

.page-industry-news-online-entertainment-tech-trends__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.page-industry-news-online-entertainment-tech-trends__feature-title {
    font-size: 1.6em;
    color: var(--page-industry-news-online-entertainment-tech-trends-secondary-accent);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-industry-news-online-entertainment-tech-trends__feature-card p {
    font-size: 1em;
    color: var(--page-industry-news-online-entertainment-tech-trends-text-light);
}

.page-industry-news-online-entertainment-tech-trends__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-industry-news-online-entertainment-tech-trends__list li {
    background-color: var(--page-industry-news-online-entertainment-tech-trends-card-bg);
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid var(--page-industry-news-online-entertainment-tech-trends-secondary-accent);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.page-industry-news-online-entertainment-tech-trends__list li:last-child {
    margin-bottom: 0;
}

.page-industry-news-online-entertainment-tech-trends__list li .page-industry-news-online-entertainment-tech-trends__feature-title {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-industry-news-online-entertainment-tech-trends__list li p {
    font-size: 1.05em;
    color: var(--page-industry-news-online-entertainment-tech-trends-text-light);
}

.page-industry-news-online-entertainment-tech-trends__cta-block {
    background-color: var(--page-industry-news-online-entertainment-tech-trends-card-bg);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--page-industry-news-online-entertainment-tech-trends-secondary-accent);
}

.page-industry-news-online-entertainment-tech-trends__cta-block p {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: var(--page-industry-news-online-entertainment-tech-trends-text-light);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-news-online-entertainment-tech-trends__title {
        font-size: 2.8em;
    }

    .page-industry-news-online-entertainment-tech-trends__subtitle {
        font-size: 1.1em;
    }

    .page-industry-news-online-entertainment-tech-trends__section-title {
        font-size: 2em;
    }

    .page-industry-news-online-entertainment-tech-trends__content-grid {
        grid-template-columns: 1fr;
    }

    .page-industry-news-online-entertainment-tech-trends__content-grid--reverse .page-industry-news-online-entertainment-tech-trends__text-content,
    .page-industry-news-online-entertainment-tech-trends__content-grid--reverse .page-industry-news-online-entertainment-tech-trends__image-wrapper {
        order: unset;
    }

    .page-industry-news-online-entertainment-tech-trends__feature-grid {
        grid-template-columns: 1fr;
    }

    .page-industry-news-online-entertainment-tech-trends__cta-block {
        padding: 40px 20px;
    }

    .page-industry-news-online-entertainment-tech-trends__cta-block p {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .page-industry-news-online-entertainment-tech-trends__hero {
        padding: 80px 0;
    }

    .page-industry-news-online-entertainment-tech-trends__title {
        font-size: 2.2em;
    }

    .page-industry-news-online-entertainment-tech-trends__subtitle {
        font-size: 1em;
    }

    .page-industry-news-online-entertainment-tech-trends__btn-primary,
    .page-industry-news-online-entertainment-tech-trends__btn-secondary {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-industry-news-online-entertainment-tech-trends__section-title {
        font-size: 1.8em;
    }

    .page-industry-news-online-entertainment-tech-trends__feature-title {
        font-size: 1.4em;
    }

    .page-industry-news-online-entertainment-tech-trends__list li {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-industry-news-online-entertainment-tech-trends__title {
        font-size: 1.8em;
    }

    .page-industry-news-online-entertainment-tech-trends__subtitle {
        font-size: 0.9em;
    }

    .page-industry-news-online-entertainment-tech-trends__section {
        padding: 40px 0;
    }

    .page-industry-news-online-entertainment-tech-trends__section-title {
        font-size: 1.5em;
        margin-bottom: 30px;
    }

    .page-industry-news-online-entertainment-tech-trends__text-content p {
        font-size: 0.95em;
    }

    .page-industry-news-online-entertainment-tech-trends__cta-block p {
        font-size: 1em;
    }

    .page-industry-news-online-entertainment-tech-trends__btn-primary,
    .page-industry-news-online-entertainment-tech-trends__btn-secondary {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }
}