        :root{
            --bg:#f4f7fb;
            --card:#ffffff;
            --primary:#1f3447;
            --primary2:#2f5a7d;
            --accent:#27ae60;
            --muted:#6e7f8e;
            --line:#dbe3ea;
            --danger:#b93434;
            --soft:#eef3f7;
            --shadow:0 14px 34px rgba(20,37,52,.12);
            --radius:24px;
        }
        *{box-sizing:border-box}
        body{
            margin:0;
            font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
            background:linear-gradient(180deg,#edf4fa 0%, #f7f9fc 100%);
            color:#203040;
            padding:calc(env(safe-area-inset-top,0px) + 16px) 14px calc(env(safe-area-inset-bottom,0px) + 20px);
        }
        a{text-decoration:none;color:inherit}
        img{max-width:100%;display:block}
        .app{max-width:1150px;margin:0 auto}
        .topbar{
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap:14px;
            margin-bottom:18px;
        }
        .brand{
            display:flex;
            align-items:center;
            gap:14px;
            min-width:0;
        }
        .brand img{
            width:76px;height:76px;border-radius:20px;background:#fff;object-fit:contain;padding:8px;box-shadow:var(--shadow)
        }
        .brand h1{margin:0;color:var(--primary);font-size:clamp(1.6rem,3vw,2rem)}
        .brand p{margin:4px 0 0;color:var(--muted)}
        .menu-btn,.install-btn{
            border:0;border-radius:16px;height:48px;padding:0 16px;display:inline-flex;align-items:center;justify-content:center;gap:8px;
            cursor:pointer;font-weight:700;box-shadow:var(--shadow)
        }
        .menu-btn{width:48px;background:#fff;color:var(--primary)}
        .install-btn{display:none;background:var(--accent);color:#fff}
        .layout{
            display:grid;
            grid-template-columns:360px minmax(0,1fr);
            gap:18px;
            align-items:start;
        }
        .panel,.content{
            background:#fff;border-radius:28px;box-shadow:var(--shadow)
        }
        .panel{
            padding:24px;
            position:sticky;
            top:18px;
            max-height:calc(100vh - 36px);
            overflow-y:auto;
        }
        .panel h2{
            margin:0 0 8px;
            color:var(--primary);
            font-size:1.15rem;
        }
        .panel p.lead{
            margin:0 0 20px;
            color:var(--muted);
            line-height:1.55;
        }
        .filter-block{
            margin-bottom:12px;
        }
        .filter-label{
            display:flex;
            align-items:center;
            gap:12px;
            font-size:1.05rem;
            font-weight:800;
            color:var(--primary);
            margin-bottom:9px;
        }
        .filter-label i{
            width:28px;
            text-align:center;
        }
        .field-wrap{
            position:relative;
        }
        .field-wrap input,
        .field-wrap select{
            width:100%;
            border:2px solid #dde4ea;
            background:#fdfdfd;
            border-radius:18px;
            height:54px;
            padding:0 16px;
            font-size:1rem;
            color:#203040;
            appearance:none;
            outline:none;
            transition:.2s ease;
        }
        .field-wrap input:focus,
        .field-wrap select:focus{
            border-color:#7ba5c6;
            box-shadow:0 0 0 4px rgba(31,52,71,.06);
            background:#fff;
        }
        .field-wrap .select-icon{
            position:absolute;
            right:18px;
            top:50%;
            transform:translateY(-50%);
            color:#1f3447;
            pointer-events:none;
            font-size:1.2rem;
        }
        .actions{
            display:grid;
            gap:12px;
            margin-top:10px;
        }
        .btn{
            border:0;border-radius:20px;padding:15px 18px;display:inline-flex;align-items:center;justify-content:center;gap:12px;
            font-size:1rem;font-weight:800;cursor:pointer;text-align:center
        }
        .btn-primary{background:linear-gradient(135deg,var(--primary),var(--primary2));color:#fff}
        .btn-soft{background:#edf1f7;color:var(--primary)}
        .btn-green{background:#27ae60;color:#fff}

        .ai-search-panel{
            margin-top:18px;
            padding:16px;
            border-radius:24px;
            background:linear-gradient(135deg, rgba(47,122,197,.11), rgba(39,174,96,.10));
            border:1px solid #d6e4ef;
        }
        .ai-search-panel h3{
            margin:0 0 6px;
            color:var(--primary);
            font-size:1rem;
            display:flex;
            align-items:center;
            gap:10px;
        }
        .ai-search-panel p{
            margin:0 0 12px;
            color:var(--muted);
            font-size:.92rem;
            line-height:1.45;
        }
        .btn-ai-search{
            width:100%;
            background:linear-gradient(135deg,#2563eb,#27ae60);
            color:#fff;
            border-radius:20px;
            box-shadow:0 12px 24px rgba(37,99,235,.18);
        }

        .content{
            padding:22px;
        }
        .content-head{
            display:flex;
            justify-content:space-between;
            align-items:center;
            gap:12px;
            margin-bottom:18px;
            flex-wrap:wrap;
        }
        .content-head h2{margin:0;color:var(--primary)}
        .content-head p{margin:4px 0 0;color:var(--muted)}
        .cards{
            display:grid;
            grid-template-columns:repeat(2,minmax(0,1fr));
            gap:16px;
        }
        .card{
            background:#fff;
            border:1px solid #e8edf2;
            border-radius:24px;
            box-shadow:0 10px 24px rgba(0,0,0,.05);
            overflow:hidden;
        }
        .card-main{
            display:grid;
            grid-template-columns:132px minmax(0,1fr);
            gap:14px;
            padding:14px;
        }
        .thumb{
            background:#f5f8fb;
            border-radius:18px;
            min-height:132px;
            display:flex;
            align-items:center;
            justify-content:center;
            overflow:hidden;
        }
        .thumb img{
            width:100%;
            height:132px;
            object-fit:contain;
            cursor:zoom-in;
        }
        .card h3{
            margin:0 0 10px;
            color:var(--primary);
            font-size:1.12rem;
            line-height:1.25;
        }
        .card-title-click{cursor:pointer}
        .card[data-target-id], .showcase-card[data-target-id]{
            transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
        }
        .card[data-target-id]:hover, .showcase-card[data-target-id]:hover{
            transform:translateY(-2px);
            box-shadow:0 16px 30px rgba(20,37,52,.10);
            border-color:#cfdceb;
        }
        .meta{
            color:#556676;
            font-size:.95rem;
            line-height:1.5;
            display:grid;
            gap:5px;
        }
        .meta a{
            color:var(--primary);
            font-weight:700;
        }
        .rating-line{
            margin-top:10px;
            display:flex;
            flex-wrap:wrap;
            align-items:center;
            gap:8px;
        }
        .star{color:#cdd7df;font-size:1.05rem}
        .star.active{color:#f5c44d}
        .rating-line strong{color:var(--primary)}
        .rating-line small{color:var(--muted)}
        .card-actions{
            display:flex;
            gap:10px;
            padding:0 14px 14px;
        }
        .card-actions .btn{
            flex:1;
            padding:14px 16px;
            border-radius:18px;
        }
        .empty{
            padding:28px;
            background:#fff;
            border-radius:24px;
            text-align:center;
            color:var(--muted);
        }
        .card-actions-single .btn{flex:1}
        .showcase-grid{
            display:grid;
            grid-template-columns:repeat(2,minmax(0,1fr));
            gap:18px;
        }
        .showcase-card{
            position:relative;
            display:grid;
            grid-template-columns:160px minmax(0,1fr);
            gap:16px;
            background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
            border:1px solid #e7edf3;
            border-radius:26px;
            box-shadow:0 14px 28px rgba(20,37,52,.08);
            overflow:hidden;
            padding:16px;
        }
        .showcase-rank{
            position:absolute;
            top:14px;
            right:14px;
            min-width:42px;
            height:42px;
            padding:0 10px;
            border-radius:999px;
            display:flex;
            align-items:center;
            justify-content:center;
            background:linear-gradient(135deg,var(--primary),var(--primary2));
            color:#fff;
            font-weight:800;
            box-shadow:var(--shadow);
        }
        .showcase-image-wrap{
            background:#edf4fa;
            border-radius:20px;
            display:flex;
            align-items:center;
            justify-content:center;
            padding:12px;
            min-height:160px;
        }
        .showcase-image-wrap img{
            width:100%;
            height:160px;
            object-fit:contain;
            cursor:zoom-in;
        }
        .showcase-body{
            display:flex;
            flex-direction:column;
            min-width:0;
        }
        .showcase-top{
            display:flex;
            justify-content:space-between;
            gap:10px;
            align-items:flex-start;
            margin-bottom:10px;
            padding-right:54px;
        }
        .showcase-badges{
            display:flex;
            flex-wrap:wrap;
            gap:8px;
        }
        .showcase-badge{
            display:inline-flex;
            align-items:center;
            gap:6px;
            border-radius:999px;
            background:#eef3f7;
            color:var(--primary);
            padding:7px 11px;
            font-size:.85rem;
            font-weight:800;
        }
        .showcase-badge-dark{background:rgba(31,52,71,.1)}
        .showcase-card h3{
            margin:0 0 12px;
            font-size:1.16rem;
            line-height:1.3;
            color:var(--primary);
        }
        .showcase-meta{
            display:flex;
            flex-wrap:wrap;
            gap:12px;
            color:var(--muted);
            font-size:.95rem;
            margin-bottom:14px;
        }
        .showcase-meta span{
            display:inline-flex;
            align-items:center;
            gap:7px;
        }
        .showcase-rating{
            display:flex;
            flex-wrap:wrap;
            align-items:center;
            justify-content:flex-end;
            gap:6px;
            color:var(--primary);
        }
        .showcase-btn{margin-top:auto;width:100%}
        .showcase-theme-new{
            background:linear-gradient(180deg,#ffffff 0%,#f1f8ff 100%);
            border-color:#cfe2f5;
        }
        .showcase-theme-top{
            background:linear-gradient(180deg,#fffdf6 0%,#fff7dd 100%);
            border-color:#ecdca1;
        }
        .showcase-theme-new .showcase-rank{background:linear-gradient(135deg,#2f7ac5,#53a3eb)}
        .showcase-theme-top .showcase-rank{
            background:linear-gradient(135deg,#c89d2c,#efc95a);
            color:#3f2c00;
        }
        .showcase-theme-new .showcase-image-wrap{background:linear-gradient(180deg,#eef6ff 0%,#e1effd 100%)}
        .showcase-theme-top .showcase-image-wrap{background:linear-gradient(180deg,#fff9e8 0%,#fff1c6 100%)}
        .showcase-theme-new .showcase-badge-label{
            background:linear-gradient(135deg,#2f7ac5,#53a3eb);
            color:#fff;
            box-shadow:0 8px 18px rgba(47,122,197,.22);
        }
        .showcase-theme-top .showcase-badge-label{
            background:linear-gradient(135deg,#d6ab34,#f4d36b);
            color:#4b3700;
            box-shadow:0 8px 18px rgba(214,171,52,.25);
        }
        .showcase-theme-new .showcase-btn{
            background:linear-gradient(135deg,#2f7ac5,#53a3eb);
            color:#fff;
        }
        .showcase-theme-top .showcase-btn{
            background:linear-gradient(135deg,#c89d2c,#efc95a);
            color:#3f2c00;
        }
        .content-section{margin-top:22px}
        .content-section:first-child{margin-top:0}
        .content-section h3{
            margin:0 0 14px;
            color:var(--primary);
            font-size:1.15rem;
            display:flex;
            flex-wrap:wrap;
            align-items:center;
            gap:10px;
        }
        .section-accent{
            display:inline-flex;
            align-items:center;
            gap:8px;
            padding:9px 14px;
            border-radius:999px;
            font-size:.88rem;
            font-weight:800;
            box-shadow:0 10px 20px rgba(20,37,52,.08);
        }
        .section-accent-blue{background:linear-gradient(135deg,#2f7ac5,#53a3eb);color:#fff}
        .section-accent-gold{background:linear-gradient(135deg,#d6ab34,#f4d36b);color:#4b3700}
        .content-section-latest h3,
        .content-section-top h3{margin-bottom:18px}
        .accordion{
            margin-bottom:18px;
            border:1px solid #e5ebf0;
            border-radius:22px;
            background:#f9fbfd;
            overflow:hidden;
        }
        .accordion-toggle{
            width:100%;
            border:0;
            background:transparent;
            padding:18px 20px;
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap:12px;
            cursor:pointer;
            color:var(--primary);
            font-size:1rem;
            font-weight:800;
            text-align:left;
        }
        .accordion-toggle i{transition:transform .2s ease}
        .accordion.open .accordion-toggle i{transform:rotate(180deg)}
        .accordion-content{
            max-height:0;
            overflow:hidden;
            transition:max-height .25s ease;
            padding:0 20px;
        }
        .accordion.open .accordion-content{
            padding:0 20px 18px;
            max-height:220px;
        }
        .accordion-content p{
            margin:0;
            color:var(--muted);
            line-height:1.7;
        }
        .drawer-accordion{margin-bottom:0}
        .drawer-accordion .accordion-toggle{
            padding:16px 18px;
            font-size:1rem;
        }
        .drawer-accordion .accordion-content{background:#fff}
        .drawer{
            position:fixed;inset:0;pointer-events:none;z-index:50
        }
        .drawer.open{pointer-events:auto}
        .drawer-backdrop{
            position:absolute;inset:0;background:rgba(0,0,0,.35);opacity:0;transition:.25s
        }
        .drawer-panel{
            position:absolute;right:0;top:0;height:100%;width:min(340px,92vw);background:rgba(255,255,255,.98);backdrop-filter:blur(10px);
            transform:translateX(105%);transition:.25s;padding:22px;border-radius:28px 0 0 28px;box-shadow:-8px 0 24px rgba(0,0,0,.15);
            display:flex;flex-direction:column;gap:16px;overflow-y:auto
        }
        .drawer.open .drawer-backdrop{opacity:1}
        .drawer.open .drawer-panel{transform:translateX(0)}
        .drawer-head{display:flex;justify-content:space-between;align-items:center}
        .drawer-head h3{margin:0;color:var(--primary)}
        .drawer-section{display:grid;gap:10px}
        .drawer-item{
            display:flex;align-items:center;gap:10px;background:#fff;border:1px solid #e5ebf0;border-radius:16px;padding:13px 14px;
            font-weight:700;color:var(--primary);cursor:pointer;font-size:1rem;line-height:1.25;width:100%;text-align:left;
        }
        .drawer-item i{
            width:22px;
            text-align:center;
            font-size:1rem;
            flex:0 0 22px;
        }
        .user-pill{
            background:#eff7f2;
            color:#18743b;
            border-radius:16px;
            padding:12px 14px;
            font-weight:700;
        }
        .flags{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:10px}
        .flags a{background:#fff;border-radius:14px;padding:8px;border:1px solid #e5ebf0;display:flex;justify-content:center}
        .flags img{width:30px;height:20px;object-fit:cover;border-radius:4px}
        .drawer-stats{display:grid;gap:10px}
        .drawer-stat{
            background:#f5f8fb;
            border:1px solid #e5ebf0;
            border-radius:16px;
            padding:12px 14px;
        }
        .drawer-stat small{
            display:block;
            color:var(--muted);
            margin-bottom:4px;
        }
        .drawer-stat strong{
            color:var(--primary);
            font-size:1.2rem;
        }
        .overlay{
            position:fixed;inset:0;display:none;align-items:center;justify-content:center;padding:18px;background:rgba(0,0,0,.48);z-index:60
        }
        .overlay.active{display:flex}
        .modal{
            width:min(880px,100%);
            max-height:90vh;
            overflow:auto;
            background:#fff;
            border-radius:30px;
            box-shadow:0 20px 48px rgba(0,0,0,.25);
            padding:22px;
            position:relative;
        }
        .close{
            position:absolute;top:16px;right:16px;width:44px;height:44px;border:0;border-radius:14px;background:#eef3f7;color:#b93434;cursor:pointer
        }
        .detail-grid{
            display:grid;
            grid-template-columns:280px minmax(0,1fr);
            gap:18px;
        }
        .detail-img{
            background:#f5f8fb;border-radius:22px;display:flex;align-items:center;justify-content:center;min-height:280px
        }
        .detail-img img{max-height:300px;object-fit:contain;cursor:zoom-in}
        .detail-copy h2{margin:0;color:var(--primary);font-size:1.5rem;padding-right:50px}
        .detail-copy p.desc{color:var(--muted);line-height:1.6}
        .detail-meta{display:grid;gap:8px;color:#556676;margin:14px 0}
        .detail-meta strong{color:#203040}
        .share-row{
            display:flex;
            gap:10px;
            flex-wrap:wrap;
            align-items:center;
            margin-top:14px;
        }
        .share-chip{
            width:48px;
            height:48px;
            border:0;
            background:#eef3f7;
            color:var(--primary);
            border-radius:16px;
            padding:0;
            font-weight:800;
            display:inline-flex;
            align-items:center;
            justify-content:center;
            cursor:pointer;
            font-size:1.18rem;
            box-shadow:0 8px 18px rgba(20,37,52,.06);
            transition:transform .16s ease, background .16s ease, color .16s ease;
        }
        .share-chip:hover{
            transform:translateY(-1px);
            background:#dfe9f1;
        }
        .share-chip.reported{
            background:#e8f7ee;
            color:#18743b;
        }
        .share-chip:disabled{
            opacity:.75;
            cursor:not-allowed;
            transform:none;
        }
        .share-chip-danger{color:#b93434}
        .sr-only{
            position:absolute;
            width:1px;
            height:1px;
            padding:0;
            margin:-1px;
            overflow:hidden;
            clip:rect(0,0,0,0);
            white-space:nowrap;
            border:0;
        }
        .rating-box{
            margin-top:18px;
            background:#f8fbfd;
            border:1px solid #e3ebf1;
            border-radius:24px;
            padding:18px;
        }
        .rating-box h3{
            margin:0 0 8px;
            color:var(--primary);
            font-size:1.2rem;
        }
        .rating-info{
            color:var(--muted);
            margin-bottom:14px;
        }
        .auth-box{
            background:#fff;
            border:1px solid #e3ebf1;
            border-radius:20px;
            padding:18px;
            display:grid;
            gap:12px;
        }
        .auth-actions{
            display:flex;
            gap:10px;
            flex-wrap:wrap;
        }
        .rating-grid{display:grid;gap:14px}
        .rating-item{
            display:grid;
            grid-template-columns:minmax(0,1fr) auto;
            gap:12px;
            align-items:center;
            padding:8px 0;
            border-top:1px solid #e6edf2;
        }
        .rating-item:first-child{border-top:0}
        .rating-item strong{
            font-size:1rem;
            color:#203040;
            line-height:1.3;
        }
		.rating-hint-box{
    margin:14px 0;
    border:1px solid #dfe8ef;
    border-radius:20px;
    background:#ffffff;
    overflow:hidden;
}

.rating-hint-toggle{
    width:100%;
    border:0;
    background:#eef3f7;
    color:var(--primary);
    padding:14px 16px;
    font-weight:900;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    cursor:pointer;
    font-size:.98rem;
}

.rating-hint-toggle span{
    display:flex;
    align-items:center;
    gap:10px;
}

.rating-hint-toggle .fa-chevron-down{
    transition:transform .2s ease;
}

.rating-hint-box.open .rating-hint-toggle .fa-chevron-down{
    transform:rotate(180deg);
}

.rating-hint-content{
    display:none;
    padding:16px;
    color:var(--muted);
    line-height:1.55;
}

.rating-hint-box.open .rating-hint-content{
    display:block;
}

.rating-hint-content p{
    margin:0 0 10px;
}

.rating-hint-content strong{
    display:block;
    color:var(--primary);
    margin:12px 0 8px;
}

.rating-hint-content ul{
    margin:0;
    padding-left:20px;
}

.rating-hint-content li{
    margin-bottom:8px;
}
		
        .stars-input{
            display:flex;
            gap:8px;
            flex-wrap:wrap;
        }
        .stars-input button{
            border:0;
            background:transparent;
            color:#cfd8df;
            font-size:1.9rem;
            cursor:pointer;
            padding:0;
            line-height:1;
        }
        .stars-input button.active{color:#f5c44d}
        .rating-submit{margin-top:14px;width:100%}
        .message{
            margin-top:12px;
            color:var(--muted);
            font-size:.95rem;
        }
        .legal p,.legal li{color:var(--muted);line-height:1.6}
        .lightbox{
            position:fixed;inset:0;display:none;align-items:center;justify-content:center;padding:20px;background:rgba(0,0,0,.88);z-index:70
        }
        .lightbox.active{display:flex}
        .lightbox img{max-width:min(1100px,100%);max-height:88vh;object-fit:contain}
        .toast{
            position:fixed;left:50%;bottom:calc(env(safe-area-inset-bottom,0px) + 20px);transform:translateX(-50%) translateY(20px);
            background:rgba(31,52,71,.96);color:#fff;padding:12px 16px;border-radius:16px;box-shadow:var(--shadow);opacity:0;pointer-events:none;transition:.2s;z-index:80
        }
        .toast.show{opacity:1;transform:translateX(-50%) translateY(0)}
        .footer-banners{
            margin-top:18px;
            background:#fff;
            border-radius:28px;
            box-shadow:var(--shadow);
            padding:20px;
        }
        .footer-banners h3{
            margin:0 0 14px;
            color:var(--primary);
            font-size:1.08rem;
        }
        .banner-stage{
            display:flex;
            justify-content:center;
            align-items:center;
            min-height:110px;
            border-radius:20px;
            background:#f5f8fb;
            border:1px solid #e8edf2;
            padding:14px;
        }
        .banner-stage a{
            display:flex;
            justify-content:center;
            align-items:center;
            width:100%;
        }
        .banner-stage img{
            max-width:min(360px,100%);
            max-height:78px;
            object-fit:contain;
        }
        @media (max-width:980px){
            .layout{grid-template-columns:1fr}
            .panel{position:static;max-height:none;overflow:visible}
            .cards{grid-template-columns:1fr}
            .showcase-grid{grid-template-columns:1fr}
        }
        @media (max-width:720px){
            .detail-grid{grid-template-columns:1fr}
        }
        @media (min-width:981px){
            .drawer-accordion{display:none;}
        }
        @media (max-width:980px){
            #hintAccordion{display:none;}
        }
        @media (max-width:560px){
            .brand img{width:64px;height:64px}
            .topbar{align-items:flex-start}
            .card-main{grid-template-columns:1fr}
            .thumb img{height:190px}
            .card-actions{flex-direction:column}
            .rating-item{grid-template-columns:1fr}
            .showcase-card{grid-template-columns:1fr}
            .showcase-image-wrap img{height:190px}
            .showcase-top{padding-right:0;flex-direction:column;align-items:flex-start}
            .showcase-rank{top:12px;right:12px}
        }


/* Ergänzungen 2026-04-27 :: Filter, Top-Listen, Admin-Accordion */
.mobile-only{display:none!important;}
.desktop-only{display:initial;}
.btn-disabled,
.btn:disabled{
    opacity:.72;
    cursor:not-allowed;
    filter:saturate(.72);
    box-shadow:none;
}
.ai-status-pill{
    display:inline-flex;
    align-items:center;
    gap:7px;
    margin-bottom:10px;
    padding:6px 10px;
    border-radius:999px;
    background:#fff7dd;
    color:#5a4100;
    border:1px solid #ead99d;
    font-size:.82rem;
    font-weight:900;
}

/* Treffer verfeinern: kein Browser-Standard, sondern kompakte Filterzeile */
.content .result-filter-bar{
    display:flex!important;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
    margin:0 0 16px!important;
    padding:10px!important;
    border:1px solid #e4ecf3!important;
    border-radius:18px!important;
    background:linear-gradient(180deg,#ffffff 0%,#f6f9fc 100%)!important;
    box-shadow:0 10px 22px rgba(20,37,52,.055)!important;
}
.content .result-filter-title{
    display:inline-flex!important;
    align-items:center!important;
    gap:8px!important;
    min-height:38px!important;
    padding:0 10px 0 2px!important;
    color:var(--primary)!important;
    font-size:.92rem!important;
    font-weight:900!important;
    white-space:nowrap!important;
}
.content .result-filter-title i{
    color:var(--primary2)!important;
}
.content .result-filter-field{
    display:flex!important;
    align-items:center!important;
    gap:7px!important;
    min-width:0!important;
    margin:0!important;
    padding:5px 7px 5px 10px!important;
    border:1px solid #dfe8ef!important;
    border-radius:999px!important;
    background:#fff!important;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.8)!important;
}
.content .result-filter-field span{
    color:#607282!important;
    font-size:.78rem!important;
    line-height:1!important;
    font-weight:900!important;
    white-space:nowrap!important;
}
.content .result-filter-field select{
    appearance:none!important;
    -webkit-appearance:none!important;
    width:auto!important;
    min-width:86px!important;
    max-width:190px!important;
    height:30px!important;
    border:0!important;
    border-radius:999px!important;
    background:#eef3f7!important;
    color:var(--primary)!important;
    padding:0 28px 0 10px!important;
    font-size:.84rem!important;
    font-weight:900!important;
    line-height:30px!important;
    outline:none!important;
    cursor:pointer!important;
    box-shadow:none!important;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 20 20'%3E%3Cpath fill='%231f3447' d='M5.5 7.5 10 12l4.5-4.5 1.4 1.4-5.9 5.9-5.9-5.9z'/%3E%3C/svg%3E")!important;
    background-repeat:no-repeat!important;
    background-position:right 9px center!important;
}
.content .result-filter-field select:focus{
    background-color:#e7eef5!important;
    box-shadow:0 0 0 3px rgba(47,90,125,.10)!important;
}
.result-filter-empty{
    margin-bottom:14px;
}

/* Startansicht: Top 3 / Neueste 3 als moderne, schlanke Listen */
.content-section-latest,
.content-section-top{
    border:1px solid #e7edf3;
    border-radius:24px;
    background:linear-gradient(180deg,#ffffff 0%,#f8fbfd 100%);
    padding:16px;
    box-shadow:0 12px 26px rgba(20,37,52,.06);
}
.content-section-latest h3,
.content-section-top h3{
    margin:0 0 12px!important;
    font-size:1rem!important;
    line-height:1.2!important;
}
.section-accent{
    padding:6px 10px!important;
    font-size:.78rem!important;
    box-shadow:none!important;
}
.target-list{
    display:grid!important;
    gap:8px!important;
}
.target-list-row{
    display:grid!important;
    grid-template-columns:44px 58px minmax(0,1fr) 34px!important;
    align-items:center!important;
    gap:10px!important;
    min-height:72px!important;
    padding:8px 9px!important;
    border:1px solid #e7edf3!important;
    border-radius:18px!important;
    background:#fff!important;
    box-shadow:0 7px 16px rgba(20,37,52,.045)!important;
    transition:transform .16s ease, box-shadow .16s ease, border-color .16s ease!important;
    cursor:pointer!important;
}
.target-list-row:hover{
    transform:translateY(-1px)!important;
    box-shadow:0 12px 22px rgba(20,37,52,.085)!important;
    border-color:#cfdceb!important;
}
.target-list-rank{
    width:38px!important;
    height:38px!important;
    border-radius:14px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    background:#eef3f7!important;
    color:var(--primary)!important;
    font-size:.82rem!important;
    font-weight:950!important;
}
.content-section-top .target-list-rank{
    background:linear-gradient(135deg,#ffe9a6,#f6ca4f)!important;
    color:#4b3700!important;
}
.content-section-latest .target-list-rank{
    background:linear-gradient(135deg,#dff0ff,#b9ddff)!important;
    color:#17456b!important;
}
.target-list-img{
    width:58px!important;
    height:58px!important;
    border-radius:15px!important;
    background:#f5f8fb!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    overflow:hidden!important;
    border:1px solid #edf2f6!important;
}
.target-list-img img{
    width:100%!important;
    height:58px!important;
    object-fit:contain!important;
    cursor:zoom-in!important;
}
.target-list-main{
    min-width:0!important;
}
.target-list-main h4{
    margin:0 0 6px!important;
    color:var(--primary)!important;
    font-size:.96rem!important;
    line-height:1.18!important;
    font-weight:950!important;
    white-space:nowrap!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
}
.target-list-meta{
    display:flex!important;
    align-items:center!important;
    flex-wrap:wrap!important;
    gap:6px!important;
    color:#607282!important;
    font-size:.78rem!important;
    line-height:1.1!important;
}
.target-list-meta span{
    display:inline-flex!important;
    align-items:center!important;
    gap:5px!important;
    max-width:100%!important;
    white-space:nowrap!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
}
.target-list-meta i{
    color:var(--primary2)!important;
}
.target-list-rating{
    color:var(--primary)!important;
    font-weight:950!important;
}
.target-list-rating .fa-star{color:#f5c44d!important;}
.target-list-action{
    width:34px!important;
    height:34px!important;
    border:0!important;
    border-radius:13px!important;
    background:#eef3f7!important;
    color:var(--primary)!important;
    cursor:pointer!important;
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    transition:.16s ease!important;
}
.target-list-row:hover .target-list-action{
    background:var(--primary)!important;
    color:#fff!important;
}

/* Rechtes Slidemenü: Adminbereich sichtbar und sauber als Accordion */
.drawer-panel .drawer-admin-accordion{
    display:block!important;
    margin:2px 0!important;
    border:1px solid #d7e5f0!important;
    border-radius:18px!important;
    background:linear-gradient(180deg,#f8fbff 0%,#eef6fd 100%)!important;
    overflow:hidden!important;
    box-shadow:0 10px 22px rgba(31,52,71,.06)!important;
}
.drawer-panel .drawer-admin-accordion .accordion-toggle{
    min-height:50px!important;
    padding:13px 14px!important;
    background:transparent!important;
    color:var(--primary)!important;
    font-size:.98rem!important;
}
.drawer-panel .drawer-admin-accordion .accordion-toggle span{
    display:flex!important;
    align-items:center!important;
    gap:10px!important;
    font-weight:950!important;
}
.drawer-panel .drawer-admin-accordion .accordion-content{
    background:transparent!important;
}
.drawer-panel .drawer-admin-accordion.open .accordion-content{
    max-height:280px!important;
    padding:0 10px 10px!important;
}
.drawer-panel .drawer-admin-content{
    display:grid!important;
    gap:8px!important;
}
.drawer-panel .drawer-admin-content .drawer-item{
    background:#fff!important;
}
.drawer-item-subtitle{
    display:block;
    margin-top:2px;
    color:var(--muted);
    font-size:.78rem;
    font-weight:650;
}
.share-chip-favorite{color:#b9346a;}
.share-chip-favorite.favorite-active{
    background:#fff0f5;
    color:#c2185b;
}

@media (max-width:980px){
    .mobile-only{display:block!important;}
    .desktop-only{display:none!important;}
    .ai-search-panel{display:block!important;}
    .content .result-filter-bar{
        align-items:stretch!important;
        gap:8px!important;
    }
    .content .result-filter-title{
        width:100%!important;
        min-height:auto!important;
        padding:0 2px 2px!important;
    }
    .content .result-filter-field{
        flex:1 1 150px!important;
        justify-content:space-between!important;
    }
    .content .result-filter-field select{
        width:100%!important;
        max-width:none!important;
    }
}
@media (max-width:560px){
    .content-section-latest,
    .content-section-top{
        padding:13px!important;
        border-radius:22px!important;
    }
    .target-list-row{
        grid-template-columns:34px 54px minmax(0,1fr) 32px!important;
        gap:8px!important;
        padding:8px!important;
    }
    .target-list-rank{
        width:30px!important;
        height:30px!important;
        border-radius:12px!important;
        font-size:.74rem!important;
    }
    .target-list-img,
    .target-list-img img{
        width:54px!important;
        height:54px!important;
    }
    .target-list-main h4{
        font-size:.9rem!important;
    }
    .target-list-meta{
        font-size:.72rem!important;
        gap:5px!important;
    }
    .target-list-action{
        width:32px!important;
        height:32px!important;
    }
}

/* Ergänzung 2026-04-28 :: Bewertungsübersicht je Kriterium */
.rating-summary-box{
    margin-top:12px;
    padding:14px;
    border:1px solid #e3ebf1;
    border-radius:20px;
    background:linear-gradient(180deg,#ffffff 0%,#f8fbfd 100%);
    box-shadow:0 8px 18px rgba(20,37,52,.045);
}
.rating-summary-box-own{
    background:linear-gradient(180deg,#fffdf6 0%,#fff8e4 100%);
    border-color:#eadca8;
}
.rating-summary-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin-bottom:10px;
    color:var(--primary);
}
.rating-summary-head strong{
    font-size:.98rem;
    font-weight:950;
}
.rating-summary-head small{
    color:var(--muted);
    font-size:.82rem;
    font-weight:800;
}
.rating-summary-list{
    display:grid;
    gap:8px;
}
.rating-summary-row{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto auto;
    align-items:center;
    gap:10px;
    padding:8px 0;
    border-top:1px solid #edf2f6;
}
.rating-summary-row:first-child{
    border-top:0;
    padding-top:0;
}
.rating-summary-row:last-child{
    padding-bottom:0;
}
.rating-summary-row > span:first-child{
    color:#435463;
    font-size:.92rem;
    font-weight:800;
    line-height:1.25;
}
.rating-summary-stars{
    display:inline-flex;
    align-items:center;
    gap:2px;
    white-space:nowrap;
}
.rating-summary-stars .star{
    font-size:.86rem;
}
.rating-summary-row strong{
    color:var(--primary);
    font-size:.9rem;
    font-weight:950;
    white-space:nowrap;
}
.rating-summary-empty{
    color:var(--muted);
    font-size:.92rem;
    line-height:1.45;
}

@media (max-width:560px){
    .rating-summary-box{
        padding:12px;
        border-radius:18px;
    }
    .rating-summary-row{
        grid-template-columns:1fr;
        gap:5px;
    }
    .rating-summary-stars{
        justify-content:flex-start;
    }
}


/* Anpassung 2026-04-28 :: Bewertungsübersicht kompakter und unaufdringlicher */
.rating-summary-box{
    margin-top:10px;
    padding:10px 12px;
    border:1px solid #edf2f6;
    border-radius:16px;
    background:#fafcfe;
    box-shadow:none;
}
.rating-summary-box-own{
    display:none !important;
}
.rating-summary-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
    margin-bottom:6px;
    color:var(--primary);
}
.rating-summary-head-compact strong{
    font-size:.95rem;
    font-weight:900;
}
.rating-summary-head small{
    color:var(--muted);
    font-size:.78rem;
    font-weight:700;
}
.rating-summary-list,
.rating-summary-list-compact{
    display:grid;
    gap:4px;
}
.rating-summary-row{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    align-items:center;
    gap:10px;
    padding:4px 0;
    border-top:0;
}
.rating-summary-row:first-child,
.rating-summary-row:last-child{
    padding-top:4px;
    padding-bottom:4px;
}
.rating-summary-label{
    color:#5f6f7d;
    font-size:.9rem;
    font-weight:700;
    line-height:1.3;
}
.rating-summary-value{
    color:var(--primary);
    font-size:.92rem;
    font-weight:900;
    white-space:nowrap;
}
.rating-summary-stars{
    display:none !important;
}
.rating-summary-empty{
    color:var(--muted);
    font-size:.9rem;
    line-height:1.4;
}

@media (max-width:560px){
    .rating-summary-box{
        padding:10px 11px;
        border-radius:15px;
    }
    .rating-summary-row{
        grid-template-columns:minmax(0,1fr) auto;
        gap:8px;
    }
    .rating-summary-label{
        font-size:.86rem;
    }
    .rating-summary-value{
        font-size:.88rem;
    }
}


/* Anpassung 2026-04-28 :: Community-Bewertung als Accordion im Bewertungsbereich */
.rating-community-box{
    margin:10px 0 14px;
}
.rating-community-box .rating-hint-toggle{
    background:#f3f7fb;
}
.rating-community-toggle-right{
    display:inline-flex;
    align-items:center;
    gap:10px;
}
.rating-community-toggle-right small{
    color:var(--muted);
    font-size:.8rem;
    font-weight:800;
}
.rating-community-content{
    background:#fff;
}
.rating-community-box.open .rating-hint-content{
    display:block;
}
.rating-summary-box-inline{
    margin-top:0;
    padding:0;
    border:0;
    border-radius:0;
    background:transparent;
    box-shadow:none;
}
.rating-community-content .rating-summary-list{
    gap:6px;
}
.rating-community-content .rating-summary-row{
    padding:6px 0;
}


/* Anpassung 2026-04-28 :: Adminbereich im Drawer ohne Accordion unter den Flaggen */
.drawer-admin-section{
    margin-top:2px;
    padding:12px;
    border:1px solid #d7e5f0;
    border-radius:20px;
    background:linear-gradient(180deg,#f8fbff 0%,#eef6fd 100%);
    box-shadow:0 10px 22px rgba(31,52,71,.06);
}
.drawer-admin-title{
    display:flex;
    align-items:center;
    gap:10px;
    margin:0 0 10px;
    padding:2px 2px 0;
    color:var(--primary);
    font-size:.98rem;
    font-weight:950;
}
.drawer-admin-title i{
    width:22px;
    text-align:center;
}
.drawer-admin-section .drawer-admin-item{
    background:#fff;
}


/* Anpassung 2026-04-28 :: Hinweis-Accordion mobil unter dem Logo */
.mobile-hint-accordion{
    display:none;
}
.hint-list{
    margin:0;
    padding:0;
    list-style:none;
    display:grid;
    gap:10px;
}
.hint-list li{
    margin:0;
    color:var(--muted);
    line-height:1.5;
    font-size:.95rem;
}
.mobile-hint-accordion .accordion-toggle{
    background:#fff;
    border-radius:22px 22px 0 0;
    box-shadow:none;
}
.mobile-hint-accordion:not(.open) .accordion-toggle{
    border-radius:22px;
}
.mobile-hint-accordion .accordion-content{
    background:#fff;
}
@media (max-width:980px){
    .mobile-hint-accordion{
        display:block;
        margin:-4px 0 14px;
        border-radius:22px;
        box-shadow:var(--shadow);
        background:#fff;
    }
    .mobile-hint-accordion.open .accordion-content{
        max-height:360px;
    }
    .mobile-hint-accordion .accordion-content{
        padding:0 18px;
    }
    .mobile-hint-accordion.open .accordion-content{
        padding:0 18px 16px;
    }
    .mobile-hint-accordion .hint-list li{
        font-size:.93rem;
    }
}




/* Ergänzung 2026-04-28 :: Mobiler PWA-Install-Hinweis im Browser */
.kf-install-overlay{
    position:fixed;
    inset:0;
    z-index:99998;
    display:none;
    align-items:flex-end;
    justify-content:center;
    pointer-events:none;
}
.kf-install-overlay.is-visible{
    display:flex;
    pointer-events:auto;
}
.kf-install-backdrop{
    position:absolute;
    inset:0;
    background:rgba(7,19,32,.46);
    opacity:0;
    transition:opacity .22s ease;
    backdrop-filter:blur(7px);
}
.kf-install-overlay.is-visible .kf-install-backdrop{
    opacity:1;
}
.kf-install-sheet{
    position:relative;
    z-index:2;
    width:100%;
    max-width:540px;
    margin:0;
    padding:12px 16px calc(env(safe-area-inset-bottom,0px) + 18px);
    border-radius:30px 30px 0 0;
    background:rgba(255,255,255,.98);
    border:1px solid rgba(255,255,255,.95);
    box-shadow:0 -24px 70px rgba(20,37,52,.24);
    transform:translateY(105%);
    transition:transform .28s cubic-bezier(.2,.9,.2,1);
}
.kf-install-overlay.is-visible .kf-install-sheet{
    transform:translateY(0);
}
.kf-install-handle{
    width:48px;
    height:5px;
    border-radius:999px;
    background:#d6e1ea;
    margin:2px auto 14px;
}
.kf-install-close{
    position:absolute;
    top:14px;
    right:14px;
    width:42px;
    height:42px;
    border:0;
    border-radius:16px;
    background:#eef4f9;
    color:var(--primary);
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:1.1rem;
}
.kf-install-logo{
    width:82px;
    height:82px;
    margin:0 auto 12px;
    border-radius:26px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:9px;
    box-shadow:0 14px 34px rgba(20,37,52,.13);
}
.kf-install-logo img{
    width:100%;
    height:100%;
    object-fit:contain;
}
.kf-install-copy{
    text-align:center;
    padding:0 36px;
}
.kf-install-pill{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:28px;
    padding:6px 11px;
    border-radius:999px;
    background:linear-gradient(135deg,rgba(47,122,197,.14),rgba(39,174,96,.12));
    color:var(--primary);
    font-size:.78rem;
    font-weight:950;
    margin-bottom:9px;
}
.kf-install-copy h2{
    margin:0;
    color:var(--primary);
    font-size:1.32rem;
    line-height:1.12;
    letter-spacing:-.035em;
}
.kf-install-copy p{
    margin:9px 0 0;
    color:var(--muted);
    font-size:.93rem;
    line-height:1.45;
}
.kf-install-steps{
    display:grid;
    gap:8px;
    margin:16px 0 14px;
}
.kf-install-steps:empty{
    display:none;
}
.kf-install-steps div{
    display:grid;
    grid-template-columns:34px minmax(0,1fr);
    gap:10px;
    align-items:center;
    min-height:46px;
    padding:8px 10px;
    border-radius:17px;
    background:#f6f9fc;
    border:1px solid #e3ebf1;
}
.kf-install-steps strong{
    width:30px;
    height:30px;
    border-radius:12px;
    background:linear-gradient(135deg,var(--primary),var(--primary2));
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:.84rem;
    font-weight:950;
}
.kf-install-steps span{
    color:#425568;
    font-size:.88rem;
    font-weight:750;
    line-height:1.25;
}
.kf-install-actions{
    display:grid;
    grid-template-columns:1fr;
    gap:9px;
}
.kf-install-primary,
.kf-install-secondary{
    border:0;
    min-height:50px;
    border-radius:19px;
    padding:13px 15px;
    cursor:pointer;
    font-weight:950;
    font-size:.95rem;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
}
.kf-install-primary{
    color:#fff;
    background:linear-gradient(135deg,var(--primary),var(--primary2));
    box-shadow:0 12px 26px rgba(31,52,71,.18);
}
.kf-install-secondary{
    color:var(--primary);
    background:#eef4f9;
    border:1px solid #dfe8ef;
}

@media (min-width:560px){
    .kf-install-sheet{
        margin-bottom:18px;
        border-radius:30px;
    }
    .kf-install-actions{
        grid-template-columns:1fr auto;
    }
    .kf-install-secondary{
        min-width:120px;
    }
}

@media (prefers-reduced-motion: reduce){
    .kf-install-backdrop,
    .kf-install-sheet{
        transition:none!important;
    }
}

/* Ergänzung 2026-04-28 :: PWA-Startanimation Kill-Finder */
.kf-splash{
    position:fixed;
    inset:0;
    z-index:99999;
    display:none;
    align-items:center;
    justify-content:center;
    padding:24px;
    background:
        radial-gradient(circle at 50% 32%, rgba(39,174,96,.18), transparent 34%),
        radial-gradient(circle at 15% 12%, rgba(47,90,125,.22), transparent 28%),
        linear-gradient(180deg,#eef5fb 0%,#f8fbfd 100%);
    opacity:0;
    pointer-events:auto;
    transition:opacity .32s ease;
}
.kf-splash.is-visible{
    display:flex;
    opacity:1;
}
.kf-splash.is-leaving{
    opacity:0;
}
.kf-splash-card{
    width:min(310px,88vw);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    border-radius:34px;
    padding:30px 24px 26px;
    background:rgba(255,255,255,.86);
    border:1px solid rgba(255,255,255,.9);
    box-shadow:0 28px 70px rgba(20,37,52,.20);
    backdrop-filter:blur(18px);
    transform:translateY(8px) scale(.96);
    animation:kfSplashCard .9s cubic-bezier(.2,.9,.2,1) forwards;
}
.kf-splash-logo-ring{
    position:relative;
    width:126px;
    height:126px;
    border-radius:34px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:13px;
    box-shadow:0 18px 38px rgba(20,37,52,.16);
    animation:kfSplashLogoZoom .95s cubic-bezier(.2,.9,.2,1) both;
}
.kf-splash-logo-ring::before,
.kf-splash-logo-ring::after{
    content:"";
    position:absolute;
    inset:-10px;
    border-radius:42px;
    border:2px solid rgba(39,174,96,.22);
    animation:kfSplashPulse 1.15s ease-out infinite;
}
.kf-splash-logo-ring::after{
    inset:-20px;
    border-color:rgba(47,90,125,.16);
    animation-delay:.2s;
}
.kf-splash-logo{
    position:relative;
    z-index:2;
    width:100%;
    height:100%;
    object-fit:contain;
    border-radius:22px;
}
.kf-splash-title{
    margin-top:22px;
    color:var(--primary);
    font-weight:950;
    font-size:1.75rem;
    letter-spacing:-.04em;
    line-height:1;
    opacity:0;
    transform:translateY(8px);
    animation:kfSplashText .55s ease forwards;
    animation-delay:.22s;
}
.kf-splash-subtitle{
    margin-top:7px;
    color:var(--muted);
    font-size:.92rem;
    font-weight:750;
    opacity:0;
    transform:translateY(8px);
    animation:kfSplashText .55s ease forwards;
    animation-delay:.34s;
}
.kf-splash-target-loader{
    position:relative;
    width:46px;
    height:46px;
    margin-top:22px;
    border-radius:50%;
    border:3px solid rgba(31,52,71,.12);
    border-top-color:var(--accent);
    animation:kfSplashSpin .72s linear infinite;
}
.kf-splash-target-loader::before{
    content:"";
    position:absolute;
    left:50%;
    top:4px;
    bottom:4px;
    width:2px;
    transform:translateX(-50%);
    background:rgba(31,52,71,.16);
    border-radius:999px;
}
.kf-splash-target-loader::after{
    content:"";
    position:absolute;
    top:50%;
    left:4px;
    right:4px;
    height:2px;
    transform:translateY(-50%);
    background:rgba(31,52,71,.16);
    border-radius:999px;
}
.kf-splash-target-loader span{
    position:absolute;
    inset:10px;
    border-radius:50%;
    border:2px solid rgba(47,90,125,.18);
}
.kf-splash-target-loader span:nth-child(2){
    inset:18px;
    border-color:rgba(39,174,96,.28);
}
.kf-splash-target-loader span:nth-child(3){
    inset:22px;
    background:var(--accent);
    border:0;
}

@keyframes kfSplashCard{
    to{transform:translateY(0) scale(1)}
}
@keyframes kfSplashLogoZoom{
    from{transform:scale(.72);opacity:0}
    65%{transform:scale(1.05);opacity:1}
    to{transform:scale(1);opacity:1}
}
@keyframes kfSplashText{
    to{opacity:1;transform:translateY(0)}
}
@keyframes kfSplashPulse{
    from{transform:scale(.88);opacity:.7}
    to{transform:scale(1.18);opacity:0}
}
@keyframes kfSplashSpin{
    to{transform:rotate(360deg)}
}

@media (prefers-reduced-motion: reduce){
    .kf-splash,
    .kf-splash-card,
    .kf-splash-logo-ring,
    .kf-splash-logo-ring::before,
    .kf-splash-logo-ring::after,
    .kf-splash-title,
    .kf-splash-subtitle,
    .kf-splash-target-loader{
        animation:none!important;
        transition:none!important;
    }
}


