/* style/blog-online-entertainment-trends.css */

/* Base styles for the page content, inherits from body's padding-top */
.page-blog-online-entertainment-trends {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #FFF6D6; /* Text Main */
    background: #0A0A0A; /* Background */
}

.page-blog-online-entertainment-trends__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-online-entertainment-trends__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 60px; /* Space below content */
    padding-top: 10px; /* Small top padding, body handles header offset */
    background: #0A0A0A; /* Ensure consistent background */
    overflow: hidden; /* Prevent overflow issues */
}

.page-blog-online-entertainment-trends__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin-bottom: 40px; /* Space between image and text */
}

.page-blog-online-entertainment-trends__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-online-entertainment-trends__hero-content {
    max-width: 800px;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 1; /* Ensure text is above any potential background elements */
}

.page-blog-online-entertainment-trends__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive H1 font size */
    font-weight: 700;
    line-height: 1.2;
    color: #F2C14E; /* Primary color for title */
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5); /* Subtle glow */
}

.page-blog-online-entertainment-trends__hero-description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: #FFF6D6; /* Text Main */
    margin-bottom: 30px;
}

/* Call to Action Button */
.page-blog-online-entertainment-trends__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-online-entertainment-trends__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
    color: #0A0A0A; /* Dark text for bright button */
    border: none;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-blog-online-entertainment-trends__btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-blog-online-entertainment-trends__btn-secondary {
    background: transparent;
    color: #F2C14E; /* Primary color for text */
    border: 2px solid #F2C14E; /* Primary color for border */
}

.page-blog-online-entertainment-trends__btn-secondary:hover {
    background: rgba(242, 193, 78, 0.1);
    color: #FFD36B;
    border-color: #FFD36B;
}

.page-blog-online-entertainment-trends__link-button {
    display: inline-block;
    margin-top: 20px;
}

/* Content Sections */
.page-blog-online-entertainment-trends__content-section {
    padding: 60px 0;
    background: #0A0A0A; /* Background */
}

.page-blog-online-entertainment-trends__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #F2C14E; /* Primary color */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-blog-online-entertainment-trends__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD36B, transparent); /* Glow */
    border-radius: 5px;
}

.page-blog-online-entertainment-trends__sub-title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: #FFD36B; /* Auxiliary color */
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-blog-online-entertainment-trends__text-block {
    font-size: 1rem;
    color: #FFF6D6; /* Text Main */
    margin-bottom: 20px;
}

.page-blog-online-entertainment-trends__text-block strong {
    color: #F2C14E;
}

.page-blog-online-entertainment-trends__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid #3A2A12; /* Border */
}

.page-blog-online-entertainment-trends__button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

/* Final CTA */
.page-blog-online-entertainment-trends__final-cta {
    margin-top: 50px;
    font-size: 1.2rem;
    padding: 18px 40px;
}

/* FAQ Section */
.page-blog-online-entertainment-trends__faq-section {
    padding: 60px 0;
    background: #0A0A0A; /* Background */
}

.page-blog-online-entertainment-trends__faq-list {
    margin-top: 40px;
}

.page-blog-online-entertainment-trends__faq-item {
    background: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-blog-online-entertainment-trends__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #F2C14E; /* Primary color */
    cursor: pointer;
    background: #111111; /* Card BG */
    transition: background 0.3s ease;
}

.page-blog-online-entertainment-trends__faq-question:hover {
    background: rgba(242, 193, 78, 0.1);
}

.page-blog-online-entertainment-trends__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: #FFD36B; /* Auxiliary color */
    transition: transform 0.3s ease;
}

.page-blog-online-entertainment-trends__faq-item.active .page-blog-online-entertainment-trends__faq-toggle {
    transform: rotate(45deg); /* Plus to X/Minus visual */
}

.page-blog-online-entertainment-trends__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px; /* Adjust padding for collapsed state */
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #FFF6D6; /* Text Main */
    font-size: 0.95rem;
}

.page-blog-online-entertainment-trends__faq-item.active .page-blog-online-entertainment-trends__faq-answer {
    max-height: 1000px !important; /* Sufficiently large for content */
    padding: 15px 20px 20px; /* Expanded padding */
}

/* Copyright Section */
.page-blog-online-entertainment-trends__copyright-section {
    padding: 30px 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #FFF6D6; /* Text Main */
    background: #0A0A0A; /* Background */
    border-top: 1px solid #3A2A12; /* Border */
    margin-top: 40px;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-online-entertainment-trends__hero-content {
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .page-blog-online-entertainment-trends__hero-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-online-entertainment-trends__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .page-blog-online-entertainment-trends__hero-description {
        font-size: 1rem;
    }

    .page-blog-online-entertainment-trends__cta-button,
    .page-blog-online-entertainment-trends__btn-primary,
    .page-blog-online-entertainment-trends__btn-secondary,
    .page-blog-online-entertainment-trends a[class*="button"],
    .page-blog-online-entertainment-trends a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px; /* Ensure padding on buttons */
    }

    .page-blog-online-entertainment-trends__button-group {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px; /* Ensure padding on button group */
    }

    .page-blog-online-entertainment-trends__section-title {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }

    .page-blog-online-entertainment-trends__sub-title {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
    }

    .page-blog-online-entertainment-trends__content-section,
    .page-blog-online-entertainment-trends__faq-section {
        padding: 40px 0;
    }

    .page-blog-online-entertainment-trends__container {
        padding: 0 15px;
    }

    /* Images responsiveness */
    .page-blog-online-entertainment-trends img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-blog-online-entertainment-trends__section,
    .page-blog-online-entertainment-trends__card,
    .page-blog-online-entertainment-trends__container,
    .page-blog-online-entertainment-trends__hero-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Video section: body already handles --header-offset; this should only be small decorative padding */
    .page-blog-online-entertainment-trends__hero-section {
      padding-top: 10px !important; /* Small top padding for mobile hero */
    }

    /* FAQ Answer padding adjustment for mobile */
    .page-blog-online-entertainment-trends__faq-answer {
        padding: 0 15px;
    }
    .page-blog-online-entertainment-trends__faq-item.active .page-blog-online-entertainment-trends__faq-answer {
        padding: 15px 15px 20px;
    }
}