/* ========================================
   HERO ZENITH - CINEMATIC SECTION
   ======================================== */

.hero-zenith {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--black-void);
}

/* --- Background Layers --- */
.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
}

.bg-overlay {
    background: radial-gradient(ellipse at center,
            rgba(11, 11, 13, 0.4) 0%,
            rgba(11, 11, 13, 0.85) 70%,
            var(--black-void) 100%);
}

.bg-gradient {
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(0, 0, 0, 0.089) 50%,
            var(--black-void) 100%);
}

/* --- Corner Decorations --- */
.corner-decoration {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid var(--border-light);
    opacity: 0;
    z-index: 5;
}

.corner-decoration.top-left {
    top: 40px;
    left: 40px;
    border-right: none;
    border-bottom: none;
}

.corner-decoration.top-right {
    top: 40px;
    right: 40px;
    border-left: none;
    border-bottom: none;
}

.corner-decoration.bottom-left {
    bottom: 40px;
    left: 40px;
    border-right: none;
    border-top: none;
}

.corner-decoration.bottom-right {
    bottom: 40px;
    right: 40px;
    border-left: none;
    border-top: none;
}

/* --- Particles Container --- */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.particle.gold {
    background: var(--liquid-gold);
    box-shadow: 0 0 10px var(--liquid-gold), 0 0 20px rgba(255, 204, 0, 0.5);
}

.particle.orange {
    background: var(--molten-orange);
    box-shadow: 0 0 10px var(--molten-orange), 0 0 20px rgba(255, 106, 0, 0.5);
}

/* --- Content Wrapper --- */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    max-width: 1000px;
}

/* --- Badge --- */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    padding: 10px 24px;
    border-radius: 50px;
    color: var(--liquid-gold);
    font-family: var(--heading-font);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(-30px);
}

.hero-badge i {
    font-size: 1.2rem;
    animation: rotateIcon 8s linear infinite;
}

@keyframes rotateIcon {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* --- Title --- */
.hero-title {
    font-family: var(--heading-font);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 25px;
    font-weight: 800;
}

.title-line {
    opacity: 0;
    transform: translateY(50px);
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.text-gradient::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-gradient);
    transition: width 0.8s ease;
}

.text-gradient.animated::after {
    width: 100%;
}

/* --- Subtitle --- */
.hero-subtitle {
    font-family: var(--body-font);
    color: var(--text-secondary);
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 45px;
    letter-spacing: 1.5px;
    opacity: 0;
    transform: translateY(30px);
}

/* --- Actions --- */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
}



/* --- Scroll Indicator --- */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--ashen-silver);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
}

.mouse-icon {
    width: 28px;
    height: 45px;
    border: 2px solid var(--ashen-silver);
    border-radius: 20px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 10px;
    background: var(--molten-orange);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 25px;
        opacity: 0;
    }
}

/* --- Light Rays --- */
.light-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150vmax;
    height: 150vmax;
    background: conic-gradient(from 0deg,
            transparent 0deg,
            rgba(255, 106, 0, 0.03) 10deg,
            transparent 20deg,
            rgba(94, 23, 235, 0.03) 30deg,
            transparent 40deg,
            rgba(255, 204, 0, 0.03) 50deg,
            transparent 60deg);
    animation: rotateRays 30s linear infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes rotateRays {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .corner-decoration {
        width: 80px;
        height: 80px;
    }

    .corner-decoration.top-left,
    .corner-decoration.top-right {
        top: 20px;
    }

    .corner-decoration.bottom-left,
    .corner-decoration.bottom-right {
        bottom: 20px;
    }

    .corner-decoration.top-left,
    .corner-decoration.bottom-left {
        left: 20px;
    }

    .corner-decoration.top-right,
    .corner-decoration.bottom-right {
        right: 20px;
    }

    .hero-actions .btn {
        width: auto;
        min-width: unset;
        max-width: 280px;
        padding: 0.6em 1.5em;
        font-size: 15px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}



/* ============================================
   ARTICLE LAYOUT - ZERO PADDING, FULL STICKY
   ============================================ */

.article-layout-amsr {
    width: 100%;
    padding: 0;
    margin: 0;
}

.amsr-grid-container {
    display: grid;
    /* Main content gets breathing room, sidebar takes remaining space */
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 0;

    /* FULL WIDTH - no max-width constraint */
    width: 100%;
    margin: 0;

    /* ONLY left padding applied here */
    padding: 60px 0 60px 40px;

    align-items: start;
}

/* ============================================
   MOBILE SIDEBAR TRIGGER
   ============================================ */
.mobile-sidebar-trigger{
    display: none;
}
.btn-sidebar-toggle {
    width: 100%;
    padding: 14px 20px;
    background: var(--graphite);
    border: 1px solid var(--border-light);
    color: var(--liquid-gold);
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-sidebar-toggle:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--liquid-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

/* ============================================
   MAIN CONTENT AREA
   ============================================ */

.amsr-main-content {
    min-width: 0;
    padding-right: 40px;
    box-shadow: none;
   padding-bottom: 0;
}

/* Article Header */
.article-header-amsr {
    margin-bottom: 40px;
}

.meta-row {
    display: flex;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.cat-pill {
    background: rgba(255, 106, 0, 0.12);
    color: var(--molten-orange);
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.author-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.meta-sep {
    color: var(--border-light);
    opacity: 0.5;
}

.amsr-title {
    font-family: var(--heading-font);
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    color: var(--text-primary);
    line-height: 1.15;
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.highlight-text {
    display: block;
    color: var(--liquid-gold);
    font-style: italic;
    margin-top: 8px;
    font-weight: 600;
}

/* ============================================
   CSS ART HERO
   ============================================ */

.css-art-hero {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    overflow: hidden;
}

.mandala-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(212, 175, 55, 0.25);
}

.r1 {
    width: 90px;
    height: 90px;
    animation: spin 12s linear infinite;
}

.r2 {
    width: 140px;
    height: 140px;
    animation: spin-reverse 18s linear infinite;
    border-style: dotted;
    border-color: rgba(255, 106, 0, 0.2);
}

.r3 {
    width: 190px;
    height: 190px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.center-symbol {
    font-size: 3.5rem;
    color: var(--liquid-gold);
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}

/* ============================================
   ARTICLE BODY TEXT
   ============================================ */

.amsr-body-text {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--text-secondary);
}

.amsr-body-text p {
    margin-bottom: 24px;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 32px;
}

.amsr-body-text h2 {
    font-family: var(--heading-font);
    color: var(--text-primary);
    margin: 60px 0 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.8rem;
    font-weight: 700;
}

.amsr-body-text h2 i {
    color: var(--molten-orange);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Key Takeaways */
.key-takeaways {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--liquid-gold);
    padding: 28px 30px;
    margin: 35px 0;
    border-radius: 0 12px 12px 0;
}

.key-takeaways h4 {
    color: var(--liquid-gold);
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
}

.key-takeaways ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.key-takeaways li {
    margin-bottom: 12px;
    display: flex;
    gap: 8px;
    align-items: baseline;
}

.key-takeaways li:last-child {
    margin-bottom: 0;
}

/* Quote Block */
.quote-block {
    border-left: 4px solid var(--molten-orange);
    padding: 28px 35px;
    background: rgba(255, 106, 0, 0.06);
    margin: 35px 0;
    border-radius: 0 12px 12px 0;
    position: relative;
}

.quote-block i {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: var(--molten-orange);
    opacity: 0.3;
}

.quote-block p {
    margin: 0;
    font-style: italic;
    color: var(--text-primary);
    font-size: 1.25rem;
    line-height: 1.7;
    padding-left: 30px;
}

/* Timeline */
.ritual-timeline {
    margin: 35px 0;
    padding-left: 25px;
    border-left: 2px solid var(--border-light);
}

.t-item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 30px;
}

.t-item:last-child {
    margin-bottom: 0;
}

.t-dot {
    position: absolute;
    left: -31px;
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--molten-orange);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--molten-orange);
    border: 2px solid var(--graphite);
}

.t-day {
    color: var(--liquid-gold);
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.t-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Stat Grid */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 50px 0;
}

.stat-card {
    background: var(--graphite);
    border: 1px solid var(--border-light);
    padding: 28px 20px;
    text-align: center;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--liquid-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.stat-card i {
    font-size: 1.8rem;
    color: var(--ashen-silver);
    margin-bottom: 12px;
    display: block;
}

.s-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.s-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    font-weight: 600;
}
/* ============================================
   PROFESSIONAL FAQ SECTION (MINIMALIST)
   ============================================ */

.faq-section-pro {
    margin: 60px 0;
}

.faq-header-pro h2 {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-header-pro h2 i {
    color: var(--liquid-gold);
    font-size: 1.8rem;
}

.faq-header-pro p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.faq-list-pro {
    display: flex;
    flex-direction: column;
    gap: 0; /* No gap for seamless list look */
    border-top: 1px solid var(--border-light);
}

.faq-item-pro {
    border-bottom: 1px solid var(--border-light);
    transition: background-color 0.3s ease;
}

.faq-item-pro:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.faq-item-pro summary {
    padding: 24px 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.faq-item-pro summary::-webkit-details-marker {
    display: none;
}

.faq-item-pro[open] summary {
    color: var(--liquid-gold);
    padding-bottom: 12px;
}

.faq-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-icon i {
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-pro[open] .faq-icon {
    background: var(--liquid-gold);
}

.faq-item-pro[open] .faq-icon i {
    color: var(--graphite);
    transform: rotate(90deg);
}

.faq-a {
    padding-bottom: 24px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
    animation: fadeIn 0.4s ease-out;
}

.faq-a p {
    margin: 0;
    padding-right: 40px; /* Prevent text from hitting the icon area */
}

.faq-a strong {
    color: var(--text-primary);
    font-weight: 600;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   PREMIUM CONTRIBUTION SECTION
   ============================================ */

.contribution-section-amsr {
    position: relative;
}

.contribute-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contribute-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Ambient Glow Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
    animation: floatOrb 10s infinite alternate ease-in-out;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--liquid-gold);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: var(--molten-orange);
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 30px) scale(1.1); }
}

.contribute-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

/* Badge */
.contribute-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--liquid-gold);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.contribute-badge i {
    font-size: 0.9rem;
}

/* Typography */
.contribute-wrapper h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--text-primary);
    margin: 0 0 16px;
    line-height: 1.2;
}

.contribute-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contribute-desc strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--ashen-silver);
}

.trust-item i {
    color: var(--liquid-gold);
    font-size: 1rem;
}

.small-note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

/* ============================================
   SIDEBAR - Clean Professional Design
   ============================================ */

.amsr-sidebar {
    position: sticky;
    top: 6%;
    right: 0;
    height: 100vh;
    max-height: 100vh;
    width: 340px;
    border: none;
    border-left: 1px solid var(--border-light);
    border-radius: 0;

    /* Left padding only for internal spacing */
    padding: 40px 30px 40px 30px;

    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border-light) transparent;
    z-index: 10;
}

/* Custom Scrollbar for seamless look */
.amsr-sidebar::-webkit-scrollbar {
    width: 4px;
}

.amsr-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.amsr-sidebar::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 2px;
}

.sidebar-header-mobile {
    display: none;
}

.sidebar-widget {
    margin-bottom: 32px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    color: var(--text-primary);
    font-family: var(--heading-font);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.widget-title i {
    color: var(--molten-orange);
    font-size: 1.1rem;
}

/* ============================================
   AUTHOR SECTION - Minimal Design
   ============================================ */

.section-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    opacity: 0.6;
    margin-bottom: 12px;
}

.author-block {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-top: 1px solid var(--border-light);
}

.author-avatar-small {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--border-light);
}

.author-avatar-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-label-text {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.author-name-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.author-name-link:hover {
    color: var(--molten-orange);
}

/* ============================================
   PREMIUM SHARE SECTION (VERTICAL LAYOUT)
   ============================================ */

.share-engagement-pro {
    padding: 25px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Header Section */
.share-header {
    margin-bottom: 20px;
}

.share-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.share-divider {
    height: 1px;
    width: 40px;
    background: linear-gradient(90deg, transparent, var(--liquid-gold), transparent);
    margin: 0 auto;
    opacity: 0.5;
}

/* Icons Row */
.share-icons-row {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Icon Button Base */
.share-icon-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px; /* Soft square */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-size: 1.2rem;
}

/* Hover Effects - Brand Colors & Glow */
.share-icon-btn:hover {
    transform: translateY(-5px);
    color: white;
}

.share-icon-btn.whatsapp:hover {
    background: #25D366;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.25);
}

.share-icon-btn.twitter:hover {
    background: #000000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.share-icon-btn.facebook:hover {
    background: #1877F2;
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.25);
}

.share-icon-btn.copy-link:hover {
    background: var(--liquid-gold);
    color: var(--black-void);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.25);
}

/* Copy Tooltip */
.copy-tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background: var(--text-primary);
    color: var(--graphite);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    white-space: nowrap;
    pointer-events: none;
}

.copy-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -4px;
    border-width: 4px;
    border-style: solid;
    border-color: var(--text-primary) transparent transparent transparent;
}

/* Active State for Copy */
.share-icon-btn.copy-link.copied .copy-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
    bottom: 130%;
}


/* ============================================
   ARTICLES LIST - Left Border Style
   ============================================ */

.articles-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-item {
    position: relative;
    display: block;
    text-decoration: none;
    padding: 14px 0 14px 16px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.article-item:last-child {
    margin-bottom: 0;
}

.article-left-border {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--border-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.article-item:hover .article-left-border {
    background: var(--molten-orange);
    width: 4px;
}

.article-content-simple {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.article-cat {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--molten-orange);
    opacity: 0.9;
}

.article-heading {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.article-item:hover .article-heading {
    color: var(--liquid-gold);
}

.article-details {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.7;
}


/* ============================================
   POPUP OVERLAY
   ============================================ */

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.popup-content {
    position: relative;
    padding: 40px;
    border-radius: 24px;
    background: rgba(30, 30, 30, 0.95);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: scaleFade 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 420px;
    width: 100%;
}

@keyframes scaleFade {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-content>img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    opacity: 0.6;
    transition: all 0.3s ease;
    background: none;
    border: none;
    padding: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-btn:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.qr-fallback {
    display: none;
    color: white;
    margin-top: 15px;
}

.qr-fallback p {
    margin-bottom: 18px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.qr-fallback img {
    width: 260px !important;
    max-width: 100% !important;
    height: auto;
    border-radius: 12px;
    background: white;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

.unified-split-footer-gap {
    height: 90vh;
}
/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .amsr-grid-container {
        gap: 40px;
        padding: 50px 30px;
    }

    .amsr-sidebar {
        padding: 25px;
    }
}

@media (max-width: 992px) {
    .amsr-grid-container {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        /* Symmetric padding on mobile is fine */
    }

    .mobile-sidebar-trigger {
        display: block;
        position: sticky;
        top: 3rem;
        background: var(--deep-black);
        z-index: 999;
    }

    .amsr-main-content {
        padding-right: 0;
    }

    .amsr-sidebar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 340px;
        height: 100vh;
        z-index: 1000;
        background-color: var(--graphite);
        border-left: 1px solid var(--border-light);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .amsr-sidebar.active {
        right: 0;
    }

    .sidebar-header-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
        padding-bottom: 18px;
        border-bottom: 1px solid var(--border-light);
        color: var(--liquid-gold);
        font-weight: 700;
        font-size: 1.1rem;
    }

    #closeSidebarMobile {
        background: none;
        border: none;
        color: white;
        font-size: 1.3rem;
        cursor: pointer;
        padding: 8px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    #closeSidebarMobile:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .contribute-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .amsr-sidebar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        max-height: 100vh;
        border-left: 1px solid var(--border-light);
        z-index: 1000;
        transition: right 0.3s ease;
    }

    .amsr-sidebar.active {
        right: 0;
    }

    .sidebar-header-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 24px;
        border-bottom: 1px solid var(--border-light);
        color: var(--text-primary);
        font-weight: 600;
    }

    #closeSidebarMobile {
        background: none;
        border: none;
        color: var(--text-primary);
        font-size: 1.3rem;
        cursor: pointer;
        padding: 8px;
    }
    .contribute-wrapper {
        padding: 40px 20px;
    }
    
    .contribute-wrapper h2 {
        font-size: 2rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 10px;
    }  
}

@media (max-width: 600px) {
    .amsr-title {
        font-size: 2rem;
    }
    .key-takeaways li{
        display: block;
    }
    .stat-grid{
        gap: 10px;
    }
    .stat-card {
        padding:12px;
    }
    .css-art-hero {
        height: 160px;
    }

    .center-symbol {
        font-size: 2.8rem;
    }

    .popup-content {
        padding: 30px 25px;
    }

    .popup-content>img {
        max-width: 250px;
    }

    .qr-fallback img {
        width: 220px !important;
    }
    .faq-item-pro summary {
        font-size: 1rem;
        padding: 20px 0;
    }
    
    .faq-a {
        font-size: 0.95rem;
        padding-right: 0;
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
        margin-left: 15px;
    }    
}
/* Mobile Responsiveness */
@media (max-width: 480px) {
    .share-engagement-pro {
        padding: 20px;
    }
    
    .share-icon-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
.stat-grid {
    grid-template-columns: repeat(1, 1fr);
    margin: 10px 0;
}    
.unified-split-footer-gap {
    height: 50vh;
}
}