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

/* =========================================
       1. HAUPT-LAYOUT (COSMIC & MYSTIC STYLE)
       ========================================= */
    .seelen-wrapper {
        margin: 0;
        padding: 0;
        width: 100%;
        min-height: 100vh;
        /* Deep Space Gradient: Indigo -> Night Blue -> Cosmic Black */
        background: radial-gradient(circle at center top, #4338ca 0%, #1e1b4b 50%, #020617 100%);
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        overflow-x: hidden;
        position: relative;
        color: #e2e8f0; /* Soft White 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;
        /* Mystischer Glow Effekt */
        filter: drop-shadow(0 0 8px rgba(167, 139, 250, 0.6)); 
    }

    @keyframes riseUp {
        0% { bottom: -10vh; transform: translateX(0) rotate(0deg); opacity: 0; }
        15% { opacity: 0.3; } 
        85% { opacity: 0.3; }
        100% { bottom: 110vh; transform: translateX(50px) rotate(360deg); opacity: 0; }
    }

    /* --- MYSTIC CARD CONTAINER --- */
    .glass-card {
        position: relative;
        z-index: 10;
        max-width: 850px;
        margin: 0 auto 3rem;
        padding: 3.5rem;
        /* Dunkler, fast undurchsichtiger Hintergrund für Lesbarkeit */
        background: rgba(15, 23, 42, 0.9); 
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        /* Goldener Rand */
        border: 1px solid rgba(251, 191, 36, 0.3); 
        /* Organische, mystische Form */
        border-radius: 160px 160px 20px 20px; 
        /* Violetter Schein */
        box-shadow: 0 0 100px rgba(124, 58, 237, 0.25);
    }
    
    /* Top Accent: Goldene Linie */
    .glass-card::before {
        content: '';
        position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
        width: 60px; height: 3px;
        background: #fbbf24;
        border-radius: 2px;
        box-shadow: 0 0 10px #fbbf24;
    }

    /* --- TYPOGRAFIE & HEADER --- */
    a.seelen-badge {
        display: inline-block;
        background: transparent;
        color: #fbbf24; /* Amber 400 */
        padding: 8px 24px;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 3px; 
        margin-bottom: 1.5rem;
        text-decoration: none;
        border: 1px solid rgba(251, 191, 36, 0.5);
        transition: all 0.4s ease;
        text-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
    }
    a.seelen-badge:hover {
        background: rgba(251, 191, 36, 0.1);
        box-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
        letter-spacing: 5px;
        color: #fff;
        border-color: #fff;
    }

    h1.post-title {
        font-size: 3.2rem;
        font-weight: 400; /* Leichter für Eleganz */
        margin: 0 0 1.5rem;
        line-height: 1.2;
        color: #ffffff;
        font-family: 'Garamond', 'Times New Roman', serif; 
        text-shadow: 0 4px 15px rgba(0,0,0,0.8);
    }

    /* --- CONTENT STYLING --- */
    .entry-content { 
        font-size: 1.25rem; 
        line-height: 1.9; 
        color: #e2e8f0; 
        font-weight: 300; 
    }
    
    /* Headlines im Text */
    .entry-content h2 { 
        color: #d8b4fe; /* Lavender */
        font-family: 'Garamond', 'Times New Roman', serif;
        font-size: 2.2rem; 
        margin-top: 3.5rem; 
        margin-bottom: 1.5rem; 
        font-weight: 500; 
        text-align: center; 
        text-shadow: 0 0 10px rgba(167, 139, 250, 0.4);
        position: relative;
    }
    /* Dekorative Sterne um H2 */
    .entry-content h2::before { content: '✦ '; color: #fbbf24; }
    .entry-content h2::after { content: ' ✦'; color: #fbbf24; }

    .entry-content h3 { 
        color: #fbbf24; /* Gold */
        font-size: 1.5rem; 
        margin-top: 2.5rem; 
        margin-bottom: 1rem;
        font-weight: 600; 
        letter-spacing: 1px;
        text-transform: uppercase;
        border-bottom: 1px solid rgba(251, 191, 36, 0.3);
        display: inline-block;
        padding-bottom: 5px;
    }
    
    .entry-content p { margin-bottom: 1.8rem; }

    /* Zitate / Wisdom Blocks */
    .entry-content blockquote {
        border: 1px solid rgba(167, 139, 250, 0.3);
        padding: 2.5rem;
        margin: 3rem 0;
        font-style: italic;
        text-align: center;
        color: #e9d5ff; /* Very Light Purple */
        background: linear-gradient(135deg, rgba(49, 46, 129, 0.3), rgba(15, 23, 42, 0.3));
        font-weight: 500;
        font-size: 1.4rem;
        border-radius: 12px;
        box-shadow: inset 0 0 30px rgba(0,0,0,0.5);
    }
    .entry-content blockquote::before { content: '„'; font-size: 3rem; color: #fbbf24; display: block; line-height: 0.5; margin-bottom: 10px; }

    /* Listen (Sterne) */
    .entry-content ul, .entry-content ol {
        background: rgba(255,255,255,0.03);
        padding: 2rem 2rem 2rem 4rem;
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.05);
    }
    .entry-content ul li { margin-bottom: 12px; position: relative; }
    .entry-content ul li::marker { content: '✨ '; color: #fbbf24; }

    /* Links im Text (Golden Glow) */
    .entry-content a {
        color: #fbbf24;
        text-decoration: none;
        border-bottom: 1px dotted #fbbf24;
        transition: all 0.3s;
        font-weight: 600;
    }
    .entry-content a:hover { 
        text-shadow: 0 0 10px #fbbf24; 
        border-bottom: 1px solid #fbbf24; 
        color: #fff; 
    }

    /* Bilderrahmen (Mystic Orb Style) */
    .entry-content img {
        max-width: 100%; height: auto; display: block; margin: 4rem auto;
        /* Sehr runde Ecken oben für Portal-Look */
        border-radius: 200px 200px 12px 12px; 
        box-shadow: 0 0 50px rgba(124, 58, 237, 0.3);
        border: 1px solid rgba(255,255,255,0.15);
        filter: contrast(1.1) saturate(1.1);
    }

    /* --- ASTRO/SPIRITUAL BOX --- */
    .harm-reduction-box {
        margin-top: 4rem;
        background: linear-gradient(135deg, rgba(88, 28, 135, 0.4), rgba(15, 23, 42, 0.6));
        border: 1px solid #a78bfa;
        border-radius: 16px;
        padding: 2rem;
        display: flex;
        gap: 1.5rem;
        align-items: center;
        text-align: left;
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.15);
    }
    .warning-emoji { font-size: 3rem; filter: drop-shadow(0 0 10px #a78bfa); }
    .warning-text h4 { color: #e9d5ff; margin: 0 0 0.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; }
    .warning-text p { margin: 0; font-size: 1rem; color: #cbd5e1; font-style: italic; }

    /* --- AUTHOR BOX --- */
    .author-box { 
        display: flex; 
        align-items: center; 
        flex-direction: column;
        text-align: center;
        gap: 1.5rem; 
        margin-top: 5rem; 
        padding-top: 3rem; 
        border-top: 1px solid rgba(255,255,255,0.1); 
    }
    .author-avatar img { 
        width: 130px; height: 130px; 
        border-radius: 50%; 
        border: 2px solid #fbbf24; 
        padding: 5px;
        background: rgba(15, 23, 42, 0.8);
        object-fit: cover; 
        box-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
    }
    .author-content h3 { 
        margin: 0 0 0.5rem; 
        font-size: 1.8rem; 
        color: #ffffff;
        font-family: 'Garamond', serif;
        text-shadow: 0 0 10px rgba(255,255,255,0.5);
    }
    .author-content p { font-size: 1.1rem; color: #cbd5e1; margin-bottom: 1.5rem; max-width: 600px; line-height: 1.6; }
    .author-link { 
        display: inline-block; 
        color: #fbbf24; text-decoration: none; 
        font-size: 0.85rem; text-transform: uppercase; letter-spacing: 3px; 
        border: 1px solid #fbbf24; padding: 12px 30px; border-radius: 50px; 
        transition: all 0.3s; font-weight: 700;
    }
    .author-link:hover { background: #fbbf24; color: #1e1b4b; box-shadow: 0 0 25px rgba(251, 191, 36, 0.6); }

    /* --- TAGS (MYSTIC STYLE) --- */
    .science-tags-container {
        margin-top: 4rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255,255,255,0.1);
        text-align: center;
    }
    .science-tags-title {
        font-size: 0.9rem;
        text-transform: uppercase;
        color: #a78bfa;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
        font-weight: 700;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .tag-cloud {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }
    .science-tag {
        display: inline-block;
        background: rgba(139, 92, 246, 0.1);
        color: #e9d5ff;
        border: 1px solid rgba(139, 92, 246, 0.3);
        padding: 8px 18px;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
        font-family: 'Garamond', serif;
        letter-spacing: 0.5px;
    }
    .science-tag:hover {
        background: #7c3aed;
        color: #fff;
        border-color: #7c3aed;
        box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
        transform: translateY(-3px);
    }

    /* --- RELATED POSTS (MYSTIC STYLE) --- */
    .related-posts-section {
        margin-top: 5rem;
    }
    .related-title {
        font-size: 1.4rem;
        color: #fbbf24;
        text-align: center;
        margin-bottom: 2.5rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-family: 'Garamond', serif;
        text-shadow: 0 0 10px rgba(251, 191, 36, 0.4);
        position: relative;
        display: block;
    }
    /* Zierlinien neben Titel */
    .related-title::before, .related-title::after {
        content: ''; display: inline-block; width: 40px; height: 1px; background: #fbbf24; vertical-align: middle; margin: 0 15px; opacity: 0.6;
    }
    
    .related-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    .related-card {
        background: rgba(30, 41, 59, 0.6);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 16px;
        overflow: hidden;
        text-decoration: none;
        transition: all 0.4s ease;
        display: flex;
        flex-direction: column;
        position: relative;
    }
    .related-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
        border-color: #a78bfa;
        background: rgba(30, 41, 59, 0.8);
    }
    .related-thumb {
        height: 160px;
        background: #020617;
        overflow: hidden;
        position: relative;
    }
    /* Mystic Overlay für Thumbs */
    .related-thumb::after {
        content: ''; position: absolute; top:0; left:0; width:100%; height:100%;
        background: linear-gradient(0deg, rgba(15, 23, 42, 0.8) 0%, transparent 100%);
    }
    .related-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s;
        filter: contrast(1.2) sepia(0.3) hue-rotate(200deg);
    }
    .related-card:hover .related-thumb img {
        transform: scale(1.1);
        filter: contrast(1.1) sepia(0);
    }
    .related-content {
        padding: 1.5rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .related-cat {
        font-size: 0.65rem;
        color: #a78bfa;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }
    .related-name {
        font-size: 1.1rem;
        font-weight: 500;
        color: #fff;
        line-height: 1.4;
        margin: 0;
        font-family: 'Garamond', serif;
    }
    .related-arrow {
        margin-top: 1.5rem;
        color: #fbbf24;
        font-size: 1.5rem;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s;
    }
    .related-card:hover .related-arrow {
        opacity: 1;
        transform: translateY(0);
    }

    /* --- CATEGORY BUTTON --- */
    .cat-section { text-align: center; margin: 4rem 0; }
    .cat-btn { 
        display: inline-block; 
        background: transparent; 
        color: #e9d5ff; 
        padding: 12px 35px; 
        border-radius: 50px; 
        text-decoration: none; 
        font-size: 0.9rem;
        transition: all 0.3s; 
        border: 1px solid #e9d5ff;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
    .cat-btn:hover { 
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        box-shadow: 0 0 30px rgba(233, 213, 255, 0.4);
        border-color: #fff;
    }

    /* --- SOCIAL GRID (MYSTIC) --- */
    .social-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 1.5rem; margin-top: 4rem; }
    .social-card { 
        display: flex; flex-direction: column; align-items: center; justify-content: center; 
        padding: 2rem 1rem; 
        background: rgba(255, 255, 255, 0.03); 
        border-radius: 16px; 
        text-decoration: none; 
        transition: all 0.4s ease; 
        border: 1px solid rgba(255,255,255,0.1); 
        text-align: center; 
    }
    .social-card:hover { 
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-5px); 
        box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
        border-color: #a78bfa;
    }
    .social-icon { width: 32px; height: 32px; margin-bottom: 0.8rem; color: #c4b5fd; transition: transform 0.3s; }
    .social-card:hover .social-icon { transform: scale(1.2) rotate(10deg); color: #fbbf24; text-shadow: 0 0 15px #fbbf24; }
    .social-name { font-weight: 600; font-size: 0.85rem; color: #ffffff; letter-spacing: 1px; text-transform: uppercase; }
    .social-handle { font-size: 0.7rem; color: #94a3b8; margin-top: 4px; font-family: monospace; }

    /* --- FLOATING HACK-THE-ALGO WIDGET (Mystic Edition & Optimized) --- */
    .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(15px);
        -webkit-backdrop-filter: blur(15px);
        
        border-radius: 20px;
        border: 1px solid rgba(167, 139, 250, 0.4);
        box-shadow: 0 0 40px rgba(124, 58, 237, 0.25);
        transition: transform 0.3s ease;
        
        width: auto;
        min-width: 140px;
        padding: 0; 
        overflow: hidden; 
    }

    .algo-hack-widget:hover {
        transform: translateY(-50%) scale(1.02);
        background: rgba(30, 27, 75, 0.98);
        border-color: #fbbf24;
    }

    /* Der Header Balken */
    .algo-head {
        background: linear-gradient(135deg, #4338ca 0%, #312e81 100%);
        color: #fbbf24; /* Gold */
        font-size: 0.75rem;
        font-weight: 800;
        text-transform: uppercase;
        padding: 12px;
        text-align: center;
        letter-spacing: 1px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        cursor: default;
        width: 100%;
        display: block;
        border-bottom: 1px solid rgba(251, 191, 36, 0.2);
    }
    
    .algo-buttons-group {
        padding: 15px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        justify-items: center;
    }

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

    .algo-share-btn:hover {
        transform: scale(1.15);
        background: rgba(255, 255, 255, 0.15);
        color: #fbbf24;
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
        border-color: #fbbf24;
    }

    /* 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; }
    
    .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;
    }
    
    .asb-tiktok:hover {
        color: #000;
        background: #fff;
        border-color: #fff;
    }
    
    .asb-copy:hover { color: #a78bfa; border-color: #a78bfa; }

    /* MOBILE OPTIMIERUNG */
    @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: 16px;
            display: block; 
            padding: 0;
            background: rgba(10, 10, 35, 0.98);
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(251, 191, 36, 0.3);
        }

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

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

        .algo-buttons-group {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            overflow-x: auto;
            gap: 15px;
            padding: 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: 46px;
            height: 46px;
            font-size: 1.3rem;
            flex-shrink: 0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.4);
        }
    }

    @media (max-width: 768px) {
        .glass-card { margin: 0; padding: 2.5rem 1.5rem; border-radius: 0; border: none; background: rgba(10, 10, 30, 0.96); box-shadow: none; }
        h1.post-title { font-size: 2.4rem; }
        .author-box { margin-top: 4rem; }
        .social-grid { grid-template-columns: repeat(2, 1fr); }
        .related-grid { grid-template-columns: 1fr; }
    }

/* Widget Container Dark Cosmic */
                .neelix-donation-wrapper {
                    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
                    max-width: 100%;
                    margin: 80px 0 40px;
                    background: rgba(10, 10, 35, 0.95); /* Fast undurchsichtig */
                    border-radius: 16px;
                    box-shadow: 0 0 50px rgba(124, 58, 237, 0.25);
                    border: 1px solid rgba(139, 92, 246, 0.5);
                    overflow: hidden;
                    position: relative;
                    color: #ffffff;
                    z-index: 1;
                }

                /* Ticker (Violett/Gold) */
                .donation-ticker-bar {
                    background: linear-gradient(90deg, #4c1d95 0%, #312e81 100%);
                    color: #fbbf24; /* Gold Text */
                    padding: 12px 0;
                    overflow: hidden;
                    position: relative;
                    font-size: 0.95rem;
                    font-weight: 700;
                    letter-spacing: 1px;
                    border-bottom: 1px solid rgba(251, 191, 36, 0.4);
                }
                .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: rgba(30, 41, 59, 0.7);
                    border-right: 1px solid rgba(255,255,255,0.15);
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                }

                .info-badge {
                    display: inline-block;
                    background: rgba(139, 92, 246, 0.3);
                    color: #e9d5ff;
                    padding: 5px 12px;
                    border-radius: 50px;
                    font-size: 0.75em;
                    font-weight: 700;
                    text-transform: uppercase;
                    margin-bottom: 15px;
                    border: 1px solid rgba(139, 92, 246, 0.6);
                }

                .info-title {
                    margin: 0 0 15px;
                    font-size: 1.8rem;
                    line-height: 1.2;
                    font-weight: 500;
                    font-family: 'Garamond', serif;
                    color: #fff;
                    text-shadow: 0 0 10px rgba(167, 139, 250, 0.6);
                }

                .info-text {
                    font-size: 1rem;
                    line-height: 1.7;
                    color: #e2e8f0; /* Sehr helles Grau */
                    margin-bottom: 25px;
                }

                /* Share Box Mystic */
                .share-box {
                    background: rgba(15, 23, 42, 0.95);
                    border: 1px solid rgba(255,255,255,0.2);
                    border-radius: 12px;
                    padding: 20px;
                    margin-top: auto;
                }
                
                .share-title { font-size: 0.9rem; font-weight: 700; color: #d8b4fe; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; }
                .share-subtitle { font-size: 0.85rem; color: #cbd5e1; margin-bottom: 15px; }
                .share-btn {
                    display: flex; align-items: center; justify-content: center; gap: 8px;
                    padding: 10px; border-radius: 6px; text-decoration: none;
                    font-size: 0.85rem; font-weight: 700; color: white;
                    transition: transform 0.2s; border: none; cursor: pointer;
                }
                .share-btn:hover { transform: translateY(-2px); color: white; box-shadow: 0 0 15px rgba(255,255,255,0.2); }
                .sb-whatsapp { background: #25D366; opacity: 0.9; }
                .sb-facebook { background: #1877F2; opacity: 0.9; }
                .sb-twitter { background: #000000; opacity: 0.9; border: 1px solid #333; }
                .sb-email { background: #4c1d95; opacity: 1; }
                /* Reddit für Mystic Dark */
                .sb-reddit { background: #FF4500; opacity: 0.9; }

                /* Rechte Spalte: Payment */
                .col-payment { padding: 40px; background: rgba(2, 6, 23, 0.8); }

                .pay-title { text-align: center; font-weight: 500; font-size: 1.4rem; margin-bottom: 25px; color: #fff; font-family: 'Garamond', serif; }
                .amt-btn {
                    flex: 0 0 auto;
                    padding: 10px 20px;
                    border: 1px solid rgba(255,255,255,0.2);
                    background: rgba(30, 41, 59, 0.7);
                    border-radius: 50px;
                    font-weight: 700;
                    font-size: 1rem;
                    color: #e2e8f0;
                    cursor: pointer;
                    transition: all 0.3s;
                }
                .amt-btn:hover, .amt-btn.active {
                    border-color: #fbbf24;
                    background: rgba(251, 191, 36, 0.2);
                    color: #fbbf24;
                    transform: translateY(-2px);
                    box-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
                }

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

                /* Main Button (Gold/Purple Mystic) */
                .main-pay-btn {
                    width: 100%;
                    padding: 16px;
                    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
                    color: #312e81; /* Dunkler Text auf Gold */
                    border: none;
                    border-radius: 12px;
                    font-weight: 800;
                    font-size: 1.1rem;
                    cursor: pointer;
                    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
                    transition: transform 0.3s;
                    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 35px rgba(251, 191, 36, 0.7); }

                /* Crypto Buttons */
                .cry-btn {
                    padding: 6px 12px;
                    font-size: 0.8rem;
                    background: rgba(255,255,255,0.1);
                    color: #e2e8f0;
                    border-radius: 6px;
                    border: 1px solid rgba(255,255,255,0.2);
                    cursor: pointer;
                    font-weight: 700;
                    transition: background 0.2s;
                }
                .cry-btn:hover { background: rgba(255,255,255,0.25); color: #fff; }

                .moonpay-link {
                    display: block; text-align: center; margin-top: 15px;
                    font-size: 0.8rem; color: #d8b4fe; text-decoration: none; font-weight: 600;
                }
                .moonpay-link:hover { text-decoration: underline; color: #fff; }

                /* Modals (Dark Mystic) */
                .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.95);
                    z-index: 9999999 !important;
                    justify-content: center; align-items: center;
                    backdrop-filter: blur(15px);
                }
                .nlx-modal-box {
                    background: #1e1b4b; /* Dark Indigo */
                    padding: 30px; border-radius: 16px;
                    width: 90%; max-width: 450px; position: relative;
                    box-shadow: 0 0 60px rgba(139, 92, 246, 0.4);
                    text-align: left; color: #f1f5f9;
                    border: 1px solid rgba(139, 92, 246, 0.4);
                }

                .nlx-close { position: absolute; top: 15px; right: 20px; font-size: 28px; cursor: pointer; color: #94a3b8; line-height: 1; }
                .nlx-close:hover { color: #fff; }

                .nlx-copy-btn {
                    background: #fbbf24; color: #312e81; border: none; width: 100%;
                    padding: 12px; border-radius: 8px; margin-top: 20px; font-weight: bold; cursor: pointer;
                }
                .nlx-copy-btn:hover { background: #f59e0b; }
                .cs-btn {
                    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 10px;
                    border-radius: 8px; cursor: pointer; font-size: 0.9rem; font-weight: 600; color: #f1f5f9;
                }
                .cs-btn:hover { background: rgba(255,255,255,0.2); border-color: #a78bfa; }

                /* Confirmation/Message Modals for Dark Theme */
                .nlx-modal-text { font-size: 1.1rem; line-height: 1.6; margin-bottom: 20px; color: #e2e8f0; }
                .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: #fbbf24; color: #312e81; border: none; }
                .nlx-confirm-btn:hover { background: #f59e0b; }
                .nlx-cancel-btn { background: rgba(255,255,255,0.1); color: #cbd5e1; border: 1px solid rgba(255,255,255,0.2); }
                .nlx-cancel-btn:hover { background: rgba(255,255,255,0.2); color: #fff; }

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