:root{
    --bg:#06080d;
    --panel:rgba(15,18,25,.78);
    --panel-strong:rgba(13,16,23,.92);
    --line:rgba(255,255,255,.09);
    --line-green:rgba(181,255,23,.34);
    --text:#f4f7fb;
    --muted:#8d95a8;
    --muted2:#596071;
    --accent:#b7ff19;
    --accent2:#55ff55;
    --danger:#ff4f8b;
    --shadow:0 24px 80px rgba(0,0,0,.55);
    --radius:28px;
    --safe-bottom:env(safe-area-inset-bottom,0px);
}
*{box-sizing:border-box}
html,body{min-height:100%;margin:0;overflow-x:hidden;background:var(--bg);color:var(--text);font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif}
body{
    padding:14px 12px calc(112px + var(--safe-bottom));
    background:
        radial-gradient(circle at 50% -10%,rgba(181,255,23,.16),transparent 34rem),
        radial-gradient(circle at 100% 18%,rgba(85,255,85,.08),transparent 24rem),
        linear-gradient(180deg,#07100d 0%,#06080d 38%,#05070b 100%);
}
body::before{
    content:"";
    position:fixed;inset:0;
    z-index:-2;
    background:
        linear-gradient(rgba(255,255,255,.015) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.012) 1px,transparent 1px);
    background-size:24px 24px;
    mask-image:linear-gradient(to bottom,rgba(0,0,0,.52),transparent 75%);
}
body::after{
    content:"";
    position:fixed;inset:0;
    z-index:-1;
    pointer-events:none;
    background:linear-gradient(180deg,rgba(0,0,0,.18),rgba(0,0,0,.64));
}
a{color:inherit;text-decoration:none}
button,input,textarea{font:inherit}
img,video{max-width:100%}
.home-feed-shell{width:min(760px,100%);margin:0 auto}
.home-feed-shell{padding-top:8px}
.home-feed-tabs{
    position:sticky;top:60px;z-index:45;
    display:grid;grid-template-columns:repeat(3,1fr);gap:0;
    padding:6px;
    margin:0 0 14px;
    border:1px solid var(--line);
    border-radius:25px;
    background:rgba(13,16,23,.82);
    backdrop-filter:blur(18px);
    box-shadow:0 14px 40px rgba(0,0,0,.34);
}
.home-feed-tab{
    min-width:0;
    border:0;
    background:transparent;
    color:rgba(255,255,255,.58);
    border-radius:20px;
    padding:14px 10px;
    font-weight:800;
    cursor:pointer;
    transition:background .18s ease,color .18s ease,box-shadow .18s ease;
}
.home-feed-tab.is-active{
    color:#162000;
    background:linear-gradient(135deg,var(--accent),#7dff37);
    box-shadow:0 0 26px rgba(181,255,23,.26),inset 0 1px 0 rgba(255,255,255,.35);
}
.home-feed-panel{display:none}
.home-feed-panel.is-active{display:block}
.home-feed-card{
    position:relative;
    overflow:hidden;
    padding:16px;
    margin-bottom:14px;
    border:1px solid var(--line);
    border-radius:26px;
    background:linear-gradient(145deg,rgba(16,20,29,.86),rgba(8,10,16,.82));
    box-shadow:var(--shadow), inset 0 1px 0 rgba(255,255,255,.035);
    backdrop-filter:blur(18px);
}
.home-feed-card::before{
    content:"";
    position:absolute;inset:0;
    pointer-events:none;
    border-radius:inherit;
    background:radial-gradient(circle at 8% 0,rgba(181,255,23,.08),transparent 34%),
               linear-gradient(180deg,rgba(255,255,255,.025),transparent 42%);
}
.home-feed-card-news{
    border-color:rgba(181,255,23,.22);
}
.home-feed-card-head{
    position:relative;z-index:1;
    display:grid;
    grid-template-columns:minmax(0,1fr) auto auto;
    align-items:center;
    gap:8px;
    margin-bottom:10px;
}
.home-feed-author{display:flex;align-items:center;gap:10px;min-width:0}
.home-feed-avatar-wrap{
    position:relative;
    display:block;
    width:48px;height:48px;flex:0 0 auto;
    border-radius:17px;
    padding:2px;
    background:linear-gradient(135deg,rgba(181,255,23,.55),rgba(255,255,255,.08));
}
.home-feed-avatar{
    width:100%;height:100%;display:block;object-fit:cover;border-radius:15px;background:#111;
}
.home-feed-author-body{min-width:0;display:block}
.home-feed-author-line{display:flex;align-items:center;gap:5px;min-width:0;max-width:100%}
.home-feed-card-head{min-width:0}
.home-feed-author{min-width:0;flex:1}
.home-feed-author-body{min-width:0;overflow:hidden}
.home-feed-author-sub{display:flex;align-items:center;gap:5px;min-width:0;max-width:100%}
.home-feed-card .verify-img,.home-feed-card .home-feed-author-line img,.home-feed-card .home-feed-author-line video{flex-shrink:0}
.home-feed-card:not(.home-feed-card-news) .home-feed-media:first-of-type{margin-top:4px}

.home-feed-name{
    display:block;
    min-width:0;
    max-width:178px;
    overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
    font-weight:900;
    font-size:16px;
    letter-spacing:-.02em;
    color:#fff;
}
.home-feed-author-line img,.home-feed-author-line video{flex:0 0 auto}
.home-feed-badge{
    flex:0 0 auto;
    padding:3px 7px;
    border-radius:999px;
    border:1px solid rgba(181,255,23,.35);
    background:rgba(181,255,23,.09);
    color:var(--accent);
    font-size:10px;
    font-weight:900;
    text-transform:uppercase;
}
.home-feed-author a{text-decoration:none}
.home-feed-wall-target{
    min-width:0;
    color:var(--muted2);
    font-size:11px;
    font-weight:800;
    line-height:1.2;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.home-feed-wall-target a{
    color:#7dff6a;
    text-decoration:none;
}
.home-feed-time{
    color:var(--muted2);
    font-size:13px;
    font-weight:800;
    white-space:nowrap;
}
.home-feed-menu{
    width:36px;height:36px;
    display:inline-flex;align-items:center;justify-content:center;
    border:0;border-radius:14px;
    background:transparent;color:rgba(255,255,255,.58);
    cursor:pointer;
}
.home-feed-news-label{
    position:relative;z-index:1;
    display:inline-flex;
    margin:2px 0 8px;
    padding:5px 9px;
    border:1px solid rgba(181,255,23,.35);
    border-radius:10px;
    background:rgba(181,255,23,.11);
    color:var(--accent);
    font-size:11px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.06em;
}
.home-feed-post-title{
    position:relative;z-index:1;
    margin:0 0 8px;
    font-size:21px;
    line-height:1.15;
    letter-spacing:-.04em;
}
.home-feed-text{
    position:relative;z-index:1;
    margin:0 0 12px 58px;
    color:#f3f5fb;
    font-size:17px;
    line-height:1.48;
    overflow-wrap:anywhere;
}
.home-feed-card-news .home-feed-text,
.home-feed-card-news .home-feed-post-title,
.home-feed-card-news .home-feed-news-label{margin-left:0}
.home-feed-media{
    position:relative;z-index:1;
    margin:12px 0 12px;
}
.home-feed-media-track{
    display:flex;
    gap:10px;
    overflow-x:auto;
    overscroll-behavior-x:contain;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    padding-bottom:1px;
}
.home-feed-media-track::-webkit-scrollbar{display:none}
.home-feed-media-item{
    position:relative;
    flex:0 0 100%;
    height:clamp(230px,62vw,430px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    background:rgba(0,0,0,.42);
    overflow:hidden;
    padding:0;
    cursor:pointer;
    scroll-snap-align:center;
    isolation:isolate;
}
.home-feed-media.is-gallery .home-feed-media-item{flex-basis:min(82%,420px)}
.home-feed-media-item::before{
    content:"";
    position:absolute;
    inset:-18px;
    z-index:0;
    background-image:var(--pb-media-bg);
    background-size:cover;
    background-position:center;
    filter:blur(22px) saturate(1.08);
    transform:scale(1.08);
    opacity:.58;
}
.home-feed-media-item::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    background:linear-gradient(180deg,rgba(0,0,0,.06),rgba(0,0,0,.16));
    pointer-events:none;
}
.home-feed-media-item img{
    position:relative;
    z-index:2;
    width:100%;height:100%;
    display:block;
    object-fit:contain;
    background:transparent;
}
.home-feed-media-count{
    position:absolute;right:12px;top:12px;z-index:3;
    padding:7px 11px;
    border-radius:999px;
    background:rgba(0,0,0,.52);
    color:#fff;
    font-size:13px;
    font-weight:800;
    backdrop-filter:blur(10px);
}
.home-feed-media-more{
    position:absolute;inset:0;
    display:flex;align-items:center;justify-content:center;
    background:rgba(0,0,0,.52);
    color:var(--accent);
    font-size:28px;
    font-weight:900;
    backdrop-filter:blur(4px);
}
.home-feed-actions{
    position:relative;z-index:1;
    display:grid;grid-template-columns:repeat(3,1fr);
    gap:6px;
    padding:10px 12px;
    border:1px solid rgba(255,255,255,.07);
    border-radius:20px;
    background:rgba(0,0,0,.2);
}
.home-feed-action{
    min-width:0;
    display:inline-flex;align-items:center;justify-content:center;gap:7px;
    border:0;background:transparent;
    color:rgba(229,235,246,.66);
    font-weight:800;
    cursor:pointer;
}
.home-feed-action svg{width:20px;height:20px}
.home-feed-like{justify-self:center;width:max-content;min-width:0;padding:6px 9px;border-radius:15px;font-size:12px;font-weight:900;transition:background .18s,transform .18s,color .18s}
.home-feed-like svg{width:20px!important;height:20px!important;display:block;stroke:currentColor!important;fill:none!important;filter:none!important}
.home-feed-like.is-active svg{stroke:var(--accent)!important;fill:var(--accent)!important}
.home-feed-like:not(.is-active):hover{background:rgba(181,255,23,.08);color:var(--accent);transform:translateY(-1px)}
.home-feed-like.is-active{color:var(--accent);background:rgba(181,255,23,.10);box-shadow:none}
.home-feed-empty{
    padding:34px 22px;
    text-align:center;
    border:1px dashed rgba(181,255,23,.24);
    border-radius:26px;
    background:rgba(15,18,25,.66);
    color:var(--muted);
}
.home-feed-empty strong{display:block;color:#fff;font-size:20px;margin-bottom:8px}
.home-feed-fab{
    appearance:none;-webkit-appearance:none;cursor:pointer;padding:0;
    position:fixed;right:18px;bottom:calc(104px + var(--safe-bottom));z-index:70;
    width:60px;height:60px;border-radius:999px;
    display:flex;align-items:center;justify-content:center;
    border:1px solid rgba(181,255,23,.7);
    background:radial-gradient(circle at 45% 30%,#eaff57,var(--accent) 42%,#5fae00 100%);
    color:#111b00;
    box-shadow:0 0 32px rgba(181,255,23,.38),0 18px 40px rgba(0,0,0,.5);
}
.home-feed-fab svg{width:36px;height:36px;stroke-width:2.4}

.home-bottom-link{
    min-width:0;
    display:flex;flex-direction:column;align-items:center;gap:5px;
    color:rgba(255,255,255,.58);
    font-size:12px;font-weight:800;
}
.home-bottom-link svg{width:24px;height:24px}
.home-bottom-link.is-active{color:var(--accent)}


.home-bottom-online{display:flex;align-items:center;gap:5px;color:#d9ff8d;white-space:nowrap}
.home-bottom-online::before{content:"";width:7px;height:7px;border-radius:999px;background:var(--accent);box-shadow:0 0 9px var(--accent)}
#toast{
    position:fixed;left:50%;bottom:calc(118px + var(--safe-bottom));z-index:999;
    transform:translate(-50%,14px);
    opacity:0;pointer-events:none;
    padding:12px 16px;
    border:1px solid rgba(181,255,23,.28);
    border-radius:16px;
    background:rgba(10,14,20,.9);
    color:#fff;
    font-weight:800;
    backdrop-filter:blur(16px);
    transition:.2s;
}
#toast.show{opacity:1;transform:translate(-50%,0)}
.img-modal{
    display:none;
    position:fixed;inset:0;z-index:1000;
    align-items:center;justify-content:center;
    background:rgba(0,0,0,.88);
    padding:18px;
}
.img-modal img{max-width:100%;max-height:92vh;border-radius:18px;object-fit:contain}
.home-comment-item{position:relative;display:flex;align-items:flex-start;gap:12px;padding:0 0 12px}
.home-comment-item.is-reply{margin-left:28px;padding-top:2px}
.home-comment-thread-line{position:absolute;left:-18px;top:2px;bottom:18px;width:2px;border-radius:999px;background:linear-gradient(180deg,rgba(181,255,23,.65),rgba(181,255,23,.15))}
.home-comment-avatar{width:44px;height:44px;border-radius:15px;box-shadow:0 6px 18px rgba(0,0,0,.18)}
.home-comment-card{flex:1;min-width:0;padding:14px 16px;border-radius:24px;border:1px solid rgba(255,255,255,.08);background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.035));backdrop-filter:blur(16px)}
.home-comment-body{display:contents}
.home-comment-head{display:flex;align-items:center;gap:6px;flex-wrap:wrap;margin-bottom:6px}
.home-comment-name{font-size:15px}
.home-comment-time{margin-left:auto;font-size:12px}
.home-comment-mention{font-size:12px;font-weight:800;color:var(--muted2);margin-bottom:6px}
.home-comment-mention span{color:var(--accent)}
.home-comment-author-badge{display:inline-flex;align-items:center;justify-content:center;min-height:22px;padding:0 10px;border-radius:999px;background:rgba(181,255,23,.14);border:1px solid rgba(181,255,23,.26);color:var(--accent);font-size:12px;font-weight:900}
.home-comment-text{font-size:15px;line-height:1.5}
.home-comment-attachment{width:100%;display:flex;align-items:center;gap:12px;margin-top:10px;padding:10px 12px;border:1px solid rgba(255,255,255,.08);border-radius:18px;background:rgba(8,11,17,.44);color:#fff;cursor:pointer;text-align:left}
.home-comment-attachment-thumb{width:88px;height:62px;flex:0 0 auto;border-radius:16px;overflow:hidden;background:#0d1017}
.home-comment-attachment-thumb img{width:100%;height:100%;object-fit:cover;display:block}
.home-comment-attachment-meta{display:flex;flex-direction:column;min-width:0;gap:4px}
.home-comment-attachment-name{font-size:14px;font-weight:900;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.home-comment-attachment-caption{font-size:12px;color:var(--muted2);font-weight:800}
.home-comment-actions{display:flex;align-items:center;gap:14px;margin-top:12px}
.home-comment-reply-btn,.home-comment-delete-btn{
  background:none;border:none;padding:3px 8px;
  font:inherit;font-size:11px;font-weight:900;cursor:pointer;
  border-radius:6px;display:inline-flex;align-items:center;gap:4px;transition:.12s;
}
.home-comment-reply-btn{color:var(--accent)}
.home-comment-reply-btn svg{stroke:var(--accent)!important;width:11px;height:11px}
.home-comment-delete-btn{color:rgba(255,100,100,.7)}
.home-comment-delete-btn svg{stroke:rgba(255,100,100,.7)!important;width:11px;height:11px}
.home-comment-reply-btn:hover{background:rgba(85,255,85,.08)}
.home-comment-delete-btn:hover{background:rgba(255,100,100,.08)}
.home-comment-reply-strip{
  display:flex;align-items:center;gap:7px;
  padding:6px 14px;background:rgba(85,255,85,.05);
  border-top:1px solid rgba(85,255,85,.12);
  font-size:11px;font-weight:900;color:var(--accent);
}
.home-comment-reply-strip[hidden]{display:none!important}
.home-comment-reply-strip-x{
  margin-left:auto;width:20px;height:20px;border-radius:50%;
  background:rgba(255,255,255,.07);border:none;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
}
.home-comment-reply-strip-x svg{stroke:rgba(200,218,255,.5)!important;width:9px;height:9px}
.home-comment-photo-preview{
  display:flex;align-items:center;gap:9px;
  padding:7px 14px;background:rgba(255,255,255,.03);
  border-top:1px solid rgba(255,255,255,.05);
}
.home-comment-photo-preview[hidden]{display:none!important}
.home-comment-photo-thumb{width:40px;height:40px;border-radius:8px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);overflow:hidden;flex-shrink:0}
.home-comment-photo-thumb img{width:100%;height:100%;object-fit:cover}
.home-comment-photo-meta{flex:1;min-width:0}
.home-comment-photo-name{font-size:11px;font-weight:900;color:rgba(200,218,255,.8);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.home-comment-photo-size{font-size:9px;color:rgba(200,218,255,.4);font-weight:700}
.home-comment-photo-remove{width:22px;height:22px;border-radius:7px;border:none;background:rgba(255,255,255,.07);cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:11px;flex-shrink:0}
.home-comment-compose{display:flex;align-items:center;gap:8px;padding:8px 12px}
.home-comment-attach{width:34px;height:34px;border-radius:10px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;flex-shrink:0;cursor:pointer}
.home-comment-attach input{display:none}
.home-comment-attach svg{stroke:rgba(200,218,255,.5);width:16px;height:16px}
.home-comment-input-wrap{flex:1;min-width:0}
.home-comment-input-wrap input{width:100%;height:38px;padding:0 13px;border:1.5px solid rgba(255,255,255,.09);border-radius:10px;background:rgba(255,255,255,.06);font:inherit;font-size:13px;font-weight:700;color:#fff;outline:none}
.home-comment-input-wrap input:focus{border-color:rgba(85,255,85,.3);background:rgba(255,255,255,.08)}
.home-comment-input-wrap input::placeholder{color:rgba(200,218,255,.3)}
.home-comment-send{width:36px;height:36px;border-radius:10px;border:none;background:linear-gradient(135deg,var(--accent),#63ff3d);display:flex;align-items:center;justify-content:center;flex-shrink:0;cursor:pointer}
.home-comment-send svg{stroke:#101600!important;width:16px;height:16px}


@media (max-width:430px){
    body{padding-left:10px;padding-right:10px}
    .home-feed-icon-btn{width:48px;height:48px}
    .home-feed-tabs{top:86px}
    .home-feed-card{padding:14px;border-radius:24px}
    .home-feed-avatar-wrap{width:44px;height:44px;border-radius:15px}
    .home-feed-avatar{border-radius:13px}
    .home-feed-name{max-width:138px;font-size:15px}
    .home-feed-time{font-size:12px}
    .home-feed-text{margin-left:0;font-size:16px}
    .home-feed-media-item{height:260px}
    .home-feed-actions{padding:9px 6px}
    .home-feed-action{gap:5px;font-size:13px}

    .home-feed-fab{width:66px;height:66px;right:16px}
}
.home-feed-shell{max-width:680px}
.home-feed-logo{
    flex:1 1 auto;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    font-size:clamp(14px,4.25vw,21px);
    line-height:1;
    letter-spacing:-.07em;
}
.home-feed-top-actions{gap:7px}
.home-feed-icon-btn{width:42px;height:42px}
.home-feed-icon-btn svg{width:21px;height:21px}

.home-feed-tabs{
    top:70px;
    margin-bottom:10px;
    padding:4px;
    border-radius:20px;
}
.home-feed-tab{
    padding:10px 6px;
    border-radius:16px;
    font-size:14px;
    line-height:1;
}

.home-feed-card{
    padding:12px;
    margin-bottom:10px;
    border-radius:21px;
    box-shadow:0 16px 48px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.03);
}
.home-feed-card::before{
    background:radial-gradient(circle at 8% 0,rgba(181,255,23,.045),transparent 30%),
               linear-gradient(180deg,rgba(255,255,255,.018),transparent 36%);
}
.home-feed-card-head{
    grid-template-columns:minmax(0,1fr) auto auto;
    gap:6px;
    margin-bottom:8px;
}
.home-feed-author{gap:8px;align-items:center;overflow:hidden}
.home-feed-avatar-wrap{
    width:40px;
    height:40px;
    border-radius:14px;
}
.home-feed-avatar{border-radius:12px}
.home-feed-author-body{
    min-width:0;
    max-width:100%;
    display:flex;
    flex-direction:column;
    gap:2px;
}
.home-feed-author-line{
    min-width:0;
    max-width:100%;
    overflow:hidden;
}
.home-feed-name{
    max-width:clamp(86px,28vw,190px);
    font-size:14px;
    line-height:1.05;
}
.home-feed-author-line img,
.home-feed-author-line video{
    width:15px!important;
    height:15px!important;
    max-width:15px!important;
    max-height:15px!important;
    object-fit:contain;
}
.home-feed-author-sub{
    display:flex;
    align-items:center;
    min-width:0;
}
.home-feed-wall-target{
    max-width:clamp(96px,34vw,190px);
    font-size:10px;
}
.home-feed-badge{
    max-width:86px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    padding:2px 6px;
    font-size:9px;
    line-height:1.25;
}
.home-feed-time{
    font-size:11px;
    max-width:72px;
    overflow:hidden;
    text-overflow:ellipsis;
}
.home-feed-menu{
    width:30px;
    height:30px;
    border-radius:11px;
}
.home-feed-menu svg{width:18px!important;height:18px!important}
.home-feed-news-label{
    margin:0 0 6px;
    padding:4px 7px;
    border-radius:9px;
    font-size:10px;
}
.home-feed-post-title{
    margin-bottom:6px;
    font-size:18px;
    line-height:1.16;
}
.home-feed-text{
    margin:0 0 9px;
    font-size:15px;
    line-height:1.38;
}
.home-feed-card-news .home-feed-text,
.home-feed-card-news .home-feed-post-title,
.home-feed-card-news .home-feed-news-label{margin-left:0}
.home-feed-media{margin:9px 0}
.home-feed-media-track{gap:8px}
.home-feed-media-item{
    height:clamp(180px,54vw,330px);
    border-radius:18px;
}
.home-feed-media.is-gallery .home-feed-media-item{flex-basis:min(78%,340px)}
.home-feed-media-count{
    right:9px;
    top:9px;
    padding:5px 8px;
    font-size:12px;
}
.home-feed-actions{
    padding:7px 6px;
    border-radius:16px;
    gap:3px;
}
.home-feed-action{
    gap:5px;
    font-size:12px;
}
.home-feed-action svg{width:18px!important;height:18px!important}

.home-feed-fab{
    width:58px;
    height:58px;
    right:16px;
    bottom:calc(92px + var(--safe-bottom));
    box-shadow:0 0 24px rgba(181,255,23,.3),0 12px 28px rgba(0,0,0,.45);
}
.home-feed-fab svg{width:29px!important;height:29px!important}


.home-bottom-link{
    gap:3px;
    font-size:10px;
    line-height:1.05;
    font-weight:850;
    overflow:hidden;
}
.home-bottom-link svg{width:21px!important;height:21px!important}
.home-bottom-link span{
    display:block;
    max-width:62px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-align:center;
}


.home-bottom-online{
    max-width:70px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}
.home-bottom-online::before{
    width:6px;
    height:6px;
    flex:0 0 auto;
}

@media (max-width:430px){
    body{padding:10px 8px calc(96px + var(--safe-bottom))}
    .home-feed-logo{font-size:clamp(13px,4.15vw,18px)}
    .home-feed-icon-btn{width:40px;height:40px}
    .home-feed-tabs{top:66px}
    .home-feed-tab{font-size:13px;padding:9px 4px}
    .home-feed-card{padding:11px;border-radius:20px}
    .home-feed-name{max-width:clamp(78px,27vw,138px);font-size:14px}
    .home-feed-time{font-size:10.5px;max-width:64px}
    .home-feed-badge{max-width:74px;font-size:8.5px}
    .home-feed-post-title{font-size:17px}
    .home-feed-text{font-size:14.5px}
    .home-feed-media-item{height:220px}
    .home-feed-media.is-gallery .home-feed-media-item{flex-basis:76%}
    .home-bottom-link{font-size:9.5px}
    .home-bottom-link span{max-width:58px}

    .home-bottom-online{font-size:9px;max-width:64px}
}
.home-feed-unread-badge{
    position:absolute;
    right:-2px;
    top:-3px;
    min-width:18px;
    height:18px;
    padding:0 5px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#ff2d55;
    color:#fff;
    font-size:10px;
    font-weight:900;
    box-shadow:0 0 14px rgba(255,45,85,.55);
}
.home-feed-message-btn{position:relative}
.home-feed-actions{grid-template-columns:repeat(3,1fr)}
.home-feed-fab{
    background:radial-gradient(circle at 42% 28%,rgba(220,255,105,.92),rgba(181,255,23,.72) 45%,rgba(54,119,16,.86) 100%);
    transform:translateY(0) scale(1);
    transition:transform .22s ease,opacity .22s ease,filter .22s ease;
}
.home-feed-fab.is-hidden{transform:translateY(18px) scale(.86);opacity:0;pointer-events:none}
body{
    min-height:100dvh;
    background-attachment:fixed;
    padding-bottom:calc(116px + var(--safe-bottom));
}
.home-feed-shell{min-height:calc(100dvh - 118px)}

.home-bottom-link span{max-width:54px}

.home-bottom-online{max-width:58px}
.home-feed-loading{
    position:relative;
    opacity:1;
    pointer-events:none;
}
.home-feed-loading::after{
    content:"";
    position:absolute;
    left:50%;
    top:14px;
    width:28px;
    height:28px;
    margin-left:-14px;
    border-radius:999px;
    border:3px solid rgba(181,255,23,.16);
    border-top-color:var(--accent);
    animation:homeSpin .75s linear infinite;
}
@keyframes homeSpin{to{transform:rotate(360deg)}}

.home-sheet-backdrop{
    position:fixed;
    inset:0;
    z-index:900;
    display:none;
    background:rgba(0,0,0,.58);
    backdrop-filter:blur(8px);
}
.home-sheet-backdrop.is-open{display:block}
.home-bottom-sheet{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:910;
    display:none;
    max-height:86dvh;
    padding:10px 14px calc(14px + var(--safe-bottom));
    border:1px solid rgba(255,255,255,.09);
    border-bottom:0;
    border-radius:28px 28px 0 0;
    background:linear-gradient(180deg,rgba(24,27,34,.98),rgba(11,13,19,.98));
    box-shadow:0 -22px 70px rgba(0,0,0,.68);
    backdrop-filter:blur(24px);
}
.home-bottom-sheet.is-open{display:flex;flex-direction:column}
.home-sheet-handle{
    width:60px;
    height:5px;
    border-radius:999px;
    background:rgba(255,255,255,.35);
    margin:4px auto 16px;
}
.home-sheet-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:0 4px 14px;
    border-bottom:1px solid rgba(255,255,255,.08);
}
.home-sheet-title{font-size:22px;font-weight:900}
.home-sheet-close{
    width:38px;
    height:38px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.09);
    background:rgba(255,255,255,.05);
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}
.home-comments-sort{
    display:flex;
    gap:8px;
    padding:12px 4px 8px;
}
.home-comments-sort button{
    border:1px solid rgba(255,255,255,.08);
    border-radius:999px;
    background:rgba(255,255,255,.04);
    color:rgba(255,255,255,.68);
    padding:8px 12px;
    font-weight:800;
    cursor:pointer;
}
.home-comments-sort button.is-active{
    border-color:rgba(181,255,23,.45);
    color:var(--accent);
    background:rgba(181,255,23,.1);
}
.home-comments-list{
    flex:1 1 auto;
    overflow:auto;
    padding:4px 2px 12px;
}
.home-comment-item{
    display:flex;
    gap:10px;
    padding:12px 4px;
    border-bottom:1px solid rgba(255,255,255,.06);
}
.home-comment-item.is-reply{
    margin-left:42px;
    padding-left:10px;
    border-left:2px solid rgba(181,255,23,.24);
}
@media(max-width:430px){
    .home-comment-item.is-reply{margin-left:24px}
}

.home-comment-avatar{
    width:36px;
    height:36px;
    border-radius:13px;
    object-fit:cover;
    background:#111;
    flex:0 0 auto;
}
.home-comment-body{min-width:0;flex:1}
.home-comment-head{
    display:flex;
    align-items:center;
    gap:5px;
    min-width:0;
    margin-bottom:4px;
}
.home-comment-name{
    min-width:0;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    font-weight:900;
    color:#fff;
}
.home-comment-time{
    flex:0 0 auto;
    color:var(--muted2);
    font-size:12px;
    font-weight:800;
}
.home-comment-text{
    color:#dfe4ef;
    line-height:1.42;
    overflow-wrap:anywhere;
}
.home-comment-actions{
    display:flex;
    gap:10px;
    margin-top:5px;
}
.home-comment-reply-btn{
    background:none;
    border:none;
    color:rgba(181,255,23,.65);
    font-size:11px;
    font-weight:800;
    cursor:pointer;
    padding:0;
    font-family:inherit;
    line-height:1;
}
.home-comment-reply-btn:hover{color:#b5ff17;}
.home-comment-img img{max-width:100%;max-height:180px;border-radius:8px;margin-top:6px;}
.home-comments-empty{
    padding:30px 12px;
    text-align:center;
    color:var(--muted);
    font-weight:800;
}
.home-comment-form{
    display:flex;
    flex-direction:column;
    gap:0;
    padding-top:10px;
    border-top:1px solid rgba(255,255,255,.08);
    flex-shrink:0;
}
.home-comment-form input,
.home-search-box input,
.home-create-form textarea{
    width:100%;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    background:rgba(255,255,255,.055);
    color:#fff;
    outline:0;
}
.home-comment-form input{height:48px;padding:0 14px}
.home-comment-form button[type=submit],
.home-create-submit{
    border:0;
    border-radius:18px;
    background:linear-gradient(135deg,var(--accent),#63ff3d);
    color:#101600;
    font-weight:900;
    padding:0 16px;
    cursor:pointer;
    min-height:44px;
    min-width:44px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.home-comment-form button[type=submit] svg{
    stroke:#101600 !important;
}
.home-search-box{
    display:flex;
    flex-direction:column;
    gap:12px;
    padding:4px;
}
.home-search-box input{
    height:54px;
    padding:0 16px;
    font-size:16px;
}
.home-search-state{
    color:var(--muted);
    font-weight:800;
    padding:12px 2px;
}
.home-create-form{
    display:flex;
    flex-direction:column;
    gap:12px;
    padding:4px;
}
.home-create-form textarea{
    min-height:110px;
    resize:vertical;
    padding:14px;
    line-height:1.45;
}
.home-upload-button{
    width:max-content;
    max-width:100%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:38px;
    padding:0 13px;
    border:1px dashed rgba(181,255,23,.34);
    border-radius:999px;
    color:var(--accent);
    background:rgba(181,255,23,.07);
    font-size:13px;
    font-weight:900;
    cursor:pointer;
}
.home-upload-button:hover{background:rgba(181,255,23,.11);border-color:rgba(181,255,23,.52)}
.home-upload-button input{display:none}
.home-photo-preview{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    min-height:0;
}
.home-photo-preview:empty{display:none}
.home-photo-preview-item{
    position:relative;
    width:82px;
    height:82px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    overflow:hidden;
    background:#0b0d12;
}
.home-photo-preview-item img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}
.home-preview-loader{position:absolute;inset:0;display:grid;place-items:center;color:var(--muted);font-weight:900}
.home-photo-preview-item button{
    position:absolute;
    right:4px;
    top:4px;
    width:28px;
    height:28px;
    border:0;
    border-radius:999px;
    background:rgba(0,0,0,.62);
    color:#fff;
}
.home-create-submit{
    min-height:52px;
    font-size:16px;
}
@media (max-width:430px){

    .home-bottom-link span{max-width:48px}

    .home-feed-fab{bottom:calc(88px + var(--safe-bottom));right:18px;width:56px;height:56px}
    .home-feed-top-actions{gap:7px}
    .home-feed-auth-actions{gap:5px}
    .home-feed-auth-btn{min-height:38px;padding:0 10px;font-size:12px}
    .home-feed-auth-btn .long{display:none}
    .home-feed-auth-btn .short{display:inline}
    .home-feed-icon-btn{width:46px;height:46px}
}
.home-feed-author-line img[title="Подтвержденный аккаунт"],
.home-comment-head img[title="Подтвержденный аккаунт"] {
    filter: none !important;
    flex-shrink: 0;
    border-radius: 3px;
}
.home-feed-author-line img:not([title="Подтвержденный аккаунт"]),
.home-comment-head img:not([title="Подтвержденный аккаунт"]),
.home-feed-author-line video,
.home-comment-head video {
    border-radius: 6px !important;
}
.home-feed-badge { border-radius: 10px; }
.home-bottom-sheet {
    transform: translateY(100%);
    transition: transform .28s cubic-bezier(.32,.72,0,1);
    display: flex !important;
    pointer-events: none;
    visibility: hidden;
}
.home-bottom-sheet.is-open {
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
}
.home-create-form-bar {
    display: flex;
    align-items: center;
    gap: 8px;
}
.home-create-form-bar .home-create-submit { flex: 1; min-height: 44px; font-size: 15px; }
.home-create-attach-btn {
    width: 44px; height: 44px;
    border: 1px dashed rgba(181,255,23,.38);
    border-radius: 14px;
    background: rgba(181,255,23,.06);
    color: var(--accent);
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer; flex-shrink: 0;
    transition: background .15s, border-color .15s;
}
.home-create-attach-btn:hover { background: rgba(181,255,23,.13); border-color: rgba(181,255,23,.6); }
.home-create-attach-btn input { display: none; }
.home-feed-tab { position: relative; }
.home-feed-tab-badge {
    position: absolute;
    top: 4px; right: 6px;
    min-width: 16px; height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: #ff2d55;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px rgba(255,45,85,.55);
    line-height: 1;
}
.home-feed-tab.is-active .home-feed-tab-badge {
    background: rgba(0,0,0,.35);
    box-shadow: none;
    color: rgba(0,0,0,.7);
}
#toast { max-width: min(340px, 90vw); font-size: 14px; text-align: center; }
#toast.is-error { border-color: rgba(255,45,85,.4); }
#toast.is-success { border-color: rgba(181,255,23,.4); }
.home-sheet-close {
    flex-shrink: 0;
    min-width: 38px;
    min-height: 38px;
}
.home-sheet-close svg {
    width: 20px !important;
    height: 20px !important;
    pointer-events: none;
}
.home-bottom-link { position: relative; }
#pb-spa-loader {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 3px;
    z-index: 999998;
    background: linear-gradient(90deg, #b7ff19, #55ff55, #b7ff19);
    background-size: 200% 100%;
    animation: pbSpaBarMove 1s linear infinite;
    display: none;
}
@keyframes pbSpaBarMove {
    0%   { background-position: 200% 0 }
    100% { background-position: -200% 0 }
}
.pb-skeleton-card {
    padding: 14px; margin-bottom: 10px; border-radius: 21px;
    background: rgba(16,20,29,.7); border: 1px solid rgba(255,255,255,.06);
}


.pb-admin-quick-link{
    position:fixed;
    right:14px;
    bottom:calc(104px + var(--safe-bottom));
    z-index:9991;
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:8px 11px;
    border-radius:999px;
    border:1px solid rgba(181,255,23,.35);
    background:rgba(10,14,20,.86);
    color:#b7ff19;
    font-size:12px;
    font-weight:900;
    text-decoration:none;
    box-shadow:0 10px 28px rgba(0,0,0,.42);
    backdrop-filter:blur(16px);
}
.pb-admin-quick-link svg{width:16px;height:16px}


.home-feed-admin-btn{
    color:var(--accent);
    border-color:rgba(181,255,23,.34);
    background:rgba(181,255,23,.08);
}
.pb-admin-quick-link{display:none!important}
body.pb-sheet-open .home-bottom-nav,
body.pb-modal-open
body.pb-sheet-open{padding-bottom:0!important}
.home-bottom-sheet{padding-bottom:calc(18px + env(safe-area-inset-bottom,0px))!important;z-index:99960!important}
.home-sheet-backdrop{z-index:99950!important}
.home-comment-form{margin-bottom:env(safe-area-inset-bottom,0px)!important}
.home-feed-shell{
    width:min(720px,100%);
}
.home-feed-logo{
    white-space:nowrap;
    font-size:clamp(15px,4.55vw,25px);
    letter-spacing:-.075em;
    line-height:1;
}
.home-feed-top-actions{gap:8px}
.home-feed-icon-btn{
    width:46px;
    height:46px;
    border-radius:999px;
    border-color:rgba(255,255,255,.10);
    background:radial-gradient(circle at 50% 20%,rgba(255,255,255,.08),rgba(255,255,255,.025));
    box-shadow:inset 0 1px 0 rgba(255,255,255,.055),0 10px 24px rgba(0,0,0,.22);
}
.home-feed-icon-btn.is-primary,
.home-feed-admin-btn{
    border-color:rgba(181,255,23,.48);
    background:radial-gradient(circle at 50% 20%,rgba(181,255,23,.17),rgba(181,255,23,.055));
    box-shadow:0 0 20px rgba(181,255,23,.14), inset 0 1px 0 rgba(255,255,255,.04);
}
.home-feed-icon-btn svg{width:22px;height:22px}
.home-feed-unread-badge{
    right:-1px;
    top:-3px;
    min-width:17px;
    height:17px;
    padding:0 5px;
    font-size:9px;
    box-shadow:0 0 10px rgba(255,45,85,.48);
}
.home-feed-tabs{
    top:75px;
    padding:4px;
    margin-bottom:10px;
    border-radius:22px;
    background:rgba(12,15,22,.82);
    box-shadow:0 10px 28px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.03);
}
.home-feed-tab{
    min-height:40px;
    padding:9px 6px;
    border-radius:18px;
    font-size:15px;
    line-height:1;
    font-weight:900;
}
.home-feed-tab-badge{
    top:3px;
    right:5px;
    min-width:16px;
    height:16px;
    font-size:9px;
}
.home-feed-card{
    padding:12px;
    margin-bottom:10px;
    border-radius:23px;
    border-color:rgba(255,255,255,.075);
    background:linear-gradient(145deg,rgba(14,18,25,.88),rgba(7,9,14,.86));
    box-shadow:0 12px 36px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.035);
}
.home-feed-card::before{
    background:radial-gradient(circle at 10% 0,rgba(181,255,23,.06),transparent 31%),
               linear-gradient(180deg,rgba(255,255,255,.022),transparent 38%);
}
.home-feed-card-head{
    grid-template-columns:minmax(0,1fr) auto 32px;
    gap:6px;
    margin-bottom:7px;
}
.home-feed-author{gap:8px}
.home-feed-avatar-wrap{
    width:42px;
    height:42px;
    border-radius:15px;
    padding:1.5px;
}
.home-feed-avatar{border-radius:13px}
.home-feed-author-line{gap:4px}
.home-feed-author-sub{gap:4px}
.home-feed-name{
    max-width:clamp(112px,38vw,245px);
    font-size:15px;
    line-height:1.08;
}
.home-feed-card .verify-img,
.home-feed-card .home-feed-author-line img,
.home-feed-card .home-feed-author-line video{
    max-width:16px!important;
    max-height:16px!important;
}
.home-feed-badge{
    padding:2px 6px;
    font-size:9px;
}
.home-feed-wall-target{
    font-size:10.5px;
    margin-top:2px;
}
.home-feed-time{
    font-size:11.5px;
    color:rgba(210,218,236,.42);
}
.home-feed-menu{
    width:32px;
    height:32px;
    border-radius:12px;
    color:rgba(232,238,250,.58);
}
.home-feed-menu:hover{background:rgba(255,255,255,.045)}
.home-feed-text{
    margin:2px 0 9px 50px;
    font-size:15.5px;
    line-height:1.38;
}
.home-feed-card-news .home-feed-text,
.home-feed-card-news .home-feed-post-title,
.home-feed-card-news .home-feed-news-label{margin-left:0}
.home-feed-post-title{
    font-size:18px;
    margin-bottom:6px;
}
.home-feed-media{
    margin:9px 0 9px;
}
.home-feed-media-track{
    gap:8px;
}
.home-feed-media-item{
    height:clamp(205px,54vw,382px);
    border-radius:19px;
    border-color:rgba(255,255,255,.08);
    background:rgba(4,6,10,.52);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
}
.home-feed-media.is-single .home-feed-media-item{
    flex-basis:100%;
}
.home-feed-media.is-gallery .home-feed-media-item{
    flex-basis:min(72%,360px);
    height:clamp(168px,43vw,286px);
}
.home-feed-media-item::before{
    inset:-22px;
    filter:blur(28px) saturate(1.22) brightness(.92);
    transform:scale(1.13);
    opacity:.72;
}
.home-feed-media-item::after{
    background:linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.18));
}
.home-feed-media-item img{
    object-fit:contain;
}
.home-feed-media.is-single .home-feed-media-item img{
    object-fit:contain;
}
.home-feed-media-count{
    right:9px;
    top:9px;
    padding:5px 8px;
    font-size:11px;
    background:rgba(0,0,0,.48);
}
.home-feed-media-more{
    font-size:24px;
    background:rgba(0,0,0,.46);
}
.home-feed-actions{
    min-height:42px;
    padding:8px 10px;
    gap:4px;
    border-radius:18px;
    background:rgba(0,0,0,.20);
    border-color:rgba(255,255,255,.065);
}
.home-feed-action{
    gap:6px;
    font-size:14px;
}
.home-feed-action svg{
    width:19px;
    height:19px;
}
.home-feed-fab{
    width:66px;
    height:66px;
    right:18px;
    bottom:calc(96px + var(--safe-bottom));
    box-shadow:0 0 30px rgba(181,255,23,.34),0 14px 34px rgba(0,0,0,.46);
}
.home-feed-fab svg{
    width:32px;
    height:32px;
}

.home-bottom-link{
    gap:4px;
    font-size:11px;
}
.home-bottom-link svg{
    width:23px;
    height:23px;
}


.home-bottom-online{
    font-size:9.5px;
}
@media (max-width:430px){
    body{
        padding-left:9px;
        padding-right:9px;
        padding-top:9px;
        padding-bottom:calc(102px + var(--safe-bottom));
    }
    .home-feed-logo{font-size:clamp(14px,4.7vw,18px)}
    .home-feed-icon-btn{width:42px;height:42px}
    .home-feed-icon-btn svg{width:20px;height:20px}
    .home-feed-top-actions{gap:7px}
    .home-feed-tabs{top:68px;border-radius:21px;margin-bottom:9px}
    .home-feed-tab{min-height:38px;padding:8px 4px;font-size:13.5px}
    .home-feed-card{padding:11px;border-radius:21px;margin-bottom:9px}
    .home-feed-avatar-wrap{width:40px;height:40px;border-radius:14px}
    .home-feed-avatar{border-radius:12px}
    .home-feed-name{max-width:clamp(98px,34vw,150px);font-size:14.5px}
    .home-feed-time{font-size:10.5px;max-width:68px;overflow:hidden;text-overflow:ellipsis}
    .home-feed-text{margin-left:48px;font-size:15px;line-height:1.36}
    .home-feed-media-item{height:clamp(198px,56vw,300px);border-radius:18px}
    .home-feed-media.is-gallery .home-feed-media-item{flex-basis:76%;height:clamp(148px,40vw,230px)}
    .home-feed-actions{min-height:40px;padding:7px 8px;border-radius:17px}
    .home-feed-action{font-size:13px}
    .home-feed-fab{width:64px;height:64px;right:16px;bottom:calc(94px + var(--safe-bottom))}

    .home-bottom-link{font-size:10px;gap:3px}
    .home-bottom-link svg{width:22px;height:22px}


    .home-bottom-online{font-size:9px}
}
.home-feed-logo{
    flex:1 1 auto !important;
    min-width:0 !important;
    max-width:none !important;
    overflow:visible !important;
    text-overflow:clip !important;
    white-space:nowrap !important;
    font-size:clamp(12px,3.85vw,18px) !important;
    letter-spacing:-.085em !important;
}
.home-feed-top-actions{
    flex:0 0 auto !important;
    min-width:max-content;
}
.home-feed-card{
    overflow:visible !important;
}
.home-feed-menu-wrap{
    position:relative !important;
    z-index:80 !important;
    overflow:visible !important;
}
.home-feed-menu{
    position:relative;
    z-index:81;
}
.home-feed-menu-popover{
    z-index:9995 !important;
    pointer-events:auto;
}
.home-feed-menu-popover:not([hidden]){
    display:block !important;
}
.home-feed-card-news .home-feed-author-body,
.home-feed-card-news .home-feed-author-sub{
    overflow:visible !important;
}
.home-feed-card-news .home-feed-badge,
.home-feed-badge{
    max-width:none !important;
    overflow:visible !important;
    text-overflow:clip !important;
    white-space:nowrap !important;
}
.home-feed-card-news .home-feed-badge{
    font-size:8px !important;
    padding:2px 6px !important;
    line-height:1.1 !important;
    letter-spacing:-.01em;
}
@media (max-width:430px){
    .home-feed-logo{
        font-size:clamp(11px,3.45vw,14.5px) !important;
        letter-spacing:-.09em !important;
    }
    .home-feed-icon-btn{
        width:40px !important;
        height:40px !important;
    }
    .home-feed-icon-btn svg{
        width:19px !important;
        height:19px !important;
    }
    .home-feed-card-news .home-feed-badge{
        font-size:7.5px !important;
        padding:2px 5px !important;
    }
}
.home-feed-card,
.home-feed-card-head,
.home-feed-menu-wrap{
    overflow:visible !important;
}
.home-feed-card-head{
    z-index:30 !important;
}
.home-feed-menu-wrap{
    z-index:9998 !important;
}
.home-feed-menu{
    z-index:9999 !important;
}
.home-feed-menu-popover{
    right:0 !important;
    top:38px !important;
    z-index:10050 !important;
    width:196px !important;
    min-width:0 !important;
    max-width:calc(100vw - 34px) !important;
    padding:6px !important;
    border-radius:16px !important;
    background:rgba(6,9,15,.985) !important;
    border:1px solid rgba(181,255,23,.22) !important;
    box-shadow:0 18px 48px rgba(0,0,0,.68),0 0 0 1px rgba(255,255,255,.04) inset !important;
    backdrop-filter:blur(18px) !important;
    -webkit-backdrop-filter:blur(18px) !important;
    text-align:left !important;
    overflow:hidden !important;
    pointer-events:auto !important;
}
.home-feed-menu-popover:not([hidden]){
    display:block !important;
}
.home-feed-menu-popover a,
.home-feed-menu-popover button,
.home-feed-menu-item{
    box-sizing:border-box !important;
    width:100% !important;
    min-height:38px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    gap:8px !important;
    padding:9px 11px !important;
    border-radius:11px !important;
    text-align:left !important;
    font-size:13px !important;
    line-height:1.15 !important;
    font-weight:900 !important;
    opacity:1 !important;
    text-decoration:none !important;
    white-space:nowrap !important;
}
.home-feed-menu-popover a{
    color:#f4f7ff !important;
    background:rgba(255,255,255,.045) !important;
}
.home-feed-menu-popover button,
.home-feed-menu-hide,
[data-feed-hide-post]{
    color:#b7ff19 !important;
    -webkit-text-fill-color:#b7ff19 !important;
    background:rgba(181,255,23,.10) !important;
    border:0 !important;
    cursor:pointer !important;
}
.home-feed-menu-popover button:disabled{
    opacity:.65 !important;
}
@media (max-width:430px){
    .home-feed-menu-popover{
        width:184px !important;
        right:-2px !important;
    }
}
body.pb-has-topbar .home-feed-shell{
    padding-top:12px !important;
}
.home-feed-tabs{
    position:relative !important;
    top:auto !important;
    z-index:20 !important;
    width:100% !important;
    margin:0 0 10px 0 !important;
    padding:4px !important;
    border-radius:22px !important;
    background:rgba(12,15,22,.86) !important;
    box-shadow:0 10px 28px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.035) !important;
}
.home-feed-tab{
    min-height:40px !important;
    padding:9px 6px !important;
    border-radius:18px !important;
    font-size:15px !important;
    line-height:1 !important;
}
.home-feed-panel.is-active{
    position:relative !important;
    z-index:1 !important;
    padding-top:0 !important;
}
.home-feed-panel.is-active > .home-feed-card:first-child{
    margin-top:0 !important;
}
@media (max-width:430px){
    body.pb-has-topbar{
        padding-top:56px !important;
    }
    body.pb-has-topbar .home-feed-shell{
        padding-top:12px !important;
    }
    .home-feed-tabs{
        position:relative !important;
        top:auto !important;
        margin-bottom:10px !important;
        border-radius:20px !important;
    }
    .home-feed-tab{
        min-height:38px !important;
        padding:8px 4px !important;
        border-radius:17px !important;
        font-size:13.5px !important;
    }
}
@media (max-width:380px){
    body.pb-has-topbar .home-feed-shell{
        padding-top:10px !important;
    }
    .home-feed-tabs{
        margin-bottom:9px !important;
    }
}
.home-feed-card{
    contain:layout paint style;
}
.home-feed-media-item img{
    image-rendering:auto;
}
@media (max-width:768px), (hover:none) and (pointer:coarse){
    body{
        background-attachment:scroll !important;
    }
    body::before,
    body::after{
        display:none !important;
    }
    .home-feed-tabs,
    .home-feed-card,
    .home-feed-media-count,
    .home-feed-media-more,
    .home-sheet-backdrop,
    .home-bottom-sheet,
    .home-comment-card,
    .pb-admin-quick-link{
        backdrop-filter:none !important;
        -webkit-backdrop-filter:none !important;
    }
    .home-feed-tabs{
        background:#0c0f16 !important;
    }
    .home-feed-card{
        background:linear-gradient(145deg,#10141d,#080b11) !important;
        box-shadow:0 12px 34px rgba(0,0,0,.38),inset 0 1px 0 rgba(255,255,255,.025) !important;
    }
    .home-feed-card::before{
        background:linear-gradient(180deg,rgba(255,255,255,.018),transparent 46%) !important;
    }
    .home-feed-media-item{
        isolation:auto !important;
        background:#05070b !important;
        transform:none !important;
        will-change:auto !important;
    }
    .home-feed-media-item::before{
        display:none !important;
        content:none !important;
        filter:none !important;
        transform:none !important;
        background-image:none !important;
    }
    .home-feed-media-item::after{
        background:linear-gradient(180deg,rgba(0,0,0,.015),rgba(0,0,0,.08)) !important;
    }
    .home-feed-media-item img{
        transform:none !important;
        will-change:auto !important;
    }
    .home-bottom-sheet{
        background:#0d1118 !important;
    }
    .home-feed-media-item{
        isolation:isolate !important;
        contain:layout paint !important;
        background:#06080d !important;
    }
    .home-feed-media-item::before{
        display:block !important;
        content:"" !important;
        inset:-14px !important;
        background-image:var(--pb-media-bg) !important;
        background-size:cover !important;
        background-position:center !important;
        filter:blur(15px) saturate(1.08) brightness(.82) !important;
        transform:scale(1.07) !important;
        opacity:.55 !important;
    }
    .home-feed-media-item img{
        backface-visibility:hidden !important;
        -webkit-backface-visibility:hidden !important;
    }
    .home-feed-card{
        contain:layout !important;
    }
    .home-feed-fab{
        bottom:calc(112px + var(--safe-bottom)) !important;
    }
    .home-feed-card{
        contain:none !important;
    }
    .home-feed-media-item{
        contain:layout !important;
        isolation:auto !important;
    }
    .home-feed-media-item::before{
        display:none !important;
    }
    .home-feed-media-item.is-portrait::before{
        display:block !important;
        filter:blur(10px) saturate(1.04) brightness(.78) !important;
        transform:scale(1.045) !important;
        opacity:.46 !important;
    }
    body.pb-sheet-open .home-feed-media-item::before{
        display:none !important;
    }

    .home-sheet-backdrop{
        display:block !important;
        visibility:hidden !important;
        pointer-events:none !important;
        background:rgba(0,0,0,.68) !important;
        touch-action:none !important;
        transition:none !important;
        transform:none !important;
        will-change:auto !important;
        contain:none !important;
    }
    .home-sheet-backdrop.is-open{
        visibility:visible !important;
        pointer-events:auto !important;
    }
    .home-bottom-sheet{
        display:flex !important;
        flex-direction:column !important;
        visibility:hidden !important;
        pointer-events:none !important;
        transform:none !important;
        transition:none !important;
        will-change:auto !important;
        contain:none !important;
        background:#0d1118 !important;
        touch-action:pan-y !important;
    }
    .home-bottom-sheet.is-open{
        visibility:visible !important;
        pointer-events:auto !important;
    }
    .home-comments-list,
    .home-bottom-sheet{
        overscroll-behavior:contain !important;
    }
    body.pb-sheet-open .home-bottom-nav,
    body.pb-sheet-open #home-bottom-nav-bar,
    body.pb-sheet-open .home-feed-fab{
        visibility:hidden !important;
        pointer-events:none !important;
    }
    .home-feed-fab,
    .home-feed-fab.is-hidden{
        transform:none !important;
        will-change:auto !important;
        transition:opacity .12s linear !important;
    }
}
.home-slimecraft-ad{
    position:relative;
    display:grid;
    grid-template-columns:48px minmax(0,1fr) auto;
    align-items:center;
    gap:12px;
    margin:0 0 14px;
    padding:12px 13px;
    border:1px solid rgba(151,255,55,.24);
    border-radius:22px;
    overflow:hidden;
    text-decoration:none;
    color:#f5f8ff;
    background:
        radial-gradient(circle at 8% 12%,rgba(126,255,51,.17),transparent 34%),
        linear-gradient(135deg,#101a12 0%,#0a1110 48%,#080b10 100%);
    box-shadow:0 10px 26px rgba(0,0,0,.28),inset 0 1px 0 rgba(255,255,255,.035);
}
.home-slimecraft-ad::after{
    content:"";
    position:absolute;
    right:-22px;top:-34px;
    width:112px;height:112px;
    border-radius:28px;
    transform:rotate(18deg);
    background:linear-gradient(145deg,rgba(112,255,42,.16),rgba(112,255,42,0));
    pointer-events:none;
}
.home-slimecraft-ad-icon{
    width:48px;height:48px;
    border-radius:15px;
    display:block;
    object-fit:cover;
    object-position:center;
    background:#10180f;
    border:2px solid rgba(207,255,142,.44);
    box-shadow:0 8px 18px rgba(93,232,20,.18);
}
.home-slimecraft-ad-copy{min-width:0;display:flex;flex-direction:column;gap:3px}
.home-slimecraft-ad-kicker{font-size:9px;font-weight:950;letter-spacing:.09em;color:#9cf05e;text-transform:uppercase}
.home-slimecraft-ad-title{font-size:16px;line-height:1.15;font-weight:950;color:#fff}
.home-slimecraft-ad-meta{display:flex;align-items:center;gap:7px;min-width:0;font-size:11px;font-weight:800;color:#94a09a}
.home-slimecraft-ad-meta b{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#d8e3d8;font-weight:850}
.home-slimecraft-ad-status{display:inline-flex;align-items:center;gap:5px;white-space:nowrap}
.home-slimecraft-ad-status i{width:7px;height:7px;border-radius:50%;background:#7e8791;box-shadow:0 0 0 3px rgba(126,135,145,.10)}
.home-slimecraft-ad-status.is-online{color:#9aff54}
.home-slimecraft-ad-status.is-online i{background:#57ed3d;box-shadow:0 0 9px rgba(87,237,61,.72)}
.home-slimecraft-ad-status.is-offline{color:#ff8d8d}
.home-slimecraft-ad-status.is-offline i{background:#ff5b65;box-shadow:0 0 8px rgba(255,91,101,.45)}
.home-slimecraft-ad-cta{
    position:relative;z-index:1;
    min-width:72px;
    height:38px;
    padding:0 12px;
    border-radius:13px;
    display:inline-flex;align-items:center;justify-content:center;
    background:#9dff3e;
    color:#102000;
    font-size:11px;font-weight:950;
    box-shadow:0 7px 18px rgba(104,255,39,.16);
}
@media(max-width:390px){
    .home-slimecraft-ad{grid-template-columns:44px minmax(0,1fr) 34px;gap:10px;padding:11px}
    .home-slimecraft-ad-icon{width:44px;height:44px;border-radius:14px;font-size:10px}
    .home-slimecraft-ad-cta{width:34px;min-width:34px;height:34px;padding:0;font-size:0}
    .home-slimecraft-ad-cta::before{content:"›";font-size:24px;line-height:1;margin-top:-2px}
}
#home-comments-sheet{
    width:min(560px,100vw);height:min(82dvh,720px);max-height:calc(100dvh - 10px);
    padding:0 16px max(8px,env(safe-area-inset-bottom));
    border-radius:26px 26px 0 0;background:#0c1119;
    box-shadow:0 -22px 70px rgba(0,0,0,.52);overflow:hidden
}
#home-comments-sheet .home-sheet-handle{margin:10px auto 8px;width:72px;height:4px;background:rgba(229,235,246,.42)}
#home-comments-sheet .home-sheet-head{flex:0 0 auto;padding:4px 0 12px;border-bottom:1px solid rgba(255,255,255,.07)}
#home-comments-sheet .home-sheet-title{font-size:22px;letter-spacing:-.025em}
#home-comments-sheet .home-sheet-close{width:42px;height:42px;border-radius:14px;background:rgba(255,255,255,.045)}
.home-comments-title-row{display:flex;align-items:baseline;gap:6px;min-width:0}
.home-comments-count{font-size:14px;font-weight:800;color:rgba(224,231,243,.58)}
.home-comments-list{flex:1 1 auto;min-height:0;overflow-y:auto;padding:7px 0 8px;scrollbar-width:thin;overscroll-behavior:contain}
.home-comments-empty{padding:52px 12px;text-align:center;font-size:14px;font-weight:750;color:rgba(214,222,236,.45)}
.home-comment-thread{display:block;border-bottom:1px solid rgba(255,255,255,.055)}
.home-comment-thread:last-child{border-bottom:0}
.home-comment-replies{display:flex;flex-direction:column}
.home-comment-item,.home-comment-item.is-reply{position:relative;display:flex;align-items:flex-start;gap:10px;margin:0;padding:12px 1px;border:0}
.home-comment-item.is-reply{margin-left:22px;padding:9px 1px 11px;border-left:0!important}
.home-comment-thread-line{display:none!important}
.home-comment-avatar{flex:0 0 36px;width:36px;height:36px;border-radius:12px;object-fit:cover;border:1px solid rgba(255,255,255,.075);box-shadow:none}
.home-comment-card{min-width:0;flex:1;padding:0;border:0;border-radius:0;background:none!important;box-shadow:none!important;backdrop-filter:none!important}
.home-comment-head{display:flex;align-items:center;gap:5px;min-width:0;margin:0 0 3px;flex-wrap:nowrap}
.home-comment-name{min-width:0;max-width:55%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:13px;font-weight:900;color:#f3f6fb}
.home-comment-time{margin-left:auto;white-space:nowrap;font-size:10px;font-weight:750;color:rgba(225,232,244,.34)}
.home-comment-author-badge{min-height:17px;padding:0 6px;border-radius:6px;font-size:8px}
.home-comment-mention{display:inline-flex;max-width:100%;margin:0 0 4px;padding:3px 7px;border-radius:7px;background:rgba(151,255,77,.065);color:rgba(226,238,217,.62);font-size:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.home-comment-mention span{color:#a9f45e;font-weight:850}
.home-comment-text{font-size:14px;line-height:1.42;color:rgba(241,244,250,.9);overflow-wrap:anywhere}
.home-comment-actions{display:flex;align-items:center;gap:14px;margin-top:6px}
.home-comment-reply-btn,.home-comment-delete-btn{display:inline-flex;align-items:center;gap:5px;padding:2px 0;border:0!important;border-radius:0;background:none!important;font-size:10px;font-weight:850}
.home-comment-reply-btn{color:#9ee94a}.home-comment-delete-btn{color:#e26c75}
.home-comment-reply-btn .pb-lucide,.home-comment-delete-btn .pb-lucide{width:12px!important;height:12px!important}
.home-comment-attachment{margin-top:7px;padding:7px;border-radius:11px;background:rgba(255,255,255,.028);border:1px solid rgba(255,255,255,.06)}
.home-comment-attachment-thumb{width:58px;height:44px;border-radius:9px}.home-comment-attachment-name{font-size:11px}.home-comment-attachment-caption{font-size:10px}
.home-comment-form{flex:0 0 auto;display:flex;flex-direction:column;gap:7px;margin:0;padding:9px 0 max(3px,env(safe-area-inset-bottom));border-top:1px solid rgba(255,255,255,.07);background:#0c1119}
.home-comment-reply-strip{box-sizing:border-box;display:flex;align-items:center;gap:7px;width:100%;min-width:0;margin:0;padding:7px 9px;border:1px solid rgba(157,239,75,.16);border-radius:10px;background:rgba(133,220,52,.055);overflow:hidden;color:#b8f56c;font-size:11px;font-weight:800}
.home-comment-reply-strip>span:not(.pb-lucide){min-width:0;flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.home-comment-reply-strip .pb-lucide{flex:0 0 13px;width:13px!important;height:13px!important;color:#9ee94a}
.home-comment-reply-strip-x{flex:0 0 25px;width:25px;height:25px;border:0;border-radius:8px;background:rgba(255,255,255,.055);color:#aeb6c4}
.home-comment-compose{display:flex;align-items:flex-end;gap:8px;padding:0}
.home-comment-attach,.home-comment-send{flex:0 0 42px;width:42px;height:42px;border-radius:13px}
.home-comment-attach{display:flex;align-items:center;justify-content:center;background:#121822;border:1px solid rgba(255,255,255,.08);color:#8f9aae}
.home-comment-input-wrap{min-width:0;flex:1}
.home-comment-input-wrap textarea{
    box-sizing:border-box;display:block;width:100%;height:42px;min-height:42px;max-height:96px;resize:none;overflow-y:auto;
    padding:10px 13px;border:1px solid rgba(255,255,255,.09);border-radius:13px;background:#121822;color:#f5f7fb;
    font:500 14px/1.42 inherit;letter-spacing:normal;outline:0;-webkit-text-security:none!important;text-security:none!important
}
.home-comment-input-wrap textarea:focus{border-color:rgba(157,239,75,.36);background:#151c27;box-shadow:0 0 0 3px rgba(157,239,75,.055)}
.home-comment-input-wrap textarea::placeholder{color:rgba(220,228,241,.3)}
.home-comment-send{display:flex;align-items:center;justify-content:center;border:0;background:#9dff3e;color:#102000;box-shadow:none}
.home-comment-send:disabled{opacity:.42;filter:none}
.home-comment-photo-preview{padding:7px 9px;border:1px solid rgba(255,255,255,.07);border-radius:10px;background:rgba(255,255,255,.025)}
.home-comment-photo-remove .pb-lucide{width:13px!important;height:13px!important}
@media(max-width:430px){
    #home-comments-sheet{height:min(84dvh,720px);padding-left:14px;padding-right:14px}
    .home-comment-item.is-reply{margin-left:18px}
}

.seo-game-summary{position:absolute!important;left:-9999px!important;top:auto!important;width:1px!important;height:1px!important;overflow:hidden!important}


.home-bottom-sheet[hidden],
.home-bottom-sheet.pb-sheet-force-hidden{
    display:none!important;
    visibility:hidden!important;
    opacity:0!important;
    pointer-events:none!important;
    content-visibility:hidden!important;
    transform:none!important;
}
.home-bottom-sheet[hidden] *,
.home-bottom-sheet.pb-sheet-force-hidden *{
    visibility:hidden!important;
}
.home-sheet-backdrop[hidden]{
    display:none!important;
    visibility:hidden!important;
    pointer-events:none!important;
}
@media (max-width:768px),(hover:none) and (pointer:coarse){
    .home-bottom-sheet:not(.is-open){opacity:0!important}
    .home-bottom-sheet.is-open{opacity:1!important}
}
