/* =========================================
   CINEMATIC ABOUT SECTION - COMPLETE & FINAL
   ========================================= */
.about-cinematic-section {
    position: relative;
    padding: 8rem 0;
    background-color: var(--black-void);
    overflow: hidden;
}

/* Parallax Background */
.cinematic-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    filter: grayscale(100%) contrast(120%);
    z-index: 0;
    transform: scale(1.1);
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Story Block --- */
.cinematic-story {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

.gold-label {
    font-family: var(--body-font);
    color: var(--liquid-gold);
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 0.5rem;
    width: fit-content;
}

.cinematic-title {
    font-family: var(--heading-font);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--soft-white);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.text-gold {
    color: var(--liquid-gold);
    font-style: italic;
}

.cinematic-desc {
    font-family: var(--body-font);
    font-size: 1.15rem;
    color: var(--heading-font);
    line-height: 1.9;
    margin-bottom: 2.5rem;
    text-align: justify;
}

.signature-box p {
    font-family: var(--heading-font);
    color: var(--liquid-gold);
    font-size: 1.2rem;
    font-style: italic;
    border-left: 2px solid var(--liquid-gold);
    padding-left: 1.5rem;
}

/* --- Visual Collage --- */
.visual-collage {
    position: relative;
    height: 500px;
    perspective: 1000px;
}

.collage-img {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    object-fit: cover;
}

.img-1 {
    width: 65%;
    top: 0;
    left: 0;
    z-index: 3;
    transform: rotate(-4deg);
}

.img-2 {
    width: 55%;
    bottom: 0;
    right: 0;
    z-index: 2;
    transform: rotate(3deg);
}

.img-3 {
    width: 45%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-2deg);
    z-index: 4;
    border: 2px solid var(--liquid-gold);
}

.visual-collage:hover .img-1 {
    transform: rotate(0deg) translateY(-10px);
}

.visual-collage:hover .img-2 {
    transform: rotate(0deg) translateY(10px);
}

.visual-collage:hover .img-3 {
    transform: translate(-50%, -50%) scale(1.1) rotate(0deg);
}

.gold-frame-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    z-index: 1;
    pointer-events: none;
}

/* --- Sacred Grid (Mission/Vision) - VERTICAL STACK --- */
.sacred-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.sacred-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    padding: 2.5rem;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);

    /* Horizontal Strip Layout Inside Card */
    display: flex;
    align-items: center;
    gap: 2rem;
}

.card-number {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    color: rgba(255, 215, 0, 0.08);
    line-height: 1;
    min-width: 70px;
    text-align: center;
}

.card-content {
    flex: 1;
}

.sacred-card h3 {
    font-family: var(--heading-font);
    color: var(--liquid-gold);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.sacred-card h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--liquid-gold);
    transition: width 0.3s ease;
}

.sacred-card:hover h3::after {
    width: 100%;
}

.sacred-card p {
    font-family: var(--body-font);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.card-glow {
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.sacred-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.sacred-card:hover .card-glow {
    opacity: 1;
}

/* =========================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
   ========================================= */
@media (max-width: 900px) {
    .about-cinematic-section {
        padding: 4rem 0;
    }

    /* Stack Story Section */
    .cinematic-story {
        display: flex;
        flex-direction: column-reverse;
        gap: 3rem;
        text-align: center;
        margin-bottom: 4rem;
    }

    .gold-label,
    .signature-box p {
        margin-left: auto;
        margin-right: auto;
    }

    .signature-box p {
        border-left: none;
        border-top: 1px solid rgba(255, 215, 0, 0.4);
        padding-top: 1rem;
        padding-left: 0;
        max-width: 80%;
    }

    /* Fix Collage Alignment */
    .visual-collage {
        position: relative;
        height: auto;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        perspective: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .collage-img {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 215, 0, 0.2);
    }

    .gold-frame-accent {
        display: none;
    }

    /* Mission/Vision Cards Mobile Adjust */
    .sacred-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sacred-card {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        flex-direction: column;
        /* Stack number on top of text for small screens */
        text-align: center;
    }

    .card-number {
        font-size: 2.5rem;
        min-width: auto;
        margin-bottom: 0.5rem;
    }

    .sacred-card h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .cinematic-title {
        font-size: 2rem;
    }

    .visual-collage {
        gap: 1rem;
    }

    .sacred-card h3 {
        font-size: 1.4rem;
    }

    .sacred-card p {
        font-size: 0.95rem;
    }
}

/* =========================================
   SACRED PILLARS SECTION (UNIQUE DESIGN)
   ========================================= */
.sacred-pillars-section {
    padding: 4rem 0;
    background-color: var(--black-void);
    position: relative;
}

.center-align {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header .gold-label {
    margin: 0 auto 1.5rem;
}

/* --- Grid Layout --- */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
}

/* Decorative Background Line connecting all pillars */
.pillars-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    /* Aligns with icon center */
    left: 12.5%;
    /* Starts from first pillar center */
    right: 12.5%;
    /* Ends at last pillar center */
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 215, 0, 0.3), transparent);
    z-index: 0;
}

/* --- Individual Pillar --- */
.pillar-item {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.4s ease;
}

.pillar-item:hover {
    transform: translateY(-5px);
}

/* Vertical Gold Line dropping from icon */
.pillar-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--liquid-gold), transparent);
    margin-bottom: 1.5rem;
    opacity: 0.5;
    transition: height 0.4s ease, opacity 0.4s ease;
}

.pillar-item:hover .pillar-line {
    height: 80px;
    opacity: 1;
}

/* Icon Styling */
.pillar-icon {
    font-size: 2rem;
    color: var(--liquid-gold);
    margin-bottom: 1.5rem;
    background: var(--black-void);
    /* Hides the horizontal line behind icon */
    padding: 0 10px;
    transition: all 0.4s ease;
}

.pillar-item:hover .pillar-icon {
    transform: scale(1.2);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

/* Typography */
.pillar-content h3 {
    font-family: var(--heading-font);
    color: var(--soft-white);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.pillar-item:hover h3 {
    color: var(--liquid-gold);
}

.pillar-content p {
    font-family: var(--body-font);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    max-width: 280px;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */

/* Tablet: 2x2 Grid */
@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 2rem;
    }

    /* Hide horizontal connecting line on tablet/mobile */
    .pillars-grid::before {
        display: none;
    }

    .sacred-pillars-section {
        padding: 6rem 0;
    }
}

/* Mobile: Single Column Stack */
@media (max-width: 600px) {
    .sacred-pillars-section {
        padding: 4rem 0;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pillar-item {
        flex-direction: row;
        /* Horizontal layout for mobile */
        align-items: flex-start;
        text-align: left;
        gap: 1.5rem;
    }

    .pillar-line {
        width: 2px;
        height: 100%;
        min-height: 60px;
        margin: 0;
        background: linear-gradient(to bottom, var(--liquid-gold), transparent);
    }

    .pillar-icon {
        margin: 0 0 0.5rem 0;
        padding: 0;
        font-size: 1.8rem;
    }

    .pillar-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }

    .pillar-content p {
        max-width: 100%;
        font-size: 0.9rem;
    }
}


/* =========================================
   CREATOR SECTION WITH FULL BG MARQUEE
   ========================================= */
.creator-section {
    padding: 2rem 0;
    background-color: var(--black-void);
    position: relative;
    overflow: hidden;
    /* Marquee bahar na nikle */
}

.container {
    position: relative;
    z-index: 2;
    /* Content marquee ke upar rahega */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.creator-section {
    padding: 8rem 0;
    background-color: var(--black-void);
    position: relative;
    overflow: hidden;
}

.container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Base Marquee Styles - NO ANIMATION */
.marquee-layer {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
    white-space: nowrap;
    z-index: 1;
}

.marquee-layer .marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
    /* Removed animation property entirely */
}

.marquee-layer .marquee-track span {
    font-family: var(--heading-font);
    color: var(--liquid-gold);
    line-height: 1;
    user-select: none;
    padding-right: 4rem;
}

.layer-1 {
    top: 20%;
    opacity: 0.05;
}

.layer-1 .marquee-track span {
    font-size: clamp(6rem, 14vw, 16rem);
}

.layer-2 {
    top: 50%;
    opacity: 0.07;
    transform: translateY(-50%);
}

.layer-2 .marquee-track span {
    font-size: clamp(5rem, 12vw, 14rem);
}

.layer-3 {
    bottom: 15%;
    opacity: 0.04;
}

.layer-3 .marquee-track span {
    font-size: clamp(7rem, 16vw, 18rem);
}

.creator-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

/* Visual Side */
.creator-visual {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 4px;
    overflow: visible;
    z-index: 2;
}

.creator-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    filter: grayscale(20%) contrast(110%);
    transition: all 0.6s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-frame:hover .creator-img {
    filter: grayscale(0%) contrast(100%);
    transform: scale(1.02);
}

.creator-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--liquid-gold);
    color: var(--black-void);
    padding: 1.5rem;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    z-index: 3;
}

.creator-badge span {
    display: block;
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.creator-badge small {
    font-family: var(--body-font);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Story Side */
.creator-story {
    position: relative;
    z-index: 2;
}

.gold-label {
    font-family: var(--body-font);
    color: var(--liquid-gold);
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.5rem;
}

.cinematic-title {
    font-family: var(--heading-font);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--soft-white);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.text-gold {
    color: var(--liquid-gold);
    font-style: italic;
}

.creator-desc {
    font-family: var(--body-font);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* Stats Strip */
.creator-stats-row {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--liquid-gold);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-lbl {
    font-family: var(--body-font);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Quote & Tags */
.creator-quote {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    color: var(--soft-white);
    font-style: italic;
    margin: 0 0 2rem 0;
    padding-left: 1.5rem;
    border-left: 3px solid var(--liquid-gold);
    line-height: 1.4;
}

.creator-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.creator-tags span {
    font-family: var(--body-font);
    font-size: 0.85rem;
    color: rgba(255, 215, 0, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.creator-tags span:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--liquid-gold);
    transform: translateY(-2px);
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 900px) {
    .creator-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .creator-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .creator-badge {
        right: 0;
        bottom: -15px;
        padding: 1rem;
    }

    .creator-badge span {
        font-size: 1.5rem;
    }

    .creator-stats-row {
        gap: 1.5rem;
        justify-content: space-between;
    }

    .stat-num {
        font-size: 1.6rem;
    }

    /* Mobile Marquee Adjustment */
    .marquee-bg-wrapper {
        opacity: 0.04;
    }
}

@media (max-width: 480px) {
    .creator-section {
        padding: 4rem 0;
    }

    .creator-stats-row {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }

    .creator-quote {
        font-size: 1.2rem;
    }

    .marquee-item {
        font-size: clamp(3rem, 20vw, 6rem);
    }
}


/* =========================================
   UNIFIED SPLIT SECTION WITH BLENDED BG
   ========================================= */
.unified-split-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    background-color: var(--black-void);
    overflow: hidden;
}

/* SINGLE PARENT BACKGROUND IMAGE: TOP VISIBLE -> BOTTOM FADE TO BLACK VOID */
.unified-bg-image {
    position: absolute;
    inset: 0;
    /* REPLACE THIS URL WITH YOUR ACTUAL IMAGE */
    background-image: url('/images/varansi-ghat-arti-gorakhpur-sanatan.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;

    /* CRITICAL: Top fully visible, bottom fades to black void */
    mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 1) 0%,
            /* Top: 100% visible */
            rgba(0, 0, 0, 0.8) 40%,
            /* Middle: 80% visible */
            rgba(0, 0, 0, 0.2) 70%,
            /* Lower middle: 20% visible */
            transparent 90%,
            transparent 100%
            /* Bottom: 0% visible = pure black void */
        );
    -webkit-mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.8) 40%,
            rgba(0, 0, 0, 0.2) 70%,
            transparent 90%,
            transparent 100%);
}

/* --- LEFT SIDE: EDITORIAL CONTENT OVER BLENDED BG --- */
.split-left-content {
    width: 50%;
    padding: 6rem 4rem;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    /* Semi-transparent dark overlay for text readability over blended BG */
    background: linear-gradient(to left, rgba(0, 0, 0, 0.791), rgba(0, 0, 0, 0.464));
}

.container-split {
    max-width: 550px;
    margin: 0 auto;
}

.editorial-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.edit-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: all 0.4s ease;
    padding-left: 1rem;
    border-left: 2px solid transparent;
}

.edit-num {
    font-family: monospace;
    font-size: 1.2rem;
    color: rgba(255, 217, 0, 0.784);
    min-width: 40px;
}

.edit-content h3 {
    font-family: var(--heading-font);
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.853);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.edit-content h3 i {
    font-size: 0.7em;
    color: var(--liquid-gold);
    opacity: 0.9;
}

.edit-content p {
    font-family: var(--body-font);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.732);
    line-height: 1.6;
    margin: 0;
}

.edit-item:hover {
    border-left-color: var(--liquid-gold);
    padding-left: 1.5rem;
}

.edit-item:hover .edit-num {
    color: var(--liquid-gold);
    opacity: 1;
}

.edit-item:hover .edit-content h3 {
    color: var(--soft-white);
}

.edit-item:hover .edit-content p {
    color: rgba(255, 255, 255, 0.8);
}

/* --- RIGHT SIDE: CTA OVER SAME BLENDED BG --- */
.split-right-cta {
    width: 50%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    /* Lighter overlay on right so cards pop over blended BG */
    background: linear-gradient(to bottom, rgba(11, 11, 13, 0.4), rgb(0, 0, 0));
}

.cta-inner-container {
    max-width: 450px;
    width: 100%;
}

/* Contribution Card With Love */
.contribute-card-glass {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.card-love-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--heading-font);
    color: var(--soft-white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.love-message {
    font-family: var(--body-font);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-contribute {
    background: var(--liquid-gold);
    color: var(--black-void);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: var(--heading-font);
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-contribute:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}

/* Top Quote Glass */
.top-quote-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.top-quote-glass p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
}

/* Main Info Glass Card */
.main-info-glass {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
}

.info-title {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--soft-white);
    margin-bottom: 1rem;
    text-align: center;
}

.info-desc {
    font-family: var(--body-font);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.feat {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.icon {
    color: var(--liquid-gold);
    font-size: 1rem;
}

.info-dm {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background 0.3s ease;
}

.info-dm:hover {
    background: rgba(255, 215, 0, 0.1);
}

/* Popup Modal */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

#qrBox img {
    width: 250px;
    border-radius: 10px;
    margin-top: 1rem;
}

.unified-split-footer-gap {
    height: 90vh;
}

/* Responsive */
@media (max-width: 1024px) {
    .unified-split-section {
        flex-direction: column;
        min-height: auto;
    }

    .split-left-content {
        width: 100%;
        padding: 4rem 2rem;
        background: rgba(11, 11, 13, 0.8);
    }

    .split-right-cta {
        width: 100%;
        padding: 3rem 2rem;
        background: rgba(11, 11, 13, 0.6);
    }

    /* Adjust mask for mobile so image still blends properly */
    .unified-bg-image {
        mask-image: linear-gradient(to bottom,
                rgba(0, 0, 0, 1) 0%,
                rgba(0, 0, 0, 0.6) 50%,
                rgba(0, 0, 0, 0) 100%);
        -webkit-mask-image: linear-gradient(to bottom,
                rgba(0, 0, 0, 1) 0%,
                rgba(0, 0, 0, 0.6) 50%,
                rgba(0, 0, 0, 0) 100%);
    }
}

@media (max-width: 480px) {
    .split-left-content {
        padding: 3rem 1.5rem;
    }

    .edit-content h3 {
        font-size: 1.3rem;
    }

    .contribute-card-glass {
        padding: 1.5rem;
    }

    .main-info-glass {
        padding: 1.5rem;
    }

    .info-title {
        font-size: 1.2rem;
    }
}