    /* --- 0. APP-MODUS (Header/Footer ausblenden) --- */
    /* Dieser Block blendet das normale Menü und den Footer aus,
       damit es wie eine echte App aussieht. 
       Lösche diesen Block, wenn du das Menü sehen willst.
    */
    header, #masthead, .site-header,
    footer, #colophon, .site-footer,
    .breadcrumbs, .page-header {
        display: none !important;
    }

    /* --- 1. PERFORMANCE OPTIMIZED SETUP --- */
    .linktree-bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: -1; /* Liegt jetzt sauber HINTER allem */
        /* Performanterer Verlauf */
        background: radial-gradient(circle at top right, #1e1b4b, #0f172a);
        background: linear-gradient(180deg, #0f172a 0%, #1e1b4b 100%);
    }
    
    /* Dezenter Schein */
    .linktree-bg::before {
        content: '';
        position: absolute;
        top: -20%;
        right: -10%;
        width: 60%;
        height: 60%;
        background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .linktree-bg::after {
        content: '';
        position: absolute;
        bottom: -10%;
        left: -10%;
        width: 70%;
        height: 50%;
        background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    /* --- 2. CONTAINER --- */
    .linktree-content {
        position: relative;
        z-index: 10;
        width: 100%;
        max-width: 500px; /* Optimal für Mobile/Linktree */
        margin: 0 auto;
        padding: 3rem 1.5rem 6rem; /* Genug Platz unten */
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        color: #ffffff;
    }

    /* --- 3. COMPACT PROFILE HEADER --- */
    .profile-header {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .avatar {
        width: 110px;
        height: 110px;
        margin: 0 auto 1rem;
        background: linear-gradient(135deg, #6366f1, #ec4899);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        font-weight: 800;
        border: 4px solid rgba(255,255,255,0.1);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

    .profile-name {
        font-size: 1.8rem;
        font-weight: 800;
        margin: 0 0 0.5rem 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .verified {
        color: #3b82f6;
        font-size: 1.2rem;
    }

    .profile-bio {
        font-size: 1rem;
        color: rgba(255,255,255,0.7);
        line-height: 1.5;
    }

    /* --- 4. FEATURED LINKS (Große Buttons) --- */
    .section-title {
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: rgba(255,255,255,0.4);
        margin: 2rem 0 1rem;
        font-weight: 700;
        text-align: center;
    }

    .link-card {
        display: flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: 16px;
        margin-bottom: 1rem;
        text-decoration: none;
        color: #fff;
        transition: transform 0.2s, background 0.2s;
        backdrop-filter: blur(10px);
    }

    .link-card:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-3px);
    }

    .link-card.highlight {
        background: linear-gradient(90deg, rgba(99, 102, 241, 0.15), rgba(236, 72, 153, 0.15));
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15);
    }

    .card-icon {
        width: 48px;
        height: 48px;
        background: rgba(255,255,255,0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .card-text {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .card-title {
        font-weight: 700;
        font-size: 1.05rem;
        margin-bottom: 2px;
    }

    .card-sub {
        font-size: 0.85rem;
        color: rgba(255,255,255,0.6);
    }

    .card-arrow {
        opacity: 0.5;
        font-size: 1.2rem;
    }

    /* --- 5. SOCIAL GRID (Kompakt 2-Spaltig) --- */
    .social-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .social-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        padding: 1.2rem 1rem;
        text-decoration: none;
        color: #fff;
        transition: all 0.2s;
        text-align: center;
    }

    .social-btn:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-2px);
    }

    .social-icon {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .social-label {
        font-size: 0.9rem;
        font-weight: 600;
        color: rgba(255,255,255,0.9);
    }

    .social-sub {
        font-size: 0.75rem;
        color: rgba(255,255,255,0.5);
    }

    /* --- 6. MESSENGER ROW (Ganz unten) --- */
    .messenger-row {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .messenger-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(255,255,255,0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        text-decoration: none;
        color: rgba(255,255,255,0.8);
        transition: all 0.2s;
        border: 1px solid rgba(255,255,255,0.1);
    }

    .messenger-icon:hover {
        background: rgba(255,255,255,0.15);
        transform: scale(1.1);
        color: #fff;
    }

    /* Platform Colors on Hover/Highlight */
    .social-btn.insta:hover .social-icon { color: #e1306c; }
    .social-btn.tiktok:hover .social-icon { text-shadow: 2px 2px 0px rgba(255,0,0,0.5), -2px -2px 0px rgba(0,255,255,0.5); }
    .social-btn.linkedin:hover .social-icon { color: #0077b5; }
    .social-btn.youtube:hover .social-icon { color: #ff0000; }
    .social-btn.twitter:hover .social-icon { color: #1da1f2; }
    .social-btn.facebook:hover .social-icon { color: #1877f2; }

    /* Footer */
    .linktree-footer {
        text-align: center;
        margin-top: 3rem;
        font-size: 0.85rem;
        color: rgba(255,255,255,0.4);
    }

    @media (max-width: 380px) {
        .social-grid { grid-template-columns: 1fr; } /* Untereinander auf ganz kleinen Handys */
        .link-card { padding: 0.8rem; }
    }

