/* ═════════════════════════════════════════════════════
   antiproeb — FILANT-style v7 (UX-stable)
   No jank, no jump, keyboard-safe
   ═════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg: #0a0a0a;
    --bg-card: #141414;
    --bg-elevated: #1a1a1a;
    --bg-input: #1a1a1a;
    --bg-hover: rgba(255,255,255,0.04);

    --border: rgba(255,255,255,0.07);
    --border-subtle: rgba(255,255,255,0.04);

    --white: #ffffff;
    --t1: #f0f0f0;
    --t2: #888888;
    --t3: #484848;

    --pink: #e91e63;
    --green: #2ECC71;
    --red: #E74C3C;
    --yellow: #F1C40F;
    --orange: #E67E22;
    --purple: #9B59B6;
    --blue: #3498DB;
    --teal: #1ABC9C;

    --glow-pink-sm: 0 0 12px rgba(233,30,99,0.3);

    --r: 14px;
    --r-lg: 16px;
    --r-pill: 100px;

    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
    background: var(--bg);
    color: var(--t1);
    height: 100%;
    -webkit-text-size-adjust: 100%;
    overscroll-behavior-y: none;
}

body {
    background: var(--bg);
    min-height: 100%;
    padding-bottom: 100px;
    -webkit-tap-highlight-color: transparent;
    overscroll-behavior-y: none;
    overflow-x: hidden;
}

#app {
    max-width: 440px;
    margin: 0 auto;
    padding: calc(var(--tg-safe-area-inset-top, 0px) + 64px) 16px 32px;
}

/* ═══════════════════════════════════════
   CARD
   ═══════════════════════════════════════ */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 0;
    margin-bottom: 10px;
    overflow: hidden;
}

/* ═══════════════════════════════════════
   STATS STRIP
   ═══════════════════════════════════════ */
.stats-strip {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.st {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 18px 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Background removed according to new task */

.st .num {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.num-white { color: var(--white); }
.num-red { color: var(--red); }
.num-green { color: var(--green); }

.st .lbl {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════
   BANNER
   ═══════════════════════════════════════ */
.banner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
}

.b-ico {
    width: 44px; height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #C2185B;
}

.b-ico i { color: var(--white); }

.b-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--t2);
}

.b-text strong {
    color: var(--t1);
    font-weight: 700;
    font-size: 15px;
}

/* ═══════════════════════════════════════
   SECTION LABEL
   ═══════════════════════════════════════ */
.sec-label {
    font-size: 11px;
    font-weight: 600;
    color: #555555;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 16px 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ═══════════════════════════════════════
   LIST ITEMS
   ═══════════════════════════════════════ */
.l-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.l-ico {
    width: 44px; height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Vivid colored backgrounds */
.l-ico.c-green  { background: #27AE60; }
.l-ico.c-red    { background: #C0392B; }
.l-ico.c-orange { background: #D4731A; }
.l-ico i { color: var(--white); font-size: 20px; }

.l-ico.c-task { background: #1a1a1a; border: 1px solid rgba(255,255,255,0.08); }

.l-body { flex: 1; min-width: 0; }

.l-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--t1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
}

.l-sub {
    font-size: 12px;
    color: var(--t2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dl-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 9px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.3px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.2s ease;
}

@keyframes pulse-warn {
    0%, 100% { box-shadow: 0 0 12px rgba(251, 146, 60, 0.15); }
    50% { box-shadow: 0 0 20px rgba(251, 146, 60, 0.3); }
}

@keyframes pulse-crit {
    0%, 100% { box-shadow: 0 0 12px rgba(248, 113, 113, 0.15); }
    50% { box-shadow: 0 0 20px rgba(248, 113, 113, 0.35); }
}

.dl-tag.safe { 
    color: #4ade80; 
    background: rgba(74, 222, 128, 0.1); 
    border: 1px solid rgba(74, 222, 128, 0.2);
}
.dl-tag.warn { 
    color: #fb923c; 
    background: rgba(251, 146, 60, 0.1); 
    border: 1px solid rgba(251, 146, 60, 0.2);
    animation: pulse-warn 2s infinite;
}
.dl-tag.crit { 
    color: #ff4757; 
    background: rgba(255, 71, 87, 0.1); 
    border: 1px solid rgba(255, 71, 87, 0.2);
    animation: pulse-crit 1.2s infinite;
}

.l-chev { color: var(--t3); font-size: 16px; }

/* ═══════════════════════════════════════
   CREATE BUTTON (TASKS TAB)
   ═══════════════════════════════════════ */
.t-create-btn {
    width: 100%;
    min-height: 56px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: var(--r-lg);
    color: var(--t1);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    margin-bottom: 16px;
}
.t-create-btn:active {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(0.98);
}
.t-create-btn i {
    color: var(--pink);
    font-size: 20px;
}

/* ═══════════════════════════════════════
   SWIPE TO DELETE
   ═══════════════════════════════════════ */
.task-swipeable-wrap {
    position: relative;
    margin-bottom: 12px;
}

.swipe-track {
    position: relative;
    z-index: 2;
    transition: transform 0.2s cubic-bezier(0.32, 0.72, 0, 1);
}

.card.s-card {
    flex-shrink: 0;
    width: 100%;
    margin-bottom: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.delete-action {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) scale(0.5);
    opacity: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 71, 87, 0.1);
    border: 1px dashed rgba(255, 71, 87, 0.3);
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff4757;
    font-size: 26px;
    cursor: pointer;
    z-index: 1;
    transition: all 0.2s cubic-bezier(0.32, 0.72, 0, 1);
}
.delete-action:active {
    background: rgba(255, 71, 87, 0.2);
    border-style: solid;
    border-color: rgba(255, 71, 87, 0.5);
    transform: translateY(-50%) scale(0.94);
    box-shadow: 0 0 16px rgba(255, 71, 87, 0.25);
}

/* ═══════════════════════════════════════
   TAB BAR
   ═══════════════════════════════════════ */
.tab-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.t-btn {
    flex: 1;
    padding: 6px 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #1E1E1E;
    color: var(--t2);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    -webkit-tap-highlight-color: transparent;
}

.t-btn.on {
    background: var(--pink);
    color: var(--white);
    border-color: var(--pink);
}

/* ═══════════════════════════════════════
   BOTTOM ACTIONS (Nav + FAB)
   ═══════════════════════════════════════ */
.bottom-actions {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 440px;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    z-index: 99;
    pointer-events: none;
}

.bottom-actions > * {
    pointer-events: auto;
}

.nav-pill {
    grid-column: 2;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,0.08);
}

.nav-pill .n-btn {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--t3);
    transition: all 0.2s;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}

.nav-pill .n-btn.on {
    color: var(--white);
    background: var(--pink);
    box-shadow: 0 4px 16px rgba(233, 30, 99, 0.35);
}

/* ═══════════════════════════════════════
   OVERLAY + SHEET — keyboard-safe
   ═══════════════════════════════════════ */
.ov {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.70);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 200;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.ov.show { opacity: 1; pointer-events: all; }

.sheet {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-bottom: none;
    border-radius: 22px 22px 0 0;
    padding: 10px 20px max(env(safe-area-inset-bottom), 28px);
    z-index: 201;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    max-height: 88vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 440px;
    margin: 0 auto;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.5);
}
.sheet.show { transform: translateY(0); }

.s-bar {
    width: 36px; height: 4px;
    background: rgba(255,255,255,0.12);
    border-radius: 2px;
    margin: 6px auto 18px;
}

.s-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.s-head h2 {
    font-size: 18px;
    font-weight: 800;
    color: var(--t1);
}

.s-x {
    width: 32px; height: 32px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--t2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}

/* ═══════════════════════════════════════
   DETAIL SHEET
   ═══════════════════════════════════════ */
.d-header {
    text-align: center;
    padding: 8px 0 20px;
}

.d-header .d-ico {
    width: 56px; height: 56px;
    border-radius: 16px;
    margin: 0 auto 14px;
}

.d-header .d-ico i { color: var(--white); font-size: 24px; }

.d-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--t1);
}

.d-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 14px;
}

.dr-l {
    color: var(--t2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dr-r {
    color: var(--t1);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dr-r a {
    color: var(--pink);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ═══════════════════════════════════════
   ACTION GRID
   ═══════════════════════════════════════ */
.act-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 20px;
}

.act-btn {
    padding: 12px;
    border-radius: var(--r);
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    color: var(--t1);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    -webkit-tap-highlight-color: transparent;
}

.a-ok   { color: var(--green); border-color: rgba(46,204,113,0.2); }
.a-ice  { color: var(--blue); border-color: rgba(52,152,219,0.2); }
.a-edit { color: var(--orange); border-color: rgba(230,126,34,0.2); }
.a-del  { color: var(--red); border-color: rgba(231,76,60,0.2); }

/* ═══════════════════════════════════════
   FORM
   ═══════════════════════════════════════ */
.fg { margin-bottom: 18px; }

.f-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--t3);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 7px;
    display: block;
}

.f-input {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--t1);
    padding: 14px 16px;
    font-size: 16px; /* 16px prevents iOS zoom on focus */
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.f-input:focus { border-color: var(--pink); }
.f-input::placeholder { color: var(--t3); }

/* Datetime row container */
.dl-row {
    display: flex;
    gap: 8px;
}
.f-date { flex: 2; }
.f-time { flex: 1; text-align: center; }

/* Priority selector */
.prio-sel {
    display: flex;
    gap: 8px;
}

.p-opt {
    flex: 1;
    padding: 10px 8px;
    border-radius: var(--r-pill);
    border: 1px solid var(--border);
    background: transparent;
    color: var(--t2);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    -webkit-tap-highlight-color: transparent;
}

.p-opt.sel {
    border-color: var(--pink);
    color: var(--white);
    background: rgba(233,30,140,0.15);
}

/* CTA Button */
.btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: var(--r);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    -webkit-tap-highlight-color: transparent;
}

.btn:disabled { opacity: 0.5; }

.btn-pink {
    background: linear-gradient(135deg, #e91e63, #ff4081);
    color: var(--white);
}

/* ═══════════════════════════════════════
   TIMEZONE SETTINGS
   ═══════════════════════════════════════ */
.card.settings-group {
    background: #1A1A1A;
    border: none;
}

.tz-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.tz-item:last-child { border-bottom: none; }

.tz-item .tz-n {
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--t1);
}

.tz-item.sel .tz-n { color: var(--pink); }

.tz-item .tz-o {
    color: var(--t3);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tz-item.sel .tz-o { color: var(--pink); }

/* ═══════════════════════════════════════
   EMPTY STATE
   ═══════════════════════════════════════ */
.empty {
    text-align: center;
    padding: 64px 24px;
}

@keyframes pulse-opacity {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.empty .e-ico {
    width: 64px; height: 64px;
    background: #1a1a1a;
    border: 1px solid var(--border);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    animation: pulse-opacity 2s ease-in-out infinite;
}

.empty .e-t {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--t1);
}

.empty .e-s {
    font-size: 13px;
    color: var(--t2);
    line-height: 1.6;
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

.e-arrow {
    font-size: 24px;
    color: var(--pink);
    margin-top: 16px;
    display: inline-block;
    animation: bounce-down 1.5s infinite;
}

/* ═══════════════════════════════════════
   SKELETON
   ═══════════════════════════════════════ */
.sk {
    background: linear-gradient(90deg, #141414 25%, #1c1c1c 50%, #141414 75%);
    background-size: 200% 100%;
    animation: shim 1.6s infinite ease-in-out;
    border-radius: var(--r);
}

@keyframes shim {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.sk-card { height: 64px; margin-bottom: 8px; }
.sk-stat { height: 88px; border-radius: var(--r-lg); border: 1px solid var(--border-subtle); }

/* ═══════════════════════════════════════
   ANIMATIONS — only on page enter
   ═══════════════════════════════════════ */
.fi { animation: fi 0.35s cubic-bezier(0.22, 0.61, 0.36, 1) both; }
.fi:nth-child(1) { animation-delay: 0s; }
.fi:nth-child(2) { animation-delay: 0.04s; }
.fi:nth-child(3) { animation-delay: 0.08s; }
.fi:nth-child(4) { animation-delay: 0.12s; }
.fi:nth-child(5) { animation-delay: 0.16s; }
.fi:nth-child(6) { animation-delay: 0.20s; }

@keyframes fi {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hide { display: none !important; }

/* Scrollbar */
::-webkit-scrollbar { width: 0; }

/* ═══════════════════════════════════════
   PHOSPHOR ICONS
   ═══════════════════════════════════════ */
[class^="ph-"], [class*=" ph-"] {
    vertical-align: -0.125em;
    line-height: 1;
}

.l-ico i, .b-ico i, .d-ico i { font-size: 22px; }
.n-btn i { font-size: 24px; }
.act-btn i { font-size: 16px; }
.s-x i { font-size: 16px; }
.tabbar-fab i { font-size: 24px; }
.btn i, .t-btn i { font-size: 16px; }
.dl-tag i { font-size: 12px; }
.sec-label i { font-size: 14px; opacity: 0.5; }
.lbl i { font-size: 11px; opacity: 0.6; }
.empty .e-ico i { font-size: 28px; color: var(--t2); }
.tz-n i { font-size: 16px; color: var(--t2); }
.p-opt i { font-size: 14px; }
.d-row .dr-l i { font-size: 15px; opacity: 0.6; }
.d-row .dr-r i { font-size: 14px; }
.d-row .dr-r a i { font-size: 13px; }

/* ═══════════════════════════════════════
   SAFE AREA
   ═══════════════════════════════════════ */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .bottom-actions { bottom: calc(24px + env(safe-area-inset-bottom)); }
    body      { padding-bottom: calc(100px + env(safe-area-inset-bottom)); }
}

/* ═══════════════════════════════════════
   PRODUCTIVITY CHART
   ═══════════════════════════════════════ */
.chart-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 120px;
    padding-top: 10px;
}

.bar-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    height: 100%;
}

.bar-bg {
    width: 24px;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.bar-fill {
    width: 100%;
    background: linear-gradient(180deg, var(--green) 0%, rgba(46, 204, 113, 0.3) 100%);
    border-radius: 6px;
    transition: height 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.15);
}

.bar-wrap.today .bar-fill {
    background: linear-gradient(180deg, var(--pink) 0%, rgba(233, 30, 99, 0.3) 100%);
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.25), 0 -2px 10px rgba(233, 30, 99, 0.2);
}

/* При 0 делаем еле заметную черточку вместо пустоты, чтобы сетка читалась */
.bar-wrap.zero .bar-fill {
    height: 4px !important;
    background: rgba(255,255,255,0.06);
    box-shadow: none;
}

.bar-label {
    margin-top: 8px;
    font-size: 11px;
    color: var(--t2);
    font-weight: 500;
}

.bar-val {
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 700;
    color: var(--t1);
    opacity: 0.9;
}

/* ──────────────────────────────────────────────────────────
   CLIENT FILTERS & BADGES
   ────────────────────────────────────────────────────────── */
.client-filters-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    background: transparent;
    /* Fade out edges for beautiful scroll */
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}
.client-filters {
    display: flex;
    overflow-x: auto;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 8px;
    align-items: center;
    scrollbar-width: none;
    position: relative;
}
.client-filters::-webkit-scrollbar {
    display: none;
}
/* Push edge items to center */
.client-filters::before,
.client-filters::after {
    content: '';
    flex: 0 0 calc(50% - 40px);
}
.c-badge {
    scroll-snap-align: center;
    flex-shrink: 0;
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--t2);
    background: transparent;
    border: 1px solid transparent;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    user-select: none;
    opacity: 0.5;
}
.c-badge.sel {
    color: var(--white);
    background: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: scale(1.04);
    opacity: 1;
}

select.f-input {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 40px;
}
