:root {
  --pink: #ff2d8e;
  --pink-hover: #ff1583;
  --pink-soft: #ffe6f2;
  --bg: #ffffff;
  --bg2: #f3f4f6;
  --card: #ffffff;
  --text: #16181d;
  --muted: #8b909a;
  --muted2: #aab0ba;
  --border: #ececef;
  --badge: rgba(0,0,0,.78);
  --shadow: 0 1px 3px rgba(0,0,0,.06);
  --font-body: "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Londrina Solid", "Roboto Condensed", sans-serif;
}
[data-theme="dark"] {
  --pink: #ff3d96;
  --pink-hover: #ff58a6;
  --pink-soft: #3a1f30;
  --bg: #0f1115;
  --bg2: #1a1d24;
  --card: #161922;
  --text: #e7e9ee;
  --muted: #8b919e;
  --muted2: #6b7280;
  --border: #242935;
  --badge: rgba(0,0,0,.82);
  --shadow: 0 1px 3px rgba(0,0,0,.4);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; overflow-x: clip; max-width: 100%; }
html { touch-action: manipulation; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; }

.wrap { width: 94%; max-width: 1780px; margin: 0 auto; padding: 0 10px; }


header.top {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.topbar {
  display: flex; align-items: center; gap: 26px;
  min-height: 92px; padding: 14px 0;
}
.logo { display: flex; flex-direction: row; align-items: center; gap: 10px;
  font-family: var(--font-display); line-height: 1; white-space: nowrap; }
.logo .bunny { width: 46px; height: 46px; margin: 0; flex: none; }
.logo .word { font-size: 42px; font-weight: 900; letter-spacing: .5px; color: var(--text); }
.logo .pb { color: var(--pink); }

.search { flex: 1; max-width: 900px; position: relative; margin: 0 auto; }
.search input {
  width: 100%; height: 50px; border-radius: 25px; border: 1px solid var(--border);
  background: var(--bg2); color: var(--text); padding: 0 20px 0 48px; font-size: 16px;
  outline: none;
}
.search input:focus { border-color: var(--pink); }
.search .icn { position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  color: var(--muted2); width: 19px; height: 19px; }

.controls { display: flex; align-items: center; gap: 14px; }
.iconbtn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--bg); display: grid; place-items: center; cursor: pointer; color: var(--text); }
.iconbtn:hover { background: var(--bg2); }
.iconbtn svg { width: 21px; height: 21px; }
.upload { display: flex; align-items: center; gap: 8px; height: 46px; padding: 0 24px;
  border-radius: 23px; background: var(--pink); color: #fff; font-weight: 700; font-size: 16px;
  cursor: pointer; border: none; white-space: nowrap; }
.upload:hover { background: var(--pink-hover); }
.upload svg { width: 17px; height: 17px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; background:
  linear-gradient(135deg, var(--pink), #ff8cc4); cursor: pointer; }
.lang { display: flex; align-items: center; gap: 7px; height: 46px; padding: 0 17px;
  border: 1px solid var(--border); border-radius: 23px; color: var(--text);
  font-weight: 700; font-size: 14px; letter-spacing: .3px; cursor: pointer;
  transition: border-color .15s, color .15s; }
.lang:hover { border-color: var(--pink); color: var(--pink); }
.lang svg { width: 17px; height: 17px; }


nav.main { border-bottom: 1px solid var(--border); background: var(--bg); }
.navrow { display: flex; align-items: center; height: 64px; gap: 36px; }
.navlink { font-family: var(--font-display); font-weight: 900; font-size: 22px; letter-spacing: .5px;
  color: var(--text); cursor: pointer; display: flex; align-items: center; gap: 6px; }
.navlink.active { color: var(--pink); border-bottom: 3px solid var(--pink); height: 64px;
  display: flex; align-items: center; }
.navlink:hover { color: var(--pink); }
.navlink .caret { font-size: 11px; opacity: .7; }
.navlink.has-dd { position: relative; }
.navlink .nav-label { color: inherit; }
.navlink.has-dd:hover .nav-label { color: var(--pink); }
.dropdown { position: absolute; top: 100%; left: 0; margin-top: 0; min-width: 360px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
  box-shadow: 0 14px 34px rgba(0,0,0,.20); padding: 14px 10px; z-index: 100;
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: .14s; }
.navlink.has-dd:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px 16px; }
.dd-grid a { font-family: var(--font-body); font-weight: 500; font-size: 16px; letter-spacing: 0;
  color: var(--text); padding: 9px 16px; border-radius: 7px; white-space: nowrap; }
.dd-grid a:hover { background: var(--bg2); color: var(--pink); }
.navright { margin-left: auto; display: flex; align-items: center; gap: 20px; }
.navright a { color: var(--muted); font-size: 13px; display: flex; align-items: center; gap: 5px; }
.navright a:hover { color: var(--pink); }
.navright svg { width: 14px; height: 14px; }


section { padding: 26px 0 8px; }
.sec-title { text-align: left; font-family: var(--font-display); font-weight: 900;
  font-size: 28px; letter-spacing: .5px; text-transform: uppercase; margin: 8px 0 22px; }


.grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 28px 20px; }
.card { cursor: pointer; }
.thumb { position: relative; aspect-ratio: 16/9; border-radius: 8px; overflow: hidden;
  background: var(--bg2); border: 1px solid var(--border); }
.card:hover .thumb { border-color: var(--pink); }
.thumb .ph { width: 100%; height: 100%; object-fit: cover; }
.mthumb .ph { width: 100%; height: 100%; object-fit: cover; }
.card:hover .thumb { box-shadow: 0 4px 14px rgba(0,0,0,.18); }
.dur { position: absolute; left: 7px; bottom: 7px; background: var(--badge); color: #fff;
  font-size: 13px; font-weight: 600; padding: 2px 7px; border-radius: 3px; }
.qual { position: absolute; right: 7px; bottom: 7px; background: var(--pink); color: #fff;
  font-size: 11px; font-weight: 700; padding: 2px 6px; border-radius: 3px; }
.play { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0;
  transition: opacity .15s; background: rgba(0,0,0,.18); }
.card:hover .play { opacity: 1; }
.play svg { width: 46px; height: 46px; color: #fff; filter: drop-shadow(0 1px 3px rgba(0,0,0,.4)); }
.v-title { font-weight: 700; font-size: 16px; line-height: 1.35; margin: 10px 0 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--pink); }
.v-title:hover { color: var(--pink-hover); text-decoration: underline; }
.v-model { color: var(--pink); font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 5px; }
.v-model .ck { width: 14px; height: 14px; color: var(--pink); }
.v-stats { display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: 14px;
  font-weight: 500; margin-top: 7px; }
.v-stats span { display: flex; align-items: center; gap: 5px; }
.v-stats svg { width: 15px; height: 15px; flex-shrink: 0; }


.pager { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 26px 0 6px; }
.pg { min-width: 30px; height: 30px; padding: 0 8px; border-radius: 16px; display: grid;
  place-items: center; font-weight: 700; font-size: 13px; cursor: pointer; color: var(--text); }
.pg:hover { background: var(--bg2); }
.pg.active { background: var(--pink); color: #fff; }
.pg.dots { cursor: default; color: var(--muted); }
.pg.arrow { background: var(--bg2); }
.count { text-align: center; color: var(--muted); font-size: 12px; margin-top: 6px; }


.banner { display: flex; align-items: center; justify-content: center; gap: 14px;
  background: var(--pink-soft); border: 1px solid var(--border); border-radius: 26px;
  padding: 12px 22px; margin: 26px auto; max-width: 560px; font-weight: 600; font-size: 13px; }
.banner .join { background: var(--pink); color: #fff; border-radius: 16px; padding: 7px 20px;
  font-weight: 700; cursor: pointer; border: none; }
.banner .join:hover { background: var(--pink-hover); }


.mgrid { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 18px 16px; }
.mcard { cursor: pointer; text-align: center; }
.mthumb { aspect-ratio: 3/4; border-radius: 6px; overflow: hidden; background: var(--bg2); }
.mcard:hover .mthumb { box-shadow: 0 4px 14px rgba(0,0,0,.18); }
.m-name { font-weight: 700; font-size: 13px; margin-top: 8px; }
.mcard:hover .m-name { color: var(--pink); }
.m-meta { color: var(--muted); font-size: 11.5px; margin-top: 2px;
  display: flex; align-items: center; justify-content: center; gap: 8px; }
.m-meta span { display: flex; align-items: center; gap: 3px; }
.m-meta svg { width: 11px; height: 11px; }

.viewmore { display: block; margin: 22px auto 4px; border: 1px solid var(--pink); color: var(--pink);
  background: var(--bg); border-radius: 18px; padding: 8px 28px; font-weight: 700; cursor: pointer; }
.viewmore:hover { background: var(--pink); color: #fff; }


.creators-grid { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 22px 18px; }
.ccard { cursor: pointer; }
.cthumb { position: relative; aspect-ratio: 100/126; border-radius: 8px; overflow: hidden;
  background: var(--bg2); }
.cthumb img { width: 100%; height: 100%; object-fit: cover; }
.ccard:hover .cthumb { box-shadow: 0 6px 18px rgba(0,0,0,.22); }
.c-name { font-weight: 700; font-size: 15px; margin-top: 9px; display: flex; align-items: center; gap: 6px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ccard:hover .c-name { color: var(--pink); }
.c-name .rk { color: var(--pink); font-weight: 800; }
.c-info { display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: 13px; margin-top: 4px; }
.c-info span { display: flex; align-items: center; gap: 4px; }
.c-info svg { width: 15px; height: 15px; }
.page-head { text-align: center; margin: 6px 0 26px; }
.page-head h1 { font-family: var(--font-display); font-weight: 900; font-size: 30px;
  letter-spacing: .5px; text-transform: uppercase; margin: 0 0 4px; }
.page-head p { color: var(--muted); font-size: 14px; margin: 0; }
@media (max-width: 1080px) { .creators-grid { grid-template-columns: repeat(5, minmax(0,1fr)); } }
@media (max-width: 860px)  { .creators-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
@media (max-width: 620px)  { .creators-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }


.cat-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.catcard { position: relative; aspect-ratio: 16/10; border-radius: 10px; overflow: hidden;
  cursor: pointer; background: var(--bg2); }
.catcard img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.catcard:hover img { transform: scale(1.06); }
.catcard .ov { position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 16px 18px;
  background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.25) 45%, rgba(0,0,0,0) 75%); }
.cat-name { font-family: var(--font-display); font-weight: 900; font-size: 26px; letter-spacing: .5px;
  color: #fff; line-height: 1; text-shadow: 0 1px 4px rgba(0,0,0,.5); }
.cat-count { color: #ffd6ec; font-weight: 600; font-size: 14px; margin-top: 6px;
  text-shadow: 0 1px 3px rgba(0,0,0,.5); }
.catcard:hover .cat-name { color: var(--pink); }
@media (max-width: 1080px) { .cat-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width: 760px)  { .cat-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }


.watch { max-width: none; margin: 0 auto; }
.player { position: relative; width: 100%; aspect-ratio: 16/9; background: #000;
  border-radius: 8px; overflow: hidden; touch-action: manipulation;
  -webkit-user-select: none; user-select: none; -webkit-tap-highlight-color: transparent; }
.player video { width: 100%; height: 100%; display: block; background: #000; cursor: pointer; }


.big-play { position: absolute; inset: 0; display: grid; place-items: center; cursor: pointer;
  transition: opacity .25s; }
.big-play .circle { width: 84px; height: 84px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(18,18,24,.5); backdrop-filter: blur(3px); transition: transform .2s, background .2s; }
.big-play:hover .circle { transform: scale(1.07); background: var(--pink); }
.big-play svg { width: 34px; height: 34px; fill: #fff; margin-left: 4px; }
.player.playing .big-play { opacity: 0; pointer-events: none; }


.vctrl { position: absolute; left: 0; right: 0; bottom: 0; padding: 0 18px 12px;
  background: linear-gradient(to top, rgba(0,0,0,.82), rgba(0,0,0,.28) 55%, transparent);
  opacity: 0; transform: translateY(8px); transition: .25s; z-index: 5; }
.player:hover .vctrl, .player:not(.playing) .vctrl, .player.show-ctrl .vctrl { opacity: 1; transform: none; }


.seek { position: relative; height: 22px; display: flex; align-items: center; cursor: pointer; }
.seek .track { position: absolute; left: 0; right: 0; height: 7px; border-radius: 7px;
  background: rgba(255,255,255,.24); overflow: hidden; transition: height .15s; }
.seek:hover .track { height: 10px; }
.seek .buf { position: absolute; left: 0; top: 0; height: 100%; background: rgba(255,255,255,.34); width: 0; }
.seek .fill { position: absolute; left: 0; top: 0; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--pink), #ff84bd); }
.seek .dot { position: absolute; left: 0; width: 17px; height: 17px; border-radius: 50%; background: #fff;
  border: 4px solid var(--pink); transform: translateX(-50%) scale(0); transition: transform .15s; z-index: 2;
  box-shadow: 0 2px 7px rgba(0,0,0,.55); }
.seek:hover .dot, .player.seeking .dot, .player.show-ctrl .seek .dot { transform: translateX(-50%) scale(1); }


@media (max-width: 600px) {
  .vctrl { padding: 0 10px 10px; }
  .vbar { gap: 10px; height: 44px; }
  .vbar button svg { width: 24px; height: 24px; }
  .vbar .vplay svg { width: 26px; height: 26px; }
  .vbar .vtime { font-size: 12.5px; }
  .vbar .vtime .sep { margin: 0 2px; }
  .vbar .vvol .vslider { display: none !important; }  
  .seek { height: 26px; }
  .seek .track { height: 8px; }
}


.vbar { display: flex; align-items: center; gap: 20px; height: 42px; color: #fff; }
.vbar button { background: none; border: none; color: #fff; cursor: pointer; padding: 0; opacity: .94;
  display: grid; place-items: center; transition: transform .14s, color .14s, opacity .14s; }
.vbar button:hover { opacity: 1; color: var(--pink); transform: scale(1.1); }
.vbar button svg { width: 25px; height: 25px; }
.vbar .vplay svg { width: 27px; height: 27px; }
.vbar .vtime { font-size: 14px; font-weight: 500; letter-spacing: .3px; font-variant-numeric: tabular-nums;
  white-space: nowrap; }
.vbar .vtime .sep { opacity: .55; margin: 0 4px; }
.vbar .vvol { display: flex; align-items: center; gap: 9px; }
.vslider { -webkit-appearance: none; appearance: none; width: 0; opacity: 0; height: 5px; border-radius: 4px;
  background: rgba(255,255,255,.3); cursor: pointer; transition: width .2s, opacity .2s; }
.vbar .vvol:hover .vslider { width: 80px; opacity: 1; }
.vslider::-webkit-slider-thumb { -webkit-appearance: none; width: 13px; height: 13px; border-radius: 50%;
  background: var(--pink); cursor: pointer; }
.vvol.muted .vplay, .vvol.muted #muteBtn { color: var(--pink); }
.vbar .spacer { flex: 1; }
.vbar .vhd { background: var(--pink); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .5px;
  padding: 3px 7px; border-radius: 5px; }


.vmenu { position: absolute; right: 18px; bottom: 60px; min-width: 168px; z-index: 6;
  background: rgba(20,20,26,.97); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: 8px; display: none; box-shadow: 0 10px 30px rgba(0,0,0,.5); }
.vmenu.open { display: block; }
.vmenu .mh { color: #9aa0aa; font-size: 12px; font-weight: 600; padding: 6px 12px 8px; }
.vmenu button { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 16px;
  background: none; border: none; color: #fff; padding: 9px 12px; border-radius: 8px; cursor: pointer;
  font-size: 14px; font-family: var(--font-body); }
.vmenu button:hover { background: rgba(255,255,255,.08); }
.vmenu button.sel { color: var(--pink); font-weight: 700; }
.vmenu button.sel::after { content: "✓"; }
.w-title { font-family: var(--font-display); font-weight: 900; font-size: 26px; margin: 18px 0 6px; }
.w-head { display: flex; flex-direction: column; gap: 14px; }
.w-head > div:first-child { min-width: 0; }
.w-stats { color: var(--muted); font-size: 14px; display: flex; gap: 12px; }
.w-stats span { display: flex; align-items: center; gap: 5px; }
.w-stats svg { width: 16px; height: 16px; }
.w-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding-top: 12px; border-top: 1px solid var(--border); }
.votes { display: flex; background: var(--bg2); border-radius: 22px; overflow: hidden;
  border: 1px solid var(--border); }
.votes button { border: none; background: none; padding: 9px 18px; cursor: pointer; color: var(--text);
  font-weight: 700; display: flex; align-items: center; gap: 7px; font-size: 14px; transition: .15s; }
.votes button + button { border-left: 1px solid var(--border); }
.votes button svg { width: 22px; height: 22px; transition: .15s; }
.votes button:not(.voted):hover { color: var(--pink); }
.votes button:not(.voted):hover svg { transform: scale(1.12); }
.votes button.voted { cursor: default; }
.votes button.voted:not(.on) { opacity: .4; }
.votes #up.on { color: var(--pink); }
.votes #down.on { color: var(--muted2); }

.actbtns { display: flex; gap: 8px; flex-wrap: wrap; }
.actbtn { display: flex; align-items: center; gap: 7px; height: 40px; padding: 0 15px;
  border-radius: 20px; border: 1px solid var(--border); background: var(--bg2);
  cursor: pointer; color: var(--text); font-family: var(--font-body); font-weight: 600;
  font-size: 13.5px; text-decoration: none; transition: .15s; white-space: nowrap; }
.actbtn:hover { color: var(--pink); border-color: var(--pink); background: var(--pink-soft); }
.actbtn svg { width: 18px; height: 18px; flex: none; }
.actbtn.on { color: var(--pink); border-color: var(--pink); }
.actbtn.on svg { fill: var(--pink); stroke: var(--pink); }
@media (max-width: 620px) {
  .actbtn span { display: none; }
  .actbtn { width: 40px; padding: 0; justify-content: center; border-radius: 50%; }
}

.w-models { display: flex; gap: 22px; flex-wrap: wrap; margin: 18px 0; }
.w-model { display: flex; align-items: center; gap: 10px; }
.w-model img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.w-model .nm { font-weight: 700; font-size: 15px; }
.w-model .sub { display: block; margin-top: 2px; border: 1px solid var(--pink); color: var(--pink);
  background: none; border-radius: 14px; padding: 2px 12px; font-size: 12px; font-weight: 700; cursor: pointer; }
.w-model .sub:hover { background: var(--pink); color: #fff; }

.w-desc { font-size: 15px; color: var(--text); margin: 6px 0 18px; }
.taxo { font-size: 14px; line-height: 1.9; margin-bottom: 8px; }
.taxo b { font-weight: 700; margin-right: 8px; }
.taxo a { color: var(--pink); margin-right: 4px; }
.taxo a:hover { text-decoration: underline; }
.taxo.tags a { color: var(--text); background: var(--bg2); padding: 3px 10px; border-radius: 13px;
  font-size: 13px; display: inline-block; margin: 2px 3px 2px 0; }
.taxo.tags a:hover { background: var(--pink); color: #fff; text-decoration: none; }
.uploader { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted);
  border-top: 1px solid var(--border); margin-top: 16px; padding-top: 14px; }
.uploader a { color: var(--pink); }


.comments h2 { font-family: var(--font-display); font-weight: 900; font-size: 22px; margin: 30px 0 18px; }
.comment { display: flex; gap: 12px; margin-bottom: 18px; }
.comment .cav { width: 38px; height: 38px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--pink), #ffa6d2); }
.comment .cbody { flex: 1; }
.comment .cmeta { font-size: 13px; } .comment .cmeta b { font-weight: 700; }
.comment .cmeta .t { color: var(--muted); margin-left: 8px; }
.comment .ctext { font-size: 14px; margin-top: 3px; }
.show-all { border: 1px solid var(--pink); color: var(--pink); background: none; border-radius: 18px;
  padding: 7px 18px; font-weight: 700; cursor: pointer; margin-bottom: 22px; }
.show-all:hover { background: var(--pink); color: #fff; }
.cform textarea, .cform input[type=text] { width: 100%; border: 1px solid var(--border); border-radius: 8px;
  background: var(--bg2); color: var(--text); padding: 12px 14px; font-size: 14px; font-family: var(--font-body);
  outline: none; margin-bottom: 10px; resize: vertical; }
.cform textarea:focus, .cform input:focus { border-color: var(--pink); }
.cform .addc { background: var(--pink); color: #fff; border: none; border-radius: 20px; padding: 11px 30px;
  font-weight: 700; cursor: pointer; }
.cform .addc:hover { background: var(--pink-hover); }


.promo-row { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(150px, 1fr);
  grid-template-columns: repeat(6, minmax(0,1fr)); gap: 14px; }
.promo .mthumb { position: relative; }
.promo .ad { position: absolute; right: 6px; top: 6px; background: var(--pink); color: #fff;
  font-size: 9px; font-weight: 700; padding: 1px 5px; border-radius: 3px; }


.about { text-align: center; color: var(--muted); font-size: 12.5px; max-width: 620px;
  margin: 40px auto 10px; line-height: 1.6; }
footer { border-top: 1px solid var(--border); margin-top: 30px; padding: 28px 0 50px; }
.flogo { text-align: center; font-family: var(--font-display); font-weight: 900;
  font-size: 26px; letter-spacing: 1px; margin-bottom: 18px; }
.flinks { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-bottom: 14px; }
.flinks a { color: var(--text); font-size: 12.5px; }
.flinks a:first-child { color: var(--pink); }
.flinks a:hover { color: var(--pink); }
.flegal { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.flegal a { color: var(--muted); font-size: 11.5px; }
.flegal a:hover { color: var(--pink); }


@media (max-width: 1080px) { .grid { grid-template-columns: repeat(4, minmax(0,1fr)); } .mgrid { grid-template-columns: repeat(5, minmax(0,1fr)); } }
@media (max-width: 860px)  { .grid { grid-template-columns: repeat(3, minmax(0,1fr)); } .mgrid { grid-template-columns: repeat(4, minmax(0,1fr)); } .navright { display: none; } }
@media (max-width: 620px)  { .grid { grid-template-columns: minmax(0,1fr); } .mgrid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .search { order: 3; flex-basis: 100%; max-width: none; } .topbar { flex-wrap: wrap; min-height: 0; height: auto; padding: 10px 0; gap: 12px; }
  .lang, .upload span { display: none; }
  
  .logo .word { font-size: 28px; } .logo .bunny { width: 36px; height: 26px; margin-left: 4px; }
  .controls { gap: 10px; } .iconbtn, .upload, .avatar { width: 42px; height: 42px; }
  .upload { padding: 0; justify-content: center; }
  
  nav.main .navrow { gap: 22px; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  nav.main .navrow::-webkit-scrollbar { display: none; }
  .navlink { font-size: 19px; flex: none; }
  .promo-row { grid-auto-flow: column; grid-template-columns: none; grid-auto-columns: 42%;
    overflow-x: auto; scrollbar-width: none; }
  .promo-row::-webkit-scrollbar { display: none; }
  .creators-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  
  .dropdown { left: auto; right: 0; min-width: 0; width: min(320px, 90vw); } }


.adzone-top { max-width: 970px; margin: 16px auto 4px; text-align: center; }
.adzone-top img, .adzone-top iframe { max-width: 100%; border: 0; display: inline-block; }
.adzone-underplayer { margin: 14px 0; text-align: center; }
.adzone-underplayer img, .adzone-underplayer iframe { max-width: 100%; border: 0; }
.ad-native { position: relative; }
.ad-native::after { content: "AD"; position: absolute; bottom: 8px; right: 8px; background: var(--pink);
  color: #fff; font-size: 11px; font-weight: 800; padding: 2px 8px; border-radius: 6px; z-index: 2; letter-spacing: .5px; }
.ad-native img, .ad-native iframe { width: 100%; display: block; border-radius: 10px; border: 0; aspect-ratio: 16/10; object-fit: cover; }
.ad-float { position: fixed; right: 16px; bottom: 16px; z-index: 800; max-width: 340px; width: 42vw;
  min-width: 240px; border-radius: 10px; overflow: hidden; box-shadow: 0 10px 34px rgba(0,0,0,.55); background: var(--card); }
.ad-float-x { position: absolute; top: 0; right: 0; background: rgba(0,0,0,.78); color: #fff; border: none;
  padding: 6px 12px; font-size: 12px; font-weight: 700; cursor: pointer; border-bottom-left-radius: 8px; z-index: 3; }
.ad-float img, .ad-float iframe { display: block; width: 100%; border: 0; }
@media (max-width: 640px) { .ad-float { width: 60vw; right: 8px; bottom: 8px; } }


a.ccard, a.mcard { display: block; color: inherit; text-decoration: none; }
.profile { display: flex; align-items: center; gap: 26px; margin: 10px 0 34px; }
.pimg { width: 150px; height: 189px; border-radius: 12px; overflow: hidden; flex: none;
  box-shadow: 0 6px 18px rgba(0,0,0,.22); }
.pimg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pinfo h1 { font-family: var(--font-display); font-weight: 900; font-size: 34px; margin: 0 0 8px;
  display: flex; align-items: center; gap: 10px; }
.pinfo h1 .rk { color: var(--pink); font-size: 22px; }
.pmeta { display: flex; gap: 16px; color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.pbtns { display: flex; align-items: center; gap: 12px; }
.pbtns .sub { background: var(--pink); color: #fff; border: 0; border-radius: 20px;
  padding: 9px 22px; font-weight: 700; font-size: 14px; cursor: pointer; }
.ptag { color: var(--pink); font-weight: 700; font-size: 13px; border: 1px solid var(--pink);
  border-radius: 20px; padding: 6px 14px; }
@media (max-width: 620px) {
  .profile { gap: 16px; }
  .pimg { width: 104px; height: 131px; }
  .pinfo h1 { font-size: 24px; }
}


.siderail { display: flex; align-items: center; justify-content: center; gap: 14px;
  background: var(--bg); border-bottom: 1px solid var(--border);
  padding: 8px max(4%, calc((100% - 1640px) / 2));
  scrollbar-width: none; }
.siderail::-webkit-scrollbar { display: none; }
.srail-title { display: none; }
.srail-item { padding: 9px 16px; display: flex; align-items: center; gap: 9px;
  color: var(--muted); text-decoration: none;
  border: 1.5px solid transparent; border-radius: 13px;
  font-family: var(--font-display); font-weight: 900; font-size: 17px;
  letter-spacing: .5px; line-height: 1; flex: none; }
.srail-item svg { width: 34px; height: 34px; flex: none; }
.srail-item:hover { color: var(--pink); }
.srail-item.active { color: var(--pink); border-color: var(--pink); background: var(--pink-soft); }
@media (max-width: 760px) {
  .siderail { gap: 6px; padding: 6px 10px; overflow-x: auto; justify-content: flex-start; }
  .srail-dd .dropdown { display: none; }
  .srail-item { padding: 7px 11px; gap: 7px; font-size: 15px; border-radius: 11px; }
  .srail-item svg { width: 27px; height: 27px; }
}


.srail-dd { position: relative; flex: none; }
.srail-dd:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }


html.ag-lock { overflow: hidden; }
#ageGate { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center;
  justify-content: center; padding: 20px;
  background: rgba(12, 6, 10, .78); backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px); }
.ag-card { display: flex; align-items: center; gap: 30px; max-width: 720px; width: 100%;
  background: var(--card); border-radius: 22px; padding: 38px 42px;
  box-shadow: 0 24px 70px rgba(0,0,0,.45); }
.ag-art { position: relative; flex: none; width: 170px; }
.ag-art svg { width: 170px; height: 170px; display: block; }
.ag-badge { position: absolute; top: -6px; left: -10px; z-index: 1;
  background: var(--pink); color: #fff; font-family: var(--font-display);
  font-weight: 900; font-size: 19px; padding: 9px 11px;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%); }
.ag-body h2 { font-family: var(--font-display); font-weight: 900; font-size: 30px;
  margin: 0 0 12px; letter-spacing: .3px; }
.ag-body p { color: var(--muted); font-size: 15.5px; line-height: 1.55; margin: 0 0 22px; }
.ag-actions { display: flex; align-items: center; gap: 26px; }
.ag-enter { background: var(--pink); color: #fff; border: 0; border-radius: 26px;
  padding: 14px 44px; font-family: var(--font-body); font-weight: 700; font-size: 16px;
  cursor: pointer; }
.ag-enter:hover { background: var(--pink-hover); }
.ag-leave { color: var(--pink); font-weight: 600; font-size: 15px; }
.ag-leave:hover { text-decoration: underline; }
@media (max-width: 620px) {
  .ag-card { flex-direction: column; text-align: center; gap: 14px; padding: 30px 22px; }
  .ag-art { width: 130px; }
  .ag-art svg { width: 130px; height: 130px; }
  .ag-actions { justify-content: center; flex-wrap: wrap; gap: 16px; }
}


.burger { display: none; width: 44px; height: 44px; border: 1px solid var(--border);
  border-radius: 12px; background: var(--bg); color: var(--text);
  place-items: center; cursor: pointer; flex: none; padding: 0; }
.burger svg { width: 22px; height: 22px; }
@media (max-width: 760px) {
  .burger { display: grid; }
  .topbar { gap: 12px; }
}
.drawer-ov { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 190;
  opacity: 0; visibility: hidden; transition: .2s; }
.drawer-ov.open { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; bottom: 0; left: 0; width: 300px; max-width: 84vw;
  background: var(--bg); z-index: 200; transform: translateX(-105%);
  transition: transform .22s ease; overflow-y: auto; padding: 16px 14px;
  border-right: 1px solid var(--border); }
.drawer.open { transform: translateX(0); }
html.drawer-lock { overflow: hidden; }
.drawer-head { display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-display); font-weight: 900; font-size: 24px;
  padding: 0 6px 8px; }
.drawer-x { background: none; border: 0; color: var(--muted); width: 38px; height: 38px;
  cursor: pointer; display: grid; place-items: center; }
.drawer-x svg { width: 20px; height: 20px; }
.drawer-list { display: flex; flex-direction: column; gap: 3px; }
.drawer-list .srail-item { width: auto; justify-content: flex-start; font-size: 19px;
  padding: 12px 12px; gap: 12px; }
.drawer-list .srail-item svg { width: 26px; height: 26px; }
.drawer-cats-title { font-family: var(--font-display); font-weight: 900; font-size: 17px;
  color: var(--muted); margin: 16px 0 6px; padding: 0 12px; text-transform: uppercase;
  letter-spacing: .5px; }
.drawer-cats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 8px; padding: 0 6px; }
.drawer-cats-grid a { padding: 8px 8px; font-size: 14.5px; color: var(--text);
  border-radius: 7px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.drawer-cats-grid a:hover, .drawer-cats-grid a:active { color: var(--pink); background: var(--bg2); }


.legal { padding: 30px 0 60px; }
.legal-wrap { width: 92%; max-width: 860px; margin: 0 auto; }
.legal h1 { font-family: var(--font-display); font-weight: 900; font-size: 40px;
  margin: 8px 0 4px; }
.legal-date { color: var(--muted); font-size: 13px; margin: 0 0 26px; }
.legal h2 { font-family: var(--font-display); font-weight: 900; font-size: 23px;
  letter-spacing: .3px; margin: 30px 0 10px; }
.legal p, .legal li { color: var(--text); font-size: 15.5px; line-height: 1.7; }
.legal p { margin: 0 0 12px; }
.legal ul { margin: 0 0 14px; padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--pink); }
.legal a:hover { text-decoration: underline; }
.legal b { color: var(--text); font-weight: 700; }
.legal-note { background: var(--pink-soft); border-left: 3px solid var(--pink);
  padding: 12px 16px; border-radius: 8px; font-size: 14.5px; color: var(--text); }


.cr-form { display: flex; flex-direction: column; gap: 16px; max-width: 620px;
  margin: 8px 0 10px; }
.cr-form label { display: flex; flex-direction: column; gap: 6px; font-size: 14px;
  font-weight: 600; color: var(--text); }
.cr-form input[type=text], .cr-form input[type=email], .cr-form textarea,
.cr-form select { font-family: var(--font-body); font-size: 15px; color: var(--text);
  background: var(--bg2); border: 1px solid var(--border); border-radius: 9px;
  padding: 11px 13px; outline: none; font-weight: 400; }
.cr-form input:focus, .cr-form textarea:focus, .cr-form select:focus { border-color: var(--pink); }
.cr-form textarea { resize: vertical; }
.cr-check { flex-direction: row !important; align-items: flex-start; gap: 9px;
  font-weight: 400; font-size: 13.5px; color: var(--muted); }
.cr-check input { margin-top: 2px; accent-color: var(--pink); flex: none; }
.cr-submit { background: var(--pink); color: #fff; border: 0; border-radius: 24px;
  padding: 13px 30px; font-weight: 700; font-size: 15px; cursor: pointer;
  align-self: flex-start; }
.cr-submit:hover { background: var(--pink-hover); }
.cr-submit:disabled { opacity: .6; cursor: default; }
.cr-msg { font-size: 14px; margin-top: 2px; }
.cr-msg.ok { color: #22c55e; }
.cr-msg.err { color: var(--pink); }


.legal h1 {
  position: relative;
  background: linear-gradient(120deg, var(--pink) 0%, #ff6bb0 100%);
  color: #fff;
  border-radius: 18px;
  padding: 26px 30px 26px 104px;
  margin: 4px 0 8px;
  box-shadow: 0 10px 30px rgba(255,45,142,.22);
  overflow: hidden;
}
.legal h1::before {
  content: "";
  position: absolute; left: 26px; top: 50%; transform: translateY(-50%);
  width: 58px; height: 58px;
  background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2064%2064'%3E%3Cg%20fill='%23fff'%3E%3Cellipse%20transform='rotate(-16%2023%2016)'%20cx='23'%20cy='16'%20rx='6'%20ry='13.5'/%3E%3Cellipse%20transform='rotate(62%2042%2017)'%20cx='42'%20cy='17'%20rx='5.6'%20ry='12.5'/%3E%3Ccircle%20cx='32'%20cy='41'%20r='15.5'/%3E%3C/g%3E%3Cellipse%20transform='rotate(-16%2023.4%2017)'%20cx='23.4'%20cy='17'%20rx='2.6'%20ry='9'%20fill='%23ffd0e6'/%3E%3Ccircle%20cx='25.5'%20cy='39.5'%20r='2.1'%20fill='%23ff2d8e'/%3E%3Ccircle%20cx='38.5'%20cy='39.5'%20r='2.1'%20fill='%23ff2d8e'/%3E%3Cpath%20d='M32%2044c-2%200-3%201.2-3%202.2%200%201.3%201.3%202%203%203.3%201.7-1.3%203-2%203-3.3%200-1-1-2.2-3-2.2z'%20fill='%23ff2d8e'/%3E%3C/svg%3E") center/contain no-repeat;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.15));
}
.legal h1::after {
  content: ""; position: absolute; right: -30px; bottom: -40px;
  width: 150px; height: 150px; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
@media (max-width: 560px) {
  .legal h1 { padding: 20px 20px 20px 84px; font-size: 24px; }
  .legal h1::before { left: 18px; width: 46px; height: 46px; }
}


a.viewmore { width: fit-content; text-align: center; text-decoration: none; }


.sugg { position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: var(--bg);
  border: 1px solid var(--border); border-radius: 12px; box-shadow: 0 14px 40px rgba(0,0,0,.25);
  overflow: hidden; display: none; z-index: 700; }
.sugg.open { display: block; }
.sugg a { display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 16px; color: var(--text); font-size: 14px; }
.sugg a:hover { background: var(--bg2); }
.sugg .s-label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sugg .s-kind { flex-shrink: 0; font-size: 11px; font-weight: 700; text-transform: uppercase;
  color: var(--pink); background: var(--bg2); padding: 2px 8px; border-radius: 9px; }


.tagcloud { display: flex; flex-wrap: wrap; gap: 10px; }
.tagchip { display: inline-flex; align-items: center; gap: 8px; background: var(--bg2);
  color: var(--text); padding: 8px 14px; border-radius: 18px; font-size: 14px; font-weight: 600; }
.tagchip span { color: var(--muted); font-size: 12px; font-weight: 700; }
.tagchip:hover { background: var(--pink); color: #fff; }
.tagchip:hover span { color: #fff; }


.browse-bar { display: flex; justify-content: flex-end; margin-bottom: 14px; }
.sortsel { background: var(--bg); color: var(--text); border: 1px solid var(--border);
  border-radius: 9px; padding: 8px 12px; font-size: 14px; font-family: var(--font-body); outline: none; }
.sortsel:focus { border-color: var(--pink); }


.w-model .sub.on, .pbtns .sub.on { background: var(--pink); color: #fff; border-color: var(--pink); }


.vchips { display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0 16px; }
.vchip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px;
  border-radius: 10px; background: var(--bg2); border: 1px solid var(--border);
  color: var(--text); font-size: 14px; font-weight: 700; line-height: 1;
  transition: background .15s, border-color .15s, color .15s, transform .12s; }
.vchip svg { width: 15px; height: 15px; color: var(--pink); flex-shrink: 0; }
.vchip:hover { background: var(--pink); border-color: var(--pink); color: #fff;
  transform: translateY(-1px); }
.vchip:hover svg { color: #fff; }
.vchip.star { border-color: var(--pink); color: var(--pink); background: transparent; }
.vchip.star:hover { background: var(--pink); color: #fff; }
@media (max-width: 620px) { .vchip { padding: 8px 12px; font-size: 13px; } }


.vinfo { margin-top: 4px; }
.vinfo .w-title { margin: 18px 0 8px; }
.vinfo .w-stats { align-items: center; }

.vactions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 16px 0 18px; }
.votes2 { display: flex; align-items: stretch; background: transparent;
  border: 1.5px solid var(--border); border-radius: 13px; overflow: hidden; }
.votes2 button { display: flex; align-items: center; gap: 9px; padding: 10px 17px;
  background: none; border: 0; color: var(--text); cursor: pointer; transition: .15s;
  font-family: var(--font-display); font-weight: 900; font-size: 16px;
  letter-spacing: .5px; line-height: 1; }
.votes2 button svg { width: 18px; height: 18px; }
.votes2 button:hover { background: var(--pink); color: #fff; }
.votes2 .vd { width: 1.5px; background: var(--border); }
.votes2 button.on { color: #fff; background: var(--pink); }
.votes2 button.voted { cursor: default; }
.votes2 button.voted:not(.on) { opacity: .45; }

.act2 { display: inline-flex; align-items: center; gap: 9px; padding: 10px 17px;
  border-radius: 13px; background: transparent; border: 1.5px solid var(--border);
  color: var(--text); cursor: pointer; transition: .15s;
  font-family: var(--font-display); font-weight: 900; font-size: 16px;
  letter-spacing: .5px; line-height: 1; }
.act2 svg { width: 18px; height: 18px; }
.act2:hover { border-color: var(--pink); color: #fff; background: var(--pink); }
.act2.on { background: var(--pink); border-color: var(--pink); color: #fff; }

.infocard { border: 0; background: transparent; border-radius: 0; padding: 14px 0 0; }
.creator { display: flex; align-items: center; gap: 14px; }
.creator img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover;
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--pink); }
.creator .cmeta { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.creator .cname { font-family: var(--font-display); font-weight: 900; font-size: 19px;
  letter-spacing: .4px; color: var(--text);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.creator .cname:hover { color: var(--pink); }
.creator .csub { font-size: 12px; color: var(--pink); font-weight: 800;
  text-transform: uppercase; letter-spacing: .5px; }
.subscribe { margin-left: auto; flex-shrink: 0; background: var(--pink); color: #fff;
  border: 1.5px solid var(--pink); border-radius: 13px; padding: 10px 22px;
  cursor: pointer; transition: .15s; box-shadow: 0 4px 14px rgba(255,45,142,.3);
  font-family: var(--font-display); font-weight: 900; font-size: 17px;
  letter-spacing: .5px; line-height: 1; }
.subscribe:hover { filter: brightness(1.1); }
.subscribe.on { background: transparent; color: var(--pink); box-shadow: none; }

.vinfo > .w-desc { margin: 12px 0 0; font-size: 15px; line-height: 1.65;
  color: var(--text); max-width: 1100px; }
.vinfo > .w-desc:empty { display: none; }
.infocard .vchips { margin: 16px 0 2px; }
.vchip.cat { background: rgba(255,45,142,.12); border-color: transparent; color: var(--pink); }
.vchip.cat:hover { background: var(--pink); color: #fff; }
.vchip.tag { background: transparent; }
.cardfoot { display: flex; justify-content: space-between; align-items: center; gap: 10px;
  border-top: 1px solid var(--border); margin-top: 18px; padding-top: 14px;
  font-size: 13px; color: var(--muted); }
.cardfoot b { color: var(--text); }
.cardfoot a { color: var(--pink); font-weight: 600; }
.cardfoot a:hover { text-decoration: underline; }

@media (max-width: 620px) {
  .vactions { gap: 8px; }
  .act2 { padding: 10px 11px; }
  .act2 span { display: none; }
  .votes2 button { padding: 9px 12px; gap: 6px; }
  .subscribe { padding: 9px 18px; font-size: 13px; }
  .infocard { padding: 16px; border-radius: 14px; }
  .creator img { width: 46px; height: 46px; }
}


.promo .mcard { position: relative; border-radius: 16px; overflow: hidden; text-align: left;
  border: 1px solid var(--border); transition: border-color .15s, box-shadow .15s; }
.promo .mcard:hover { border-color: var(--pink); box-shadow: 0 10px 30px rgba(255,45,142,.18); }
.promo .mthumb { border-radius: 0; aspect-ratio: 3/4; }
.promo .mthumb::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 52%, rgba(0,0,0,.88)); }
.promo .mthumb .ph { transition: transform .35s; }
.promo .mcard:hover .ph { transform: scale(1.06); }
.promo .m-name { position: absolute; left: 15px; right: 15px; bottom: 32px; margin: 0; z-index: 2;
  color: #fff; font-family: var(--font-display); font-weight: 900; font-size: 20px;
  letter-spacing: .4px; line-height: 1.1;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.promo .mcard:hover .m-name { color: var(--pink); }
.promo .m-meta { position: absolute; left: 15px; right: 15px; bottom: 13px; margin: 0; z-index: 2;
  color: var(--pink); font-weight: 800; font-size: 11.5px;
  text-transform: uppercase; letter-spacing: .6px; }
.promo .ad { z-index: 2; }
@media (max-width: 620px) {
  .promo .m-name { font-size: 16px; bottom: 28px; left: 11px; right: 11px; }
  .promo .m-meta { font-size: 10px; left: 11px; bottom: 10px; }
}


.vmeta { margin: 18px 0 2px; display: flex; flex-direction: column; gap: 13px; }
.vmrow { display: flex; align-items: center; gap: 16px; }
.vmrow .lbl { flex-shrink: 0; font-weight: 700; font-size: 16.5px; color: var(--text); }
.vmrow .chips { display: flex; flex-wrap: wrap; gap: 9px; }
.mchip { display: inline-block; background: var(--bg2); border: 1px solid var(--border);
  border-radius: 11px; padding: 10px 18px; font-size: 15.5px; font-weight: 600;
  color: var(--text); line-height: 1; transition: background .15s, color .15s, border-color .15s; }
.mchip:hover { background: var(--pink); border-color: var(--pink); color: #fff; }
@media (max-width: 620px) {
  .vmrow { align-items: flex-start; }
  .vmrow .lbl { padding-top: 8px; min-width: 78px; }
  .mchip { padding: 7px 12px; font-size: 12.5px; }
}


.thumb .ph { transition: transform .22s ease; }
.card:hover .thumb .ph { transform: scale(1.07); }
.thumb-preview { position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity .2s; pointer-events: none; }
.card.previewing .thumb-preview { opacity: 1; }
.card.previewing .play, .card.previewing .dur, .card.previewing .qual { opacity: 0; }

.tagbar-wrap { position: relative; margin: 6px 0 22px; }
.tagbar { display: flex; gap: 10px; overflow-x: auto; scroll-behavior: smooth;
  scrollbar-width: none; padding: 2px 0; }
.tagbar::-webkit-scrollbar { display: none; }
.tagbar a { flex: none; background: var(--bg2); border: 1px solid var(--border);
  border-radius: 11px; padding: 11px 19px; font-size: 14.5px; font-weight: 600;
  color: var(--text); line-height: 1;
  transition: background .15s, color .15s, border-color .15s; }
.tagbar a:hover { background: var(--pink); border-color: var(--pink); color: #fff; }
.tagbar-arrow { position: absolute; right: -8px; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--bg); color: var(--text); cursor: pointer; z-index: 2;
  display: grid; place-items: center; font-size: 20px; line-height: 1;
  box-shadow: 0 2px 12px rgba(0,0,0,.35); }
.tagbar-arrow:hover { color: var(--pink); border-color: var(--pink); }
.tagbar-arrow.left { left: -8px; right: auto; }
@media (hover: none) { .tagbar-arrow { display: none !important; } }

.ad-badge { position: absolute; left: 14px; top: 14px; z-index: 6; background: rgba(0,0,0,.72);
  color: #ffd24d; font-size: 12px; font-weight: 800; letter-spacing: .8px;
  text-transform: uppercase; padding: 5px 11px; border-radius: 7px; pointer-events: none; }
.ad-skip { position: absolute; right: 14px; bottom: 74px; z-index: 6; background: rgba(0,0,0,.72);
  color: #fff; border: 1px solid rgba(255,255,255,.35); border-radius: 9px;
  padding: 10px 17px; font-size: 14px; font-weight: 700; cursor: pointer; }
.ad-skip:disabled { opacity: .7; cursor: default; }
.ad-skip:not(:disabled):hover { border-color: var(--pink); color: var(--pink); }
.player.ad-mode .seek { pointer-events: none; opacity: .5; }
.player.ad-mode .vmenu, .player.ad-mode .gear { display: none; }

.logo .bunny { transform-origin: 50% 85%;
  animation: bunny-idle 6s ease-in-out infinite; }
@keyframes bunny-idle {
  0%, 12%, 100% { transform: translateY(0) rotate(0deg); }
  3.5% { transform: translateY(-6px) rotate(-7deg); }
  7% { transform: translateY(-1px) rotate(5deg); }
}
.logo:hover .bunny { animation: bunny-bounce .7s ease-in-out infinite; }
@keyframes bunny-bounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  30% { transform: translateY(-6px) rotate(-7deg); }
  60% { transform: translateY(-1px) rotate(5deg); }
}
.logo .pb { display: inline-block;
  animation: bon-idle 6s ease-in-out infinite; }
@keyframes bon-idle {
  0%, 12%, 100% { transform: scale(1); }
  5% { transform: scale(1.12) rotate(2deg); }
}
.logo:hover .pb { animation: bon-pop .7s ease-in-out infinite; }
@keyframes bon-pop {
  0%, 100% { transform: scale(1); }
  40% { transform: scale(1.12) rotate(2deg); }
}
@media (prefers-reduced-motion: reduce) {
  .logo .bunny, .logo .pb, .logo:hover .bunny, .logo:hover .pb { animation: none; }
}

.sec-head { display: flex; align-items: center; justify-content: space-between;
  gap: 14px; margin: 8px 0 22px; }
.sec-head .sec-title { margin: 0; }
.sortdd { position: relative; }
.sortdd-btn { display: flex; align-items: center; gap: 9px; padding: 10px 16px;
  background: transparent; border: 1.5px solid var(--border); border-radius: 13px;
  color: var(--text); cursor: pointer; font-family: var(--font-display);
  font-weight: 900; font-size: 16px; letter-spacing: .5px; line-height: 1;
  transition: border-color .15s, color .15s; }
.sortdd-btn svg { width: 15px; height: 15px; transition: transform .15s; }
.sortdd.open .sortdd-btn svg { transform: rotate(180deg); }
.sortdd-btn:hover, .sortdd.open .sortdd-btn { border-color: var(--pink); color: var(--pink); }
.sortdd-menu { position: absolute; right: 0; top: calc(100% + 6px); min-width: 195px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
  box-shadow: 0 14px 34px rgba(0,0,0,.3); padding: 6px; display: none; z-index: 120; }
.sortdd.open .sortdd-menu { display: block; }
.sortdd-menu a { display: block; padding: 10px 14px; border-radius: 8px;
  color: var(--text); font-weight: 600; font-size: 14.5px; }
.sortdd-menu a:hover { background: var(--bg2); color: var(--pink); }
.sortdd-menu a.on { color: var(--pink); font-weight: 700; }

/* ---- Footer sosyal ikonlar (tavşan kulaklı rozet) ---- */
.fsocial { display: flex; justify-content: center; gap: 16px; margin: 4px 0 20px; }
.fsoc { position: relative; width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; background: var(--bg2);
  border: 1px solid var(--border); color: var(--text);
  transition: background .15s, color .15s, transform .18s; overflow: visible; }
.fsoc svg { width: 20px; height: 20px; position: relative; z-index: 1; }
.fsoc .be { position: absolute; top: -7px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 12px; pointer-events: none; }
.fsoc .be i { position: absolute; bottom: 0; width: 7px; height: 15px; border-radius: 50%;
  background: var(--border); transition: background .15s; }
.fsoc .be i:first-child { left: 3px; transform: rotate(-20deg); transform-origin: bottom; }
.fsoc .be i:last-child { right: 3px; transform: rotate(20deg); transform-origin: bottom; }
.fsoc:hover { background: var(--pink); color: #fff; transform: translateY(-3px); }
.fsoc:hover .be i { background: var(--pink); }
