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

/* =========================================
       1. HAUPT-LAYOUT (CLEAN STEEL / STOIC STYLE)
       ========================================= */
    .men-wrapper {
        margin: 0;
        padding: 0;
        width: 100%;
        min-height: 100vh;
        /* Klares, helles Design (Wie ein frischer Morgen) */
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        overflow-x: hidden;
        position: relative;
        color: #1e293b; /* Slate 800 - Starker Kontrast */
    }

    /* --- SCHWEBENDE EMOJIS (Kraft & Fokus) --- */
    .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;
        /* Kühler Filter: Entsättigt + Blau-Stich */
        filter: grayscale(80%) sepia(20%) hue-rotate(180deg);
    }

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

    /* --- CARD CONTAINER (STRUCTURED) --- */
    .glass-card {
        position: relative;
        z-index: 10;
        max-width: 900px;
        margin: 0 auto 3rem;
        padding: 3.5rem;
        background: #ffffff;
        /* Klare Kanten, fester Schatten */
        border-radius: 4px; /* Minimal Radius */
        border: 1px solid #cbd5e1; /* Slate Border */
        box-shadow: 0 10px 30px -5px rgba(30, 41, 59, 0.15);
    }
    
    /* Akzent-Balken links (Blau) */
    .glass-card::before {
        content: '';
        position: absolute; top: 0; bottom: 0; left: 0; width: 6px;
        background: #0ea5e9; /* Sky Blue */
        border-radius: 4px 0 0 4px;
    }

    /* --- TYPOGRAFIE & HEADER --- */
    a.men-badge {
        display: inline-block;
        background: #f1f5f9; /* Slate 100 */
        color: #0f172a; /* Slate 900 */
        padding: 8px 20px;
        border-radius: 2px;
        font-size: 0.8rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 1.5rem;
        text-decoration: none;
        border-left: 3px solid #0ea5e9;
        transition: all 0.2s;
        font-family: 'Roboto Mono', monospace;
    }
    a.men-badge:hover { 
        background: #0f172a; 
        color: #fff; 
        transform: translateX(5px);
    }

    h1.post-title {
        font-size: 3rem;
        font-weight: 900;
        margin: 0 0 1.5rem;
        line-height: 1.1;
        color: #0f172a;
        letter-spacing: -1px;
        text-transform: none; /* Natürlich lassen */
    }

    /* --- CONTENT STYLING --- */
    .entry-content { font-size: 1.2rem; line-height: 1.8; color: #334155; }
    
    /* Headlines (Klar & Direkt) */
    .entry-content h2 { 
        color: #0369a1; /* Strong Blue */
        font-size: 1.9rem; 
        margin-top: 3.5rem; 
        margin-bottom: 1.5rem; 
        font-weight: 800; 
        border-bottom: 2px solid #e2e8f0;
        padding-bottom: 10px;
    }

    .entry-content h3 { color: #1e293b; font-size: 1.45rem; margin-top: 2rem; font-weight: 700; }
    .entry-content p { margin-bottom: 1.5rem; }
    
    /* Zitate (Stoic Wisdom) */
    .entry-content blockquote {
        border-left: 4px solid #64748b; /* Slate Grey */
        background: #f8fafc;
        padding: 2rem;
        margin: 3rem 0;
        font-size: 1.25rem;
        font-weight: 600;
        color: #1e293b;
        font-style: normal; /* Geradlinig, nicht kursiv */
    }

    /* Listen (Checklisten Style) */
    .entry-content ul, .entry-content ol { 
        background: #f1f5f9; 
        padding: 1.5rem 1.5rem 1.5rem 3rem; 
        margin-bottom: 1.5rem; 
        border: 1px solid #e2e8f0;
        border-radius: 2px; 
    }
    .entry-content ul li { margin-bottom: 8px; font-weight: 500; }
    .entry-content ul li::marker { color: #0ea5e9; font-weight: bold; }

    /* Links im Text */
    .entry-content a {
        color: #0284c7;
        text-decoration: none;
        border-bottom: 2px solid #bae6fd;
        transition: all 0.2s;
        font-weight: 700;
    }
    .entry-content a:hover { background: #e0f2fe; color: #075985; border-bottom-color: #0284c7; }

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

    /* --- REAL TALK BOX --- */
    .harm-reduction-box {
        margin-top: 4rem;
        background: #f0f9ff; /* Very Light Blue */
        border: 1px solid #0ea5e9;
        border-radius: 2px;
        padding: 2rem;
        display: flex;
        gap: 1.5rem;
        align-items: center;
    }
    .warning-emoji { font-size: 2.5rem; }
    .warning-text h4 { color: #0369a1; 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: #0c4a6e; }

    /* --- AUTHOR BOX --- */
    .author-box { 
        display: flex; 
        align-items: flex-start; 
        gap: 2rem; 
        margin-top: 5rem; 
        padding-top: 3rem; 
        border-top: 2px solid #e2e8f0; 
    }
    .author-avatar img { 
        width: 100px; height: 100px; 
        border-radius: 2px; /* Eckig = Maskuliner Touch */
        border: 2px solid #334155; 
        object-fit: cover; 
    }
    .author-content h3 { 
        margin: 0 0 0.5rem; 
        font-size: 1.5rem; 
        color: #0f172a;
    }
    .author-content p { font-size: 0.95rem; color: #475569; margin-bottom: 1.5rem; line-height: 1.6; }
    .author-link { 
        display: inline-block; 
        color: #0f172a; text-decoration: none; 
        font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 800;
        border-bottom: 3px solid #0ea5e9; transition: all 0.2s; padding-bottom: 2px;
    }
    .author-link:hover { background: #0ea5e9; color: white; border-bottom-color: #0ea5e9; padding: 2px 5px; }

    /* --- TAGS (STOIC STYLE) --- */
    .science-tags-container {
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid #e2e8f0;
    }
    .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: #f1f5f9; /* Slate Light */
        color: #334155;
        border: 1px solid #cbd5e1;
        padding: 6px 14px;
        border-radius: 2px; /* Stoic edges */
        font-size: 0.85rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s ease;
        font-family: 'Roboto Mono', monospace;
    }
    .science-tag:hover {
        background: #0ea5e9; /* Blue */
        color: white;
        border-color: #0ea5e9;
        transform: translateY(-2px);
    }

    /* --- RELATED POSTS (STOIC STYLE) --- */
    .related-posts-section {
        margin-top: 4rem;
    }
    .related-title {
        font-size: 1.2rem;
        color: #0f172a;
        border-left: 4px solid #0ea5e9;
        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 #cbd5e1;
        border-radius: 2px;
        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(15, 23, 42, 0.15);
        border-color: #0ea5e9;
    }
    .related-thumb {
        height: 140px;
        background: #f1f5f9;
        overflow: hidden;
    }
    .related-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
        filter: grayscale(40%);
    }
    .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: #0369a1;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
        font-family: 'Roboto Mono', monospace;
    }
    .related-name {
        font-size: 1rem;
        font-weight: 700;
        color: #0f172a;
        line-height: 1.4;
        margin: 0;
    }
    .related-arrow {
        margin-top: auto;
        padding-top: 1rem;
        color: #0ea5e9;
        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: #334155; 
        padding: 12px 35px; 
        border-radius: 2px; 
        text-decoration: none; 
        font-size: 0.9rem;
        transition: all 0.3s; 
        border: 2px solid #cbd5e1;
        font-weight: 700;
        text-transform: uppercase;
        font-family: 'Roboto Mono', monospace;
    }
    .cat-btn:hover { 
        background: #334155;
        color: white;
        border-color: #334155;
        box-shadow: 0 5px 15px rgba(51, 65, 85, 0.3);
    }

    /* --- SOCIAL GRID (CLEAN/STEEL) --- */
    .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: #f8fafc; 
        border-radius: 2px; 
        text-decoration: none; 
        transition: all 0.2s ease; 
        border: 1px solid #e2e8f0; 
        text-align: center; 
    }
    .social-card:hover { 
        transform: translateY(-3px); 
        border-color: #0ea5e9;
        background: white;
        box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15);
    }
    .social-icon { width: 28px; height: 28px; margin-bottom: 0.5rem; color: #64748b; transition: transform 0.2s; }
    .social-card:hover .social-icon { transform: scale(1.1); color: #0ea5e9; }
    .social-name { font-weight: 700; font-size: 0.8rem; color: #1e293b; text-transform: uppercase; letter-spacing: 0.5px; }
    .social-handle { font-size: 0.65rem; color: #94a3b8; margin-top: 4px; }

    /* --- FLOATING HACK-THE-ALGO WIDGET (STEEL BLUE) --- */
    .algo-hack-widget {
        position: fixed;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1000;
        
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        
        border-radius: 2px; /* Eckig */
        border: 2px solid #0ea5e9;
        box-shadow: 0 10px 30px rgba(14, 165, 233, 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);
        border-color: #0369a1;
    }

    /* Der Header Balken */
    .algo-head {
        background: linear-gradient(135deg, #0369a1 0%, #0ea5e9 100%);
        color: white;
        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: 2px; /* Leichte Kanten */
        display: flex;
        align-items: center;
        justify-content: center;
        background: white;
        border: 1px solid rgba(0,0,0,0.1);
        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.2rem;
        flex-shrink: 0;
    }

    .algo-share-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 5px 15px rgba(14, 165, 233, 0.2);
        border-color: #0ea5e9;
        color: #0369a1;
    }

    /* 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: white;
        background: #000;
        border-color: #000;
    }
    
    .asb-copy:hover { color: #0ea5e9; border-color: #0ea5e9; }
    
    @keyframes pulse-blue {
        0% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4); }
        70% { box-shadow: 0 0 0 10px rgba(14, 165, 233, 0); }
        100% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0); }
    }

    /* MOBILE OPTIMIERUNG (SWIPE SLIDER) */
    @media (max-width: 1000px) {
        .algo-hack-widget {
            top: auto;
            bottom: 20px;
            left: 50%;
            right: auto;
            transform: translateX(-50%);
            width: 92%; 
            max-width: 420px;
            min-width: auto;
            border-radius: 2px;
            display: block; 
            padding: 0;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

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

        .algo-head {
            border-radius: 2px 2px 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-left: 5px solid #0ea5e9; border-top: none; }
        .glass-card::before { display: none; }
        h1.post-title { font-size: 2.3rem; }
        .author-box { flex-direction: column; text-align: center; }
        .social-grid { grid-template-columns: repeat(2, 1fr); }
        .related-grid { grid-template-columns: 1fr; }
    }

/* Widget Container Men */
                .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: 4px;
                    box-shadow: 0 10px 40px rgba(30, 41, 59, 0.1);
                    border: 1px solid #cbd5e1;
                    overflow: hidden;
                    position: relative;
                    color: #1e293b;
                    z-index: 1;
                }

                /* Ticker (Steel Gradient) */
                .donation-ticker-bar {
                    background: linear-gradient(90deg, #334155 0%, #475569 100%);
                    color: #e2e8f0;
                    padding: 12px 0;
                    overflow: hidden;
                    position: relative;
                    font-size: 0.85rem;
                    font-weight: 700;
                    letter-spacing: 2px;
                    text-transform: uppercase;
                    font-family: 'Roboto Mono', monospace;
                }
                .ticker-content {
                    display: inline-block;
                    white-space: nowrap;
                    animation: ticker-scroll 45s 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: #f8fafc; /* Slate 50 */
                    border-right: 1px solid #e2e8f0;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                }

                .info-badge {
                    display: inline-block;
                    background: #e2e8f0;
                    color: #334155;
                    padding: 5px 12px;
                    border-radius: 2px;
                    font-size: 0.7em;
                    font-weight: 800;
                    text-transform: uppercase;
                    margin-bottom: 15px;
                    border: 1px solid #94a3b8;
                    letter-spacing: 1px;
                    font-family: 'Roboto Mono', monospace;
                }

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

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

                /* Share Box */
                .share-box {
                    background: white;
                    border: 1px solid #cbd5e1;
                    border-radius: 4px;
                    padding: 20px;
                    margin-top: auto;
                    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
                }
                
                .share-title { font-size: 0.85rem; font-weight: 700; color: #334155; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px; }
                .share-subtitle { font-size: 0.8rem; 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.85rem; 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: #334155; }
                /* Reddit */
                .sb-reddit { background: #FF4500; }

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

                .pay-title { text-align: center; font-weight: 800; font-size: 1.3rem; margin-bottom: 25px; color: #0f172a; text-transform: uppercase; letter-spacing: 1px; }
                .amt-btn {
                    flex: 0 0 auto;
                    padding: 10px 20px;
                    border: 1px solid #cbd5e1;
                    background: #f1f5f9;
                    border-radius: 2px;
                    font-weight: 700;
                    font-size: 1rem;
                    color: #334155;
                    cursor: pointer;
                    transition: all 0.2s;
                    font-family: 'Roboto Mono', monospace;
                }
                .amt-btn:hover, .amt-btn.active {
                    border-color: #0f172a;
                    background: #0f172a;
                    color: white;
                    transform: translateY(-2px);
                    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.2);
                }

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

                /* Main Button (Steel Gradient) */
                .main-pay-btn {
                    width: 100%;
                    padding: 16px;
                    background: linear-gradient(135deg, #334155 0%, #475569 100%);
                    color: white;
                    border: none;
                    border-radius: 2px;
                    font-weight: 800;
                    font-size: 1.1rem;
                    cursor: pointer;
                    box-shadow: 0 8px 20px rgba(51, 65, 85, 0.25);
                    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); }

                /* Crypto Buttons */
                .cry-btn {
                    padding: 6px 12px;
                    font-size: 0.8rem;
                    background: #f1f5f9;
                    color: #64748b;
                    border-radius: 2px;
                    border: 1px solid #cbd5e1;
                    cursor: pointer;
                    font-weight: 600;
                    transition: background 0.2s;
                    text-transform: uppercase;
                }
                .cry-btn:hover { background: #e2e8f0; color: #0f172a; border-color: #334155; }

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

                /* Modals (Clean Steel) */
                .nlx-modal-overlay {
                    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
                    width: 100%; height: 100%;
                    background: rgba(15, 23, 42, 0.7); /* Slate Tint */
                    z-index: 9999999 !important;
                    justify-content: center; align-items: center;
                    backdrop-filter: blur(5px);
                }
                .nlx-modal-box {
                    background: #ffffff;
                    padding: 30px; border-radius: 4px;
                    width: 90%; max-width: 450px; position: relative;
                    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.2);
                    text-align: left; color: #1e293b;
                    border: 1px solid #94a3b8;
                }

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

                .nlx-copy-btn {
                    background: #0f172a; color: white; 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: #1e293b; }
                .cs-btn {
                    background: #f8fafc; border: 1px solid #cbd5e1; padding: 10px;
                    border-radius: 2px; cursor: pointer; font-size: 0.9rem; font-weight: 600; color: #334155;
                }
                .cs-btn:hover { background: #f1f5f9; border-color: #334155; }

                /* Confirmation/Message Modals for Men 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: 2px; font-weight: 700; cursor: pointer; transition: background 0.2s;
                    flex-grow: 1; max-width: 150px; text-transform: uppercase;
                }
                .nlx-confirm-btn { background: #334155; color: white; border: none; }
                .nlx-confirm-btn:hover { background: #1e293b; }
                .nlx-cancel-btn { background: #f1f5f9; color: #64748b; border: 1px solid #cbd5e1; }
                .nlx-cancel-btn:hover { background: #e2e8f0; color: #334155; }

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