:root {
  --bg: #070708;
  --panel: #121216;
  --panel-2: #1a1a21;
  --ink: #f4f4f6;
  --muted: #9a9aa8;
  --yellow: #ffbf3a;
  --blue: #5ec4ff;
  --line: #2a2a33;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Segoe UI", system-ui, sans-serif;
  background:
    radial-gradient(1200px 500px at 20% -10%, rgba(255, 191, 58, 0.08), transparent 50%),
    radial-gradient(900px 400px at 90% 0%, rgba(94, 196, 255, 0.08), transparent 45%),
    var(--bg);
  color: var(--ink);
  min-height: 100vh;
}

.gate {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(5, 5, 7, 0.96);
  display: grid;
  place-items: center;
  padding: 24px;
}
.gate.hidden { display: none; }
.gate-card {
  width: min(460px, 100%);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 26px;
  text-align: center;
}
.gate-card h2 { margin: 8px 0 10px; }
.gate-card p { color: var(--muted); line-height: 1.45; }
.gate-actions { display: flex; gap: 10px; justify-content: center; margin-top: 18px; }

button, .btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 700;
  font-size: 14px;
}
.btn-yes { background: var(--yellow); color: #1a1200; }
.btn-no { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost {
  background: var(--panel-2);
  color: var(--ink);
  border: 1px solid var(--line);
}

header {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 20px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand img {
  display: block;
  height: 78px;
  width: auto;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.55));
}
.meta { color: var(--muted); font-size: 13px; text-align: right; }
.meta a { color: var(--blue); text-decoration: none; }

.toolbar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 20px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.toolbar input {
  flex: 1;
  min-width: 220px;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 14px;
}
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--muted);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  cursor: pointer;
}
.tag.active { color: #1a1200; background: var(--yellow); border-color: var(--yellow); }

.grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
.thumb-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  background: #0b0b0e;
}
.card-body { padding: 11px 12px 14px; }
.card-body h3 {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 600;
  color: #dddde6;
  word-break: break-word;
}
.pills { display: flex; flex-wrap: wrap; gap: 5px; }
.pill {
  font-size: 11px;
  color: var(--blue);
  background: rgba(94,196,255,.08);
  border-radius: 999px;
  padding: 3px 8px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0,0,0,.82);
  display: none;
  place-items: center;
  padding: 20px;
}
.modal.open { display: grid; }
.modal-inner {
  width: min(960px, 100%);
  background: #0d0d12;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.modal-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  gap: 10px;
}
#modalTitle { color: var(--ink); font-size: 14px; font-weight: 600; }
.embed-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}
.embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.empty { grid-column: 1 / -1; color: var(--muted); text-align: center; padding: 40px 0; }

footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 20px 40px;
  color: var(--muted);
  font-size: 12px;
}

.header-18 {
  display: inline-block;
  margin-top: 4px;
  border: 1px solid var(--yellow);
  color: var(--yellow);
  font-weight: 800;
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 4px;
}
.gate-card-wide { width: min(560px, 100%); text-align: left; }
.gate-card-wide h2, .gate-card-wide .logo { display: block; margin-left: auto; margin-right: auto; text-align: center; }
.gate-kicker {
  text-align: center;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 800;
  color: var(--yellow);
}
.gate-lead { color: var(--muted); line-height: 1.45; font-size: 14px; }
.agree {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  margin: 8px 0;
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
}
.agree input { margin-top: 3px; flex-shrink: 0; }
.agree a { color: var(--blue); }
.gate-fine { text-align: center; color: var(--muted); font-size: 12px; }
.btn-yes:disabled { opacity: .35; cursor: not-allowed; }
.series {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.site-foot {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 20px 48px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  border-top: 1px solid var(--line);
}
.site-foot a { color: var(--blue); }
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 14px 0;
}
.fine { opacity: .8; }
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 20px 60px;
}
.legal-wrap h1 { font-size: 28px; margin: 10px 0 8px; }
.legal-wrap h2 { font-size: 18px; margin: 28px 0 8px; }
.legal-wrap p, .legal-wrap li { color: #c8c8d2; line-height: 1.6; }
.legal-wrap ul { padding-left: 20px; }
.back { color: var(--blue); text-decoration: none; font-size: 13px; }

.hidden { display: none !important; }

.player {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: #000;
  display: none;
}
.player.open { display: block; }
.player-inner {
  height: 100%;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.player-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  flex-shrink: 0;
}
#playerTitle {
  color: #dddde6;
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.player-stage {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
}
.player-stage video,
.player-stage iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
  object-fit: contain;
}
.cock-dock {
  flex-shrink: 0;
  padding: 0 8px 18px;
  margin-top: -36px;
  position: relative;
  z-index: 6;
  overflow: hidden;
}
.cock-seek {
  position: relative;
  width: 100%;
  aspect-ratio: 1206 / 558;
  cursor: pointer;
  touch-action: none;
  user-select: none;
  overflow: hidden;
}
.cock-under {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.cock-fill {
  position: absolute;
  top: 43.6%;
  height: 13.5%;
  left: 20.2%;
  width: 0;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.2);
  border-radius: 999px;
  z-index: 1;
}
.cock-art {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.cum-burst {
  position: absolute;
  z-index: 2;
  left: 72%;
  top: 38%;
  width: 46%;
  height: auto;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}
.cum-burst.on { opacity: 1; }

.ball-btn {
  position: absolute;
  z-index: 4;
  width: 13%;
  height: 26%;
  border: 0;
  background: transparent;
  color: #2a1a12;
  padding: 0;
  cursor: pointer;
}
.ball-btn svg {
  width: 42%;
  height: 42%;
  fill: currentColor;
  display: block;
  margin: 0 auto;
}
.ball-pause { left: 6%; top: 14%; }
.ball-mute { left: 6%; top: 58%; }
