.reading-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 9999;
    pointer-events: none;
}

.reading-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff30a1, var(--color-accent));
    box-shadow: 0 0 15px var(--color-accent);
    transition: width 0.1s ease-out;
}

.adv-hero {
    position: relative;
    z-index: 1;
    padding: 180px 0 200px;
    text-align: center;
    background: radial-gradient(ellipse at top, rgba(20, 21, 28, 0.8) 0%, #050508 100%);
    overflow: hidden;
}

    .adv-hero::before {
        content: '';
        position: absolute;
        top: -20%;
        left: 50%;
        transform: translateX(-50%);
        width: 80vw;
        height: 600px;
        background: radial-gradient(circle, rgba(200, 24, 128, 0.15) 0%, transparent 60%);
        filter: blur(80px);
        pointer-events: none;
        z-index: 0;
    }

.adv-back-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 10;
    opacity: 0;
    animation: heroTextReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

    .adv-back-pill:hover {
        background: rgba(200, 24, 128, 0.2);
        border-color: rgba(200, 24, 128, 0.5);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(200, 24, 128, 0.2);
    }

    .adv-back-pill svg {
        transition: transform 0.4s ease;
    }

    .adv-back-pill:hover svg {
        transform: translateX(-4px);
    }

.adv-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    text-shadow: 0 10px 40px rgba(0,0,0,0.5);
    opacity: 0;
    animation: heroTextReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
}

@keyframes heroTextReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.adv-image-container {
    max-width: 1200px;
    margin: -100px auto 80px;
    position: relative;
    z-index: 20;
    padding: 0 20px;
    opacity: 0;
    animation: heroImageReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.4s;
}

@keyframes heroImageReveal {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.adv-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 24px;
    overflow: hidden !important;
    background: #000;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
    z-index: 10;
}

    .adv-image-container::before,
    .adv-image-container::after,
    .adv-image-wrapper::before,
    .adv-image-wrapper::after {
        display: none !important;
        content: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }

.adv-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.8s ease;
    z-index: 1;
    mix-blend-mode: normal !important;
    filter: none !important;
}

.adv-image-wrapper:hover .adv-hero-img {
    transform: scale(1.05);
}

.adv-body-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 100px;
    position: relative;
}

.pro-article-content {
    font-size: 1.2rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.75);
}

    .pro-article-content p {
        margin-bottom: 2.2rem;
        letter-spacing: 0.01em;
    }

    .pro-article-content h2,
    .pro-article-content h3,
    .pro-article-content h4 {
        color: #fff;
        line-height: 1.3;
        font-weight: 800;
        margin-top: 4rem;
        margin-bottom: 1.5rem;
        letter-spacing: -0.02em;
    }

    .pro-article-content h2 {
        font-size: 2.8rem;
        letter-spacing: -0.03em;
    }

    .pro-article-content h3 {
        font-size: 2.2rem;
        color: #fff;
    }

    .pro-article-content h4 {
        font-size: 1.6rem;
        color: var(--color-accent);
    }

    .pro-article-content strong,
    .pro-article-content b {
        color: #fff;
        font-weight: 700;
    }

    .pro-article-content a {
        color: #fff;
        text-decoration: none;
        border-bottom: 1px solid var(--color-accent);
        box-shadow: inset 0 -1px 0 var(--color-accent);
        transition: all 0.3s ease;
    }

        .pro-article-content a:hover {
            background-color: var(--color-accent);
            color: #fff;
        }

    .pro-article-content blockquote {
        position: relative;
        margin: 4rem 0;
        padding: 2.5rem 3rem;
        font-size: 1.6rem;
        line-height: 1.5;
        font-style: italic;
        color: #fff;
        background: linear-gradient(90deg, rgba(200, 24, 128, 0.08) 0%, transparent 100%);
        border-right: 1px solid rgba(255,255,255,0.05);
        border-radius: 0 24px 24px 0;
    }

        .pro-article-content blockquote::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 4px;
            background: var(--color-accent);
            border-radius: 4px;
        }

    .pro-article-content ul,
    .pro-article-content ol {
        margin-bottom: 2.2rem;
        padding-left: 1.5rem;
    }

    .pro-article-content li {
        margin-bottom: 1rem;
        position: relative;
    }

    .pro-article-content ul li::marker {
        color: var(--color-accent);
    }

    .pro-article-content img {
        max-width: 100%;
        height: auto;
        border-radius: 16px;
        margin: 3rem 0;
        box-shadow: 0 20px 40px rgba(0,0,0,0.5);
        border: 1px solid rgba(255,255,255,0.05);
    }

.adv-cta-conversion {
    margin-top: 80px;
    background: linear-gradient(135deg, rgba(20, 21, 28, 0.8) 0%, rgba(10, 11, 15, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 24, 128, 0.4);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 30px 60px -10px rgba(200, 24, 128, 0.15);
    position: relative;
    overflow: hidden;
}

    .adv-cta-conversion::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at center, rgba(200, 24, 128, 0.15) 0%, transparent 50%);
        pointer-events: none;
        z-index: 0;
    }

.adv-cta-content {
    position: relative;
    z-index: 1;
}

.adv-cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.adv-cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-article-cta {
    padding: 16px 40px;
    font-size: 1.05rem;
    border-radius: 99px;
}

.adv-hero-container {
    position: relative;
    z-index: 10;
}

.adv-section-block,
.adv-cta-conversion {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

    .adv-section-block.is-hidden,
    .adv-cta-conversion.is-hidden {
        opacity: 0;
        transform: translateY(30px);
    }

    .adv-section-block.is-visible,
    .adv-cta-conversion.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

@media (max-width: 768px) {
    .adv-hero {
        padding-top: 165px;
    }

    .adv-back-pill {
        font-size: 0.8rem;
    }

    .page-hero-copy > .page-hero-title {
        margin-top: 20px !important;
    }

    .pro-article-content h2 {
        font-size: 2.2rem;
    }
}
