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

/* =========================================
       1. HAUPT-LAYOUT (GOLDEN DAWN / HOPE & ENERGY)
       ========================================= */
    .cra-wrapper {
        margin: 0;
        padding: 0;
        width: 100%;
        min-height: 100vh;
        /* Strahlender, warmer Verlauf (Energie & Aufbruch) */
        background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 50%, #fff7ed 100%);
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        overflow-x: hidden;
        position: relative;
        color: #451a03; /* Warmes Dunkelbraun/Schwarz für Text */
    }

    /* --- ANIMIERTE EMOJIS (JS GESTEUERT) --- */
    .bg-emoji {
        position: fixed;
        bottom: -10vh;
        z-index: 0; 
        opacity: 0;
        pointer-events: none;
        animation: riseUp linear forwards;
        font-family: "Segoe UI Emoji", "Noto Color Emoji", "Apple Color Emoji", sans-serif;
        user-select: none;
        filter: sepia(0.3) saturate(1.2); /* Warmer Look für CRA */
    }

    @keyframes riseUp {
        0% { bottom: -10vh; transform: translateX(0) rotate(0deg); opacity: 0; }
        10% { opacity: 0.15; } /* Dezent sichtbar */
        80% { opacity: 0.15; }
        100% { bottom: 110vh; transform: translateX(50px) rotate(360deg); opacity: 0; }
    }

    /* --- MASTER CARD CONTAINER (LIGHT) --- */
    .glass-card {
        position: relative;
        z-index: 10;
        max-width: 900px;
        margin: 0 auto 3rem;
        padding: 3.5rem;
        /* Helles, strahlendes Weiß */
        background: rgba(255, 255, 255, 0.9); 
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        /* Goldener Rahmen, aber fein */
        border: 1px solid rgba(245, 158, 11, 0.3); 
        border-radius: 12px;
        /* Warmer Schatten */
        box-shadow: 0 25px 50px -12px rgba(217, 119, 6, 0.15);
    }
    
    /* Goldener Header-Akzent */
    .glass-card::before {
        content: '';
        position: absolute; top: 0; left: 0; right: 0; height: 6px;
        background: linear-gradient(90deg, #f59e0b, #d97706);
        border-radius: 12px 12px 0 0;
    }

    /* --- TYPOGRAFIE & HEADER --- */
    a.cra-badge {
        display: inline-block;
        background: #fffbeb; /* Light Amber */
        color: #b45309; /* Deep Amber */
        padding: 8px 20px;
        border-radius: 4px;
        font-size: 0.8rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
        text-decoration: none;
        border: 1px solid #fcd34d;
        box-shadow: 0 4px 6px rgba(245, 158, 11, 0.1);
        transition: transform 0.3s;
    }
    a.cra-badge:hover { transform: translateY(-2px); background: #f59e0b; color: white; }

    h1.post-title {
        font-size: 3.2rem;
        font-weight: 900;
        margin: 0 0 1.5rem;
        line-height: 1.1;
        color: #1c1917; /* Starker Kontrast */
        letter-spacing: -1px;
    }

    /* --- CONTENT STYLING --- */
    .entry-content { font-size: 1.2rem; line-height: 1.8; color: #44403c; font-weight: 400; }
    
    /* Headlines im Text */
    .entry-content h2 { 
        color: #b45309; /* Dunkles Gold/Braun */
        font-size: 2rem; 
        margin-top: 3.5rem; 
        margin-bottom: 1.5rem; 
        font-weight: 800; 
        position: relative;
        padding-bottom: 10px;
    }
    /* Unterstrich */
    .entry-content h2::after {
        content: ''; position: absolute; left: 0; bottom: 0; width: 60px; height: 4px; background: #f59e0b;
    }

    .entry-content h3 { color: #d97706; font-size: 1.5rem; margin-top: 2rem; font-weight: 700; letter-spacing: 0.5px; }
    .entry-content p { margin-bottom: 1.5rem; }
    
    /* Zitate (Inspiration) */
    .entry-content blockquote {
        border-left: 4px solid #f59e0b;
        background: #fffbeb;
        padding: 2rem;
        margin: 3rem 0;
        font-size: 1.3rem;
        font-style: italic;
        color: #92400e;
        border-radius: 0 8px 8px 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    }

    /* Listen (Success Steps) */
    .entry-content ul, .entry-content ol { 
        background: #ffffff; 
        border: 1px solid #fde68a;
        border-radius: 8px; 
        padding: 1.5rem 1.5rem 1.5rem 3rem; 
        margin-bottom: 1.5rem; 
        box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    }
    .entry-content ul li::marker { color: #f59e0b; font-weight: bold; }

    /* Links im Text */
    .entry-content a {
        color: #d97706;
        text-decoration: none;
        border-bottom: 2px solid #fcd34d;
        transition: all 0.3s;
        font-weight: 600;
    }
    .entry-content a:hover { background: #fffbeb; color: #b45309; border-bottom-color: #b45309; }

    /* Bilderrahmen (Clean & Sharp) */
    .entry-content img {
        max-width: 100%; height: auto; display: block; margin: 3rem auto;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        border: 1px solid #e7e5e4;
        border-radius: 8px;
        padding: 10px;
        background: white;
    }

    /* --- WISDOM BOX (Light) --- */
    .harm-reduction-box {
        margin-top: 4rem;
        background: #fff7ed; /* Very Light Orange */
        border: 2px solid #fdba74;
        border-radius: 12px;
        padding: 2rem;
        display: flex;
        gap: 1.5rem;
        align-items: center;
    }
    .warning-emoji { font-size: 2.5rem; }
    .warning-text h4 { color: #c2410c; margin: 0 0 0.5rem; font-weight: 800; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }
    .warning-text p { margin: 0; font-size: 1rem; color: #9a3412; }

    /* --- AUTHOR BOX --- */
    .author-box { 
        display: flex; 
        align-items: flex-start; 
        gap: 2rem; 
        margin-top: 5rem; 
        padding-top: 3rem; 
        border-top: 1px solid #e7e5e4; 
    }
    .author-avatar img { 
        width: 110px; height: 110px; 
        border-radius: 50%; 
        border: 3px solid #f59e0b; 
        padding: 3px;
        background: white;
        object-fit: cover; 
    }
    .author-content h3 { 
        margin: 0 0 0.5rem; 
        font-size: 1.6rem; 
        color: #1c1917;
    }
    .author-content p { font-size: 1rem; color: #57534e; margin-bottom: 1.5rem; line-height: 1.7; }
    .author-link { 
        display: inline-block; 
        color: #b45309; text-decoration: none; 
        font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700;
        border-bottom: 2px solid #fcd34d; transition: all 0.3s;
    }
    .author-link:hover { border-bottom-color: #b45309; background: #fffbeb; }

    /* --- TAGS (CRA STYLE) --- */
    .science-tags-container {
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid #fcd34d;
    }
    .science-tags-title {
        font-size: 0.8rem;
        text-transform: uppercase;
        color: #b45309;
        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: #fffbeb; /* Amber Light */
        color: #b45309; /* Deep Amber Text */
        border: 1px solid #fcd34d;
        padding: 6px 14px;
        border-radius: 4px; /* Sharp corners for mastery */
        font-size: 0.85rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s ease;
        font-family: 'Roboto Mono', monospace;
    }
    .science-tag:hover {
        background: #f59e0b; /* Vibrant Gold */
        color: white;
        border-color: #f59e0b;
        transform: translateY(-2px);
    }

    /* --- RELATED POSTS (CRA STYLE) --- */
    .related-posts-section {
        margin-top: 4rem;
    }
    .related-title {
        font-size: 1.2rem;
        color: #451a03;
        border-left: 4px solid #f59e0b;
        padding-left: 15px;
        margin-bottom: 2rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .related-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    .related-card {
        background: white;
        border: 1px solid #fcd34d;
        border-radius: 8px;
        overflow: hidden;
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
    }
    .related-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(217, 119, 6, 0.15);
        border-color: #f59e0b;
    }
    .related-thumb {
        height: 140px;
        background: #fffbeb;
        overflow: hidden;
    }
    .related-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }
    .related-card:hover .related-thumb img {
        transform: scale(1.05);
    }
    .related-content {
        padding: 1.2rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    .related-cat {
        font-size: 0.7rem;
        color: #d97706;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
        font-family: 'Roboto Mono', monospace;
    }
    .related-name {
        font-size: 1rem;
        font-weight: 700;
        color: #451a03;
        line-height: 1.4;
        margin: 0;
    }
    .related-arrow {
        margin-top: auto;
        padding-top: 1rem;
        color: #f59e0b;
        font-weight: bold;
        font-size: 1.2rem;
        text-align: right;
    }

    /* --- CATEGORY BUTTON --- */
    .cat-section { text-align: center; margin: 4rem 0; }
    .cat-btn { 
        display: inline-block; 
        background: white; 
        color: #78350f; 
        padding: 12px 35px; 
        border-radius: 4px; 
        text-decoration: none; 
        font-size: 0.9rem;
        transition: all 0.3s; 
        border: 1px solid #d6d3d1;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 700;
    }
    .cat-btn:hover { 
        border-color: #f59e0b;
        color: #f59e0b;
        box-shadow: 0 5px 15px rgba(245, 158, 11, 0.2);
        transform: translateY(-2px);
    }

    /* --- SOCIAL GRID (LIGHT GOLD) --- */
    .social-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 1rem; margin-top: 3rem; }
    .social-card { 
        display: flex; flex-direction: column; align-items: center; justify-content: center; 
        padding: 1.5rem 1rem; 
        background: white; 
        border-radius: 8px; 
        text-decoration: none; 
        transition: all 0.3s ease; 
        border: 1px solid #e7e5e4; 
        text-align: center; 
        box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    }
    .social-card:hover { 
        transform: translateY(-5px); 
        border-color: #f59e0b;
        box-shadow: 0 10px 20px rgba(245, 158, 11, 0.15);
    }
    .social-icon { width: 28px; height: 28px; margin-bottom: 0.5rem; color: #a8a29e; transition: transform 0.3s; }
    .social-card:hover .social-icon { transform: scale(1.2); color: #f59e0b; }
    .social-name { font-weight: 700; font-size: 0.8rem; color: #44403c; letter-spacing: 0.5px; text-transform: uppercase; }
    .social-handle { font-size: 0.65rem; color: #a8a29e; margin-top: 4px; }

    /* --- FLOATING HACK-THE-ALGO WIDGET (OPTIMIERT) --- */
    .algo-hack-widget {
        position: fixed;
        right: 20px;
        top: 50%; /* Mittig auf Desktop */
        transform: translateY(-50%);
        z-index: 1000;
        
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        
        border-radius: 16px;
        border: 1px solid #fcd34d;
        box-shadow: 0 15px 40px rgba(245, 158, 11, 0.2);
        transition: transform 0.3s ease;
        
        width: auto;
        min-width: 140px; /* Breite für Desktop Grid */
        padding: 0; /* Padding wird von inneren Elementen geregelt */
        overflow: hidden; /* Damit Header-Ecken rund sind */
    }

    .algo-hack-widget:hover {
        transform: translateY(-50%) scale(1.02);
        border-color: #d97706;
    }

    /* Der Header Balken */
    .algo-head {
        background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
        color: white;
        font-size: 0.75rem;
        font-weight: 800;
        text-transform: uppercase;
        padding: 10px;
        text-align: center;
        letter-spacing: 1px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        cursor: default;
        width: 100%;
        display: block;
    }
    
    /* Container für die Buttons */
    .algo-buttons-group {
        padding: 12px;
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 Spalten auf Desktop */
        gap: 8px;
        justify-items: center;
    }

    .algo-share-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: white;
        border: 1px solid rgba(0,0,0,0.05);
        color: #333;
        cursor: pointer;
        transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .algo-share-btn:hover {
        transform: scale(1.15);
        box-shadow: 0 5px 15px rgba(245, 158, 11, 0.2);
    }

    /* Platform spezifische Farben */
    .asb-wa:hover { color: #25D366; border-color: #25D366; }
    .asb-tele:hover { color: #0088cc; border-color: #0088cc; }
    .asb-fb:hover { color: #1877F2; border-color: #1877F2; }
    .asb-reddit:hover { color: #FF4500; border-color: #FF4500; }
    .asb-twitter:hover { color: #1DA1F2; border-color: #1DA1F2; }
    
    /* Instagram Gradient */
    .asb-insta:hover { 
        color: white; 
        background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
        border-color: transparent;
    }
    
    /* TikTok Schwarz */
    .asb-tiktok:hover {
        color: white;
        background: #000;
        border-color: #000;
    }
    
    .asb-copy:hover { color: #b45309; border-color: #b45309; }

    /* MOBILE OPTIMIERUNG (SWIPE SLIDER - EINE REIHE) */
    @media (max-width: 1000px) {
        .algo-hack-widget {
            top: auto;
            bottom: 20px;
            right: 50%;
            transform: translateX(50%);
            /* Mobile Breite anpassen */
            width: 92%; 
            max-width: 420px;
            min-width: auto;
            border-radius: 16px;
            display: block; 
            padding: 0;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 10px 35px rgba(245, 158, 11, 0.25);
        }

        .algo-hack-widget:hover {
            transform: translateX(50%); /* Kein Hover-Lift auf Mobil */
        }

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

        /* Horizontales Scrollen (Swipe) */
        .algo-buttons-group {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap; /* Erzwingt eine Zeile */
            overflow-x: auto; /* Erlaubt scrollen */
            gap: 12px;
            padding: 12px 15px;
            justify-content: flex-start;
            -webkit-overflow-scrolling: touch; /* Smooth scroll iOS */
            /* Scrollbar verstecken */
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none;  /* IE */
        }
        
        .algo-buttons-group::-webkit-scrollbar { 
            display: none; /* Chrome/Safari */
        }
        
        .algo-share-btn {
            width: 42px;
            height: 42px;
            font-size: 1.2rem;
            flex-shrink: 0; /* Verhindert das Quetschen der Buttons */
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
    }

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

/* Widget Container Light Luxury */
                .neelix-donation-wrapper {
                    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
                    max-width: 100%;
                    margin: 80px 0 40px;
                    background: #ffffff;
                    border-radius: 12px;
                    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.1);
                    border: 1px solid #fde68a; /* Soft Gold Border */
                    overflow: hidden;
                    position: relative;
                    color: #333;
                    z-index: 1;
                }

                /* Ticker (Gold Gradient) */
                .donation-ticker-bar {
                    background: linear-gradient(90deg, #d97706 0%, #b45309 100%);
                    color: #fff;
                    padding: 12px 0;
                    overflow: hidden;
                    position: relative;
                    font-size: 0.85rem;
                    font-weight: 700;
                    letter-spacing: 1.5px;
                    text-transform: uppercase;
                }
                .ticker-content {
                    display: inline-block;
                    white-space: nowrap;
                    animation: ticker-scroll 40s 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: #fffbeb; /* Amber White */
                    border-right: 1px solid #fef3c7;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                }

                .info-badge {
                    display: inline-block;
                    background: #fef3c7;
                    color: #b45309;
                    padding: 5px 12px;
                    border-radius: 4px;
                    font-size: 0.7em;
                    font-weight: 700;
                    text-transform: uppercase;
                    margin-bottom: 15px;
                    border: 1px solid #fcd34d;
                    letter-spacing: 1px;
                }

                .info-title {
                    margin: 0 0 15px;
                    font-size: 1.8rem;
                    line-height: 1.2;
                    font-weight: 800;
                    color: #451a03;
                    text-transform: uppercase;
                }

                .info-text {
                    font-size: 0.95rem;
                    line-height: 1.7;
                    color: #78350f;
                    margin-bottom: 25px;
                }

                /* Share Box Light */
                .share-box {
                    background: white;
                    border: 1px solid #fde68a;
                    border-radius: 8px;
                    padding: 20px;
                    margin-top: auto;
                    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
                }
                
                .share-title { font-size: 0.85rem; font-weight: 700; color: #b45309; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; }
                .share-subtitle { font-size: 0.8rem; color: #92400e; margin-bottom: 15px; }
                .share-btn {
                    display: flex; align-items: center; justify-content: center; gap: 8px;
                    padding: 10px; border-radius: 4px; text-decoration: none;
                    font-size: 0.8rem; font-weight: 700; color: white;
                    transition: transform 0.2s; border: none; cursor: pointer; text-transform: uppercase;
                }
                .share-btn:hover { transform: translateY(-2px); color: white; }
                .sb-whatsapp { background: #25D366; }
                .sb-facebook { background: #1877F2; }
                .sb-twitter { background: #000000; }
                .sb-email { background: #d97706; }
                /* Reddit Button */
                .sb-reddit { background: #FF4500; }

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

                .pay-title { text-align: center; font-weight: 800; font-size: 1.4rem; margin-bottom: 25px; color: #1c1917; text-transform: uppercase; letter-spacing: 1px; }
                .amt-btn {
                    flex: 0 0 auto;
                    padding: 12px 24px;
                    border: 1px solid #e5e5e5;
                    background: #f9fafb;
                    border-radius: 0px; /* Sharp corners */
                    font-weight: 700;
                    font-size: 1rem;
                    color: #57534e;
                    cursor: pointer;
                    transition: all 0.3s;
                }
                .amt-btn:hover, .amt-btn.active {
                    border-color: #f59e0b;
                    background: #f59e0b;
                    color: white;
                    transform: translateY(-2px);
                    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.25);
                }

                .custom-input-group { position: relative; width: 100px; }
                .custom-input {
                    width: 100%; padding: 12px;
                    border: 2px solid #f59e0b;
                    border-radius: 0px;
                    font-size: 1.1rem;
                    font-weight: 700;
                    text-align: center;
                    color: #d97706;
                    outline: none;
                    background: #fffbeb;
                }
                .currency-symbol {
                    position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
                    color: #f59e0b; font-weight: bold;
                }

                /* Main Button (Vibrant Gold) */
                .main-pay-btn {
                    width: 100%;
                    padding: 18px;
                    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
                    color: #fff;
                    border: none;
                    border-radius: 4px;
                    font-weight: 800;
                    font-size: 1.1rem;
                    cursor: pointer;
                    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
                    transition: transform 0.3s;
                    margin-bottom: 30px;
                    display: flex; align-items: center; justify-content: center; gap: 10px;
                    text-transform: uppercase;
                    letter-spacing: 2px;
                }
                .main-pay-btn:hover { transform: scale(1.02); }

                /* Crypto Buttons */
                .cry-btn {
                    padding: 8px 16px;
                    font-size: 0.8rem;
                    background: #f3f4f6;
                    color: #4b5563;
                    border-radius: 2px;
                    border: 1px solid #e5e7eb;
                    cursor: pointer;
                    font-weight: 700;
                    transition: background 0.2s;
                    text-transform: uppercase;
                }
                .cry-btn:hover { background: #fffbeb; color: #d97706; border-color: #fcd34d; }

                .moonpay-link {
                    display: block; text-align: center; margin-top: 15px;
                    font-size: 0.8rem; color: #b45309; text-decoration: none; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
                }
                .moonpay-link:hover { text-decoration: underline; }

                /* Modals (Clean White) */
                .nlx-modal-overlay {
                    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
                    width: 100%; height: 100%;
                    background: rgba(255, 251, 235, 0.9); /* Cream Tint */
                    z-index: 9999999 !important;
                    justify-content: center; align-items: center;
                    backdrop-filter: blur(10px);
                }
                .nlx-modal-box {
                    background: white;
                    padding: 40px; border-radius: 8px;
                    width: 90%; max-width: 450px; position: relative;
                    box-shadow: 0 25px 50px rgba(245, 158, 11, 0.2);
                    text-align: left; color: #333;
                    border: 1px solid #fde68a;
                }

                .nlx-close { position: absolute; top: 15px; right: 20px; font-size: 32px; cursor: pointer; color: #9ca3af; line-height: 1; }
                .nlx-close:hover { color: #d97706; }

                .nlx-copy-btn {
                    background: #1c1917; color: white; border: none; width: 100%;
                    padding: 14px; border-radius: 4px; margin-top: 20px; font-weight: 800; cursor: pointer; text-transform: uppercase; letter-spacing: 1px;
                }
                .nlx-copy-btn:hover { background: #f59e0b; color: black; }
                .cs-btn {
                    background: #fffbeb; border: 1px solid #fcd34d; padding: 15px;
                    border-radius: 4px; cursor: pointer; font-size: 0.9rem; font-weight: 700; color: #451a03; text-transform: uppercase;
                }
                .cs-btn:hover { background: #fef3c7; border-color: #f59e0b; }

                /* Confirmation/Message Modals for Light Theme */
                .nlx-modal-text { font-size: 1.1rem; line-height: 1.6; margin-bottom: 20px; color: #334155; }
                .nlx-confirm-btn, .nlx-cancel-btn {
                    padding: 10px 20px; border-radius: 8px; font-weight: 700; cursor: pointer; transition: background 0.2s;
                    flex-grow: 1; max-width: 150px;
                }
                .nlx-confirm-btn { background: #d97706; color: white; border: none; }
                .nlx-confirm-btn:hover { background: #b45309; }
                .nlx-cancel-btn { background: #f3f4f6; color: #64748b; border: 1px solid #e5e7eb; }
                .nlx-cancel-btn:hover { background: #e5e5e5; color: #334155; }

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