/* Auto-extracted from single-kitools.php */

/* =========================================
       1. HAUPT-LAYOUT (FUTURE TECH / DARK MODE)
       ========================================= */
    .kitools-wrapper {
        margin: 0;
        padding: 0;
        width: 100%;
        min-height: 100vh;
        /* Dunkler, futuristischer Hintergrund (Deep Space -> Cyber Green Glow) */
        background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #052e16 100%);
        font-family: 'Inter', 'Roboto Mono', monospace; /* Tech Font Mix */
        overflow-x: hidden;
        position: relative;
        color: #e2e8f0; /* Helles Grau für Text auf Dunkel */
    }

    /* --- ANIMIERTE EMOJIS (JS GESTEUERT - GREEN CODE RAIN STYLE) --- */
    .bg-emoji {
        position: fixed;
        top: -10vh; /* Startet oben */
        z-index: 0; 
        opacity: 0;
        pointer-events: none;
        animation: fallDown linear forwards; /* Fällt wie Matrix Code */
        font-family: "Segoe UI Emoji", "Noto Color Emoji", "Apple Color Emoji", sans-serif;
        user-select: none;
        filter: hue-rotate(90deg) brightness(1.5); /* Grüner Matrix Look */
        color: #22c55e;
        text-shadow: 0 0 5px #4ade80;
    }

    @keyframes fallDown {
        0% { top: -10vh; opacity: 0; transform: translateY(0); }
        10% { opacity: 0.3; } 
        90% { opacity: 0.3; }
        100% { top: 110vh; opacity: 0; transform: translateY(0); }
    }

    /* --- CARD CONTAINER (CYBER PANEL) --- */
    .glass-card {
        position: relative;
        z-index: 10;
        max-width: 900px;
        margin: 0 auto 3rem;
        padding: 3.5rem;
        background: rgba(15, 23, 42, 0.85); /* Dark Glass */
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid #1e293b;
        border-radius: 4px; /* Tech-Ecken */
        box-shadow: 0 0 30px rgba(34, 197, 94, 0.1); /* Green Glow */
    }
    
    /* Top Line (Laser Green) */
    .glass-card::before {
        content: '';
        position: absolute; top: 0; left: 0; right: 0; height: 2px;
        background: linear-gradient(90deg, #22c55e, #10b981, #3b82f6);
        box-shadow: 0 0 10px #22c55e;
    }

    /* --- TYPOGRAFIE & HEADER --- */
    a.ki-badge {
        display: inline-block;
        background: rgba(34, 197, 94, 0.1);
        color: #4ade80; /* Neon Green */
        padding: 6px 16px;
        border-radius: 2px;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
        text-decoration: none;
        border: 1px solid #22c55e;
        font-family: 'Roboto Mono', monospace;
        transition: all 0.2s;
    }
    a.ki-badge:hover { 
        background: #22c55e; 
        color: #020617; 
        box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
    }

    h1.post-title {
        font-size: 3rem;
        font-weight: 800;
        margin: 0 0 1.5rem;
        line-height: 1.1;
        color: #f8fafc;
        letter-spacing: -0.5px;
        text-shadow: 0 0 20px rgba(255,255,255,0.1);
    }

    /* --- CONTENT STYLING --- */
    .entry-content { font-size: 1.15rem; line-height: 1.8; color: #cbd5e1; }
    
    /* Headlines */
    .entry-content h2 { 
        color: #4ade80; /* Bright Green */
        font-size: 1.8rem; 
        margin-top: 3rem; 
        margin-bottom: 1.2rem; 
        font-weight: 700; 
        border-bottom: 1px solid #1e293b;
        padding-bottom: 10px;
        font-family: 'Inter', sans-serif;
    }

    .entry-content h3 { color: #38bdf8; /* Sky Blue */ font-size: 1.4rem; margin-top: 2rem; font-weight: 700; }
    .entry-content p { margin-bottom: 1.5rem; }
    
    /* Code-Block Style für Zitate/Wichtiges */
    .entry-content blockquote {
        border-left: 3px solid #22c55e;
        background: #0f172a;
        padding: 1.5rem;
        margin: 2.5rem 0;
        color: #e2e8f0;
        font-family: 'Roboto Mono', monospace;
        font-size: 1rem;
    }

    /* Listen (Terminal Style) */
    .entry-content ul, .entry-content ol { 
        background: rgba(15, 23, 42, 0.5);
        border: 1px solid #334155;
        border-radius: 4px; 
        padding: 1.5rem 1.5rem 1.5rem 3rem; 
        margin-bottom: 1.5rem; 
    }
    .entry-content ul li { margin-bottom: 8px; }
    .entry-content ul li::marker { color: #22c55e; content: "> "; font-family: monospace; }

    /* Links im Text */
    .entry-content a {
        color: #22c55e;
        text-decoration: none;
        border-bottom: 1px dashed #22c55e;
        transition: all 0.2s;
    }
    .entry-content a:hover { color: #4ade80; border-bottom-style: solid; text-shadow: 0 0 5px rgba(34, 197, 94, 0.5); }

    /* Bilderrahmen (Hologram Style) */
    .entry-content img {
        max-width: 100%; height: auto; display: block; margin: 3rem auto;
        border: 1px solid #334155;
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
        border-radius: 4px;
        filter: brightness(0.9) contrast(1.1);
    }
    .entry-content img:hover { filter: brightness(1) contrast(1); }

    /* --- INFO BOX (AI Alert) --- */
    .harm-reduction-box {
        margin-top: 3rem;
        background: rgba(6, 78, 59, 0.3); /* Dark Green Transp */
        border: 1px solid #059669;
        border-radius: 4px;
        padding: 2rem;
        display: flex;
        gap: 1.5rem;
        align-items: center;
    }
    .warning-emoji { font-size: 2.2rem; }
    .warning-text h4 { color: #34d399; margin: 0 0 0.5rem; font-weight: 800; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; font-family: 'Roboto Mono', monospace; }
    .warning-text p { margin: 0; font-size: 0.95rem; color: #a7f3d0; }

    /* --- AUTHOR BOX (DARK) --- */
    .author-box { 
        display: flex; 
        align-items: center; 
        gap: 2rem; 
        margin-top: 5rem; 
        padding: 2.5rem; 
        background: #0f172a;
        border: 1px solid #1e293b;
        border-radius: 4px;
    }
    .author-avatar img { 
        width: 100px; height: 100px; 
        border-radius: 4px; 
        border: 2px solid #22c55e;
        padding: 2px;
        object-fit: cover; 
    }
    .author-content h3 { margin: 0 0 0.5rem; font-size: 1.4rem; color: #f8fafc; }
    .author-content p { font-size: 0.95rem; color: #94a3b8; margin-bottom: 1.5rem; }
    .author-link { 
        font-family: 'Roboto Mono', monospace;
        font-weight: 700; color: #22c55e; text-decoration: none; font-size: 0.8rem; text-transform: uppercase;
        border: 1px solid #22c55e; padding: 8px 20px; transition: all 0.2s;
    }
    .author-link:hover { background: #22c55e; color: #020617; box-shadow: 0 0 10px #22c55e; }

    /* --- TAGS (CYBER STYLE) --- */
    .science-tags-container {
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid #1e293b;
    }
    .science-tags-title {
        font-size: 0.8rem;
        text-transform: uppercase;
        color: #64748b;
        letter-spacing: 1px;
        margin-bottom: 1rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 8px;
        font-family: 'Roboto Mono', monospace;
    }
    .tag-cloud {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    .science-tag {
        display: inline-block;
        background: rgba(34, 197, 94, 0.05); /* Green Tint */
        color: #4ade80; /* Green Text */
        border: 1px solid #22c55e;
        padding: 6px 14px;
        border-radius: 0px; /* Tech Corners */
        font-size: 0.8rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s ease;
        font-family: 'Roboto Mono', monospace;
        text-transform: lowercase;
    }
    .science-tag:hover {
        background: #22c55e; 
        color: #000;
        box-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
        transform: translateY(-2px);
    }

    /* --- RELATED POSTS (CYBER STYLE) --- */
    .related-posts-section {
        margin-top: 4rem;
    }
    .related-title {
        font-size: 1.2rem;
        color: #f8fafc;
        border-left: 4px solid #22c55e; /* Matrix Green */
        padding-left: 15px;
        margin-bottom: 2rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-family: 'Roboto Mono', monospace;
    }
    .related-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    .related-card {
        background: #0f172a;
        border: 1px solid #1e293b;
        border-radius: 4px;
        overflow: hidden;
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
    }
    .related-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.15);
        border-color: #22c55e;
    }
    .related-thumb {
        height: 140px;
        background: #020617;
        overflow: hidden;
        position: relative;
    }
    /* Tech Overlay for Thumbnails */
    .related-thumb::after {
        content: ''; position: absolute; top:0; left:0; width:100%; height:100%;
        background: linear-gradient(0deg, rgba(2,6,23,0.8) 0%, transparent 100%);
    }
    .related-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
        filter: grayscale(40%) contrast(1.2);
    }
    .related-card:hover .related-thumb img {
        transform: scale(1.05);
        filter: grayscale(0%);
    }
    .related-content {
        padding: 1.2rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    .related-cat {
        font-size: 0.7rem;
        color: #38bdf8; /* Cyan */
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
        font-family: 'Roboto Mono', monospace;
    }
    .related-name {
        font-size: 1rem;
        font-weight: 700;
        color: #f1f5f9;
        line-height: 1.4;
        margin: 0;
    }
    .related-arrow {
        margin-top: auto;
        padding-top: 1rem;
        color: #22c55e;
        font-weight: bold;
        font-size: 1.2rem;
        text-align: right;
        font-family: monospace;
    }

    /* --- CATEGORY BUTTON --- */
    .cat-section { text-align: center; margin: 3rem 0; }
    .cat-btn { 
        display: inline-block; 
        background: transparent; 
        color: #22c55e; 
        padding: 12px 35px; 
        border-radius: 2px; 
        text-decoration: none; 
        font-weight: 700;
        transition: all 0.3s; 
        border: 1px solid #22c55e;
        font-family: 'Roboto Mono', monospace;
        text-transform: uppercase;
    }
    .cat-btn:hover { 
        background: #22c55e;
        color: #000;
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
    }

    /* --- SOCIAL GRID (DARK MODE) --- */
    .social-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 1rem; margin-top: 2rem; }
    .social-card { 
        display: flex; flex-direction: column; align-items: center; justify-content: center; 
        padding: 1.5rem 1rem; 
        background: #0f172a; 
        border-radius: 4px; 
        text-decoration: none; 
        transition: all 0.2s ease; 
        border: 1px solid #1e293b; 
        text-align: center; 
    }
    .social-card:hover { 
        transform: translateY(-3px); 
        box-shadow: 0 0 15px rgba(34, 197, 94, 0.1); 
        border-color: #22c55e;
        background: #1e293b;
    }
    .social-icon { width: 28px; height: 28px; margin-bottom: 0.5rem; color: #94a3b8; transition: transform 0.3s; }
    .social-card:hover .social-icon { transform: scale(1.1); color: #22c55e; }
    .social-name { font-weight: 700; font-size: 0.8rem; color: #e2e8f0; font-family: 'Roboto Mono', monospace; }
    .social-handle { font-size: 0.7rem; color: #64748b; margin-top: 2px; }

    /* --- FLOATING HACK-THE-ALGO WIDGET (CYBER EDITION) --- */
    .algo-hack-widget {
        position: fixed;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1000;
        
        background: rgba(15, 23, 42, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        
        border-radius: 8px;
        border: 1px solid #22c55e;
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.15);
        transition: transform 0.3s ease;
        
        width: auto;
        min-width: 140px; 
        padding: 0; 
        overflow: hidden; 
    }

    .algo-hack-widget:hover {
        transform: translateY(-50%) scale(1.02);
        box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
    }

    /* Der Header Balken */
    .algo-head {
        background: #22c55e; /* Solid Neon Green */
        color: #020617; /* Black Text */
        font-size: 0.75rem;
        font-weight: 800;
        text-transform: uppercase;
        padding: 10px;
        text-align: center;
        letter-spacing: 1px;
        cursor: default;
        width: 100%;
        display: block;
        font-family: 'Roboto Mono', monospace;
    }
    
    .algo-buttons-group {
        padding: 12px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        justify-items: center;
    }

    .algo-share-btn {
        width: 40px;
        height: 40px;
        border-radius: 4px; /* Tech Square */
        display: flex;
        align-items: center;
        justify-content: center;
        background: #1e293b;
        border: 1px solid #334155;
        color: #cbd5e1;
        cursor: pointer;
        transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .algo-share-btn:hover {
        transform: scale(1.1);
        background: #22c55e;
        color: #000;
        border-color: #22c55e;
        box-shadow: 0 0 10px #22c55e;
    }

    /* Platform spezifische Hover (hier alle grün wegen Cyber Theme, oder individuell) */
    /* Wir lassen den grünen Hover für den einheitlichen Matrix-Look */
    
    .asb-copy:hover { background: #3b82f6; border-color: #3b82f6; color: white; box-shadow: 0 0 10px #3b82f6; }

    /* MOBILE OPTIMIERUNG (SWIPE SLIDER) */
    @media (max-width: 1000px) {
        .algo-hack-widget {
            top: auto;
            bottom: 20px;
            right: 50%;
            transform: translateX(50%);
            width: 92%; 
            max-width: 420px;
            min-width: auto;
            border-radius: 8px;
            display: block; 
            padding: 0;
            background: rgba(15, 23, 42, 0.95);
            box-shadow: 0 0 25px rgba(34, 197, 94, 0.2);
        }

        .algo-hack-widget:hover {
            transform: translateX(50%);
        }

        .algo-head {
            border-radius: 8px 8px 0 0;
            font-size: 0.75rem;
            padding: 8px;
        }

        .algo-buttons-group {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            overflow-x: auto;
            gap: 12px;
            padding: 12px 15px;
            justify-content: flex-start;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        
        .algo-buttons-group::-webkit-scrollbar { display: none; }
        
        .algo-share-btn {
            width: 42px;
            height: 42px;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
    }

    @media (max-width: 768px) {
        .glass-card { margin: 0; padding: 2rem 1.5rem; border-radius: 0; border: none; border-top: 2px solid #22c55e; }
        h1.post-title { font-size: 2.2rem; }
        .author-box { flex-direction: column; text-align: center; }
        .social-grid { grid-template-columns: repeat(2, 1fr); }
        .related-grid { grid-template-columns: 1fr; }
    }

/* Widget Container Digital Neuro */
                .neelix-donation-wrapper {
                    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
                    max-width: 100%;
                    margin: 80px 0 40px;
                    background: #0f172a;
                    border-radius: 4px;
                    box-shadow: 0 0 40px rgba(34, 197, 94, 0.1);
                    border: 1px solid #1e293b;
                    overflow: hidden;
                    position: relative;
                    color: #e2e8f0;
                    z-index: 1;
                }

                /* Ticker (Green Gradient) */
                .donation-ticker-bar {
                    background: linear-gradient(90deg, #10b981 0%, #22c55e 100%);
                    color: #020617;
                    padding: 10px 0;
                    overflow: hidden;
                    position: relative;
                    font-size: 0.8rem;
                    font-weight: 800;
                    letter-spacing: 2px;
                    text-transform: uppercase;
                    font-family: 'Roboto Mono', monospace;
                }
                .ticker-content {
                    display: inline-block;
                    white-space: nowrap;
                    animation: ticker-scroll 35s linear infinite;
                    padding-left: 100%;
                }
                @keyframes ticker-scroll {
                    0% { transform: translateX(0); }
                    100% { transform: translateX(-100%); }
                }

                /* Grid Layout */
                .donation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }

                /* Linke Spalte */
                .col-info {
                    padding: 40px;
                    background: #020617; /* Deep Space */
                    border-right: 1px solid #1e293b;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                }

                .info-badge {
                    display: inline-block;
                    background: rgba(34, 197, 94, 0.1);
                    color: #4ade80;
                    padding: 5px 12px;
                    border-radius: 2px;
                    font-size: 0.7em;
                    font-weight: 700;
                    text-transform: uppercase;
                    margin-bottom: 15px;
                    border: 1px solid #22c55e;
                    font-family: 'Roboto Mono', monospace;
                }

                .info-title {
                    margin: 0 0 15px;
                    font-size: 1.8rem;
                    line-height: 1.2;
                    font-weight: 800;
                    color: #f8fafc;
                    text-shadow: 0 0 10px rgba(74, 222, 128, 0.3);
                }

                .info-text {
                    font-size: 0.95rem;
                    line-height: 1.6;
                    color: #94a3b8;
                    margin-bottom: 25px;
                }

                /* Share Box */
                .share-box {
                    background: #0f172a;
                    border: 1px solid #334155;
                    border-radius: 4px;
                    padding: 20px;
                    margin-top: auto;
                    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
                }
                
                .share-title { font-size: 0.8rem; font-weight: 700; color: #22c55e; margin-bottom: 5px; text-transform: uppercase; font-family: 'Roboto Mono', monospace; }
                .share-subtitle { font-size: 0.75rem; color: #64748b; margin-bottom: 15px; }
                .share-btn {
                    display: flex; align-items: center; justify-content: center; gap: 8px;
                    padding: 10px; border-radius: 2px; text-decoration: none;
                    font-size: 0.75rem; font-weight: 700; color: #cbd5e1;
                    transition: transform 0.2s; border: 1px solid #1e293b; cursor: pointer; background: #020617;
                    text-transform: uppercase;
                }
                .share-btn:hover { transform: translateY(-2px); border-color: #22c55e; color: #22c55e; }
                .sb-whatsapp { }
                .sb-facebook { }
                .sb-twitter { }
                .sb-email { }
                /* Reddit */
                .sb-reddit { }

                /* Rechte Spalte: Payment */
                .col-payment { padding: 40px; background: #0f172a; }

                .pay-title { text-align: center; font-weight: 800; font-size: 1.3rem; margin-bottom: 25px; color: #e2e8f0; text-transform: uppercase; letter-spacing: 1px; }
                .amt-btn {
                    flex: 0 0 auto;
                    padding: 10px 20px;
                    border: 1px solid #334155;
                    background: #1e293b;
                    border-radius: 2px;
                    font-weight: 700;
                    font-size: 1rem;
                    color: #94a3b8;
                    cursor: pointer;
                    transition: all 0.2s;
                    font-family: 'Roboto Mono', monospace;
                }
                .amt-btn:hover, .amt-btn.active {
                    border-color: #22c55e;
                    background: #22c55e;
                    color: #020617;
                    transform: translateY(-2px);
                    box-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
                }

                .custom-input-group { position: relative; width: 100px; }
                .custom-input {
                    width: 100%; padding: 10px;
                    border: 1px solid #22c55e;
                    border-radius: 2px;
                    font-size: 1.1rem;
                    font-weight: 800;
                    text-align: center;
                    color: #4ade80;
                    outline: none;
                    background: #020617;
                    font-family: 'Roboto Mono', monospace;
                }
                .currency-symbol {
                    position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
                    color: #22c55e; font-weight: bold;
                }

                /* Main Button (Matrix Gradient) */
                .main-pay-btn {
                    width: 100%;
                    padding: 16px;
                    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
                    color: #020617;
                    border: none;
                    border-radius: 2px;
                    font-weight: 800;
                    font-size: 1.1rem;
                    cursor: pointer;
                    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
                    transition: transform 0.2s;
                    margin-bottom: 30px;
                    display: flex; align-items: center; justify-content: center; gap: 10px;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                }
                .main-pay-btn:hover { transform: scale(1.02); box-shadow: 0 0 30px rgba(34, 197, 94, 0.4); }

                /* Crypto Buttons */
                .cry-btn {
                    padding: 6px 12px;
                    font-size: 0.8rem;
                    background: #1e293b;
                    color: #94a3b8;
                    border-radius: 2px;
                    border: 1px solid #334155;
                    cursor: pointer;
                    font-weight: 600;
                    transition: background 0.2s;
                }
                .cry-btn:hover { background: #0f172a; color: #4ade80; border-color: #22c55e; }

                .moonpay-link {
                    display: block; text-align: center; margin-top: 15px;
                    font-size: 0.8rem; color: #22c55e; text-decoration: none; font-weight: 600; font-family: 'Roboto Mono', monospace;
                }
                .moonpay-link:hover { text-decoration: underline; text-shadow: 0 0 5px #22c55e; }

                /* Modals (Cyber Dark) */
                .nlx-modal-overlay {
                    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
                    width: 100%; height: 100%;
                    background: rgba(2, 6, 23, 0.9); /* Deep Space Tint */
                    z-index: 9999999 !important;
                    justify-content: center; align-items: center;
                    backdrop-filter: blur(5px);
                }
                .nlx-modal-box {
                    background: #0f172a;
                    padding: 30px; border-radius: 4px;
                    width: 90%; max-width: 450px; position: relative;
                    box-shadow: 0 0 50px rgba(34, 197, 94, 0.15);
                    text-align: left; color: #e2e8f0;
                    border: 1px solid #1e293b;
                }

                .nlx-close { position: absolute; top: 15px; right: 20px; font-size: 28px; cursor: pointer; color: #64748b; line-height: 1; }
                .nlx-close:hover { color: #22c55e; }

                .nlx-copy-btn {
                    background: #22c55e; color: #020617; border: none; width: 100%;
                    padding: 12px; border-radius: 2px; margin-top: 20px; font-weight: bold; cursor: pointer; text-transform: uppercase;
                }
                .nlx-copy-btn:hover { background: #4ade80; box-shadow: 0 0 15px rgba(74, 222, 128, 0.4); }
                .cs-btn {
                    background: #1e293b; border: 1px solid #334155; padding: 10px;
                    border-radius: 2px; cursor: pointer; font-size: 0.9rem; font-weight: 600; color: #cbd5e1;
                }
                .cs-btn:hover { background: #020617; border-color: #22c55e; color: #4ade80; }

                /* Confirmation/Message Modals for Neuro Theme */
                .nlx-modal-text { font-size: 1.1rem; line-height: 1.6; margin-bottom: 20px; color: #cbd5e1; }
                .nlx-confirm-btn, .nlx-cancel-btn {
                    padding: 10px 20px; border-radius: 2px; font-weight: 700; cursor: pointer; transition: background 0.2s;
                    flex-grow: 1; max-width: 150px; text-transform: uppercase;
                }
                .nlx-confirm-btn { background: #22c55e; color: #020617; border: none; }
                .nlx-confirm-btn:hover { background: #4ade80; box-shadow: 0 0 10px #4ade80; }
                .nlx-cancel-btn { background: #1e293b; color: #94a3b8; border: 1px solid #334155; }
                .nlx-cancel-btn:hover { background: #0f172a; color: #cbd5e1; border-color: #64748b; }

                @media (max-width: 768px) {
                    .donation-grid { grid-template-columns: 1fr; }
                    .col-info { border-right: none; border-bottom: 1px solid #1e293b; padding: 30px; }
                    .col-payment { padding: 30px; }
                }
