:root {
  --bg: #fff8fb;
  --bg-soft: #fffef7;
  --ink: #26324a;
  --muted: #67748c;
  --line: #ebdef6;
  --primary: #8f46ff;
  --primary-dark: #6d24e1;
  --secondary: #58d7ff;
  --accent: #ff7eb6;
  --success: #20b66f;
  --warning: #ffb22e;
  --danger: #ff5a6d;
  --card: rgba(255,255,255,0.88);
  --shadow: 0 18px 60px rgba(128, 76, 255, 0.16);
  --radius: 28px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; min-height: 100%; }
body {
  font-family: 'Quicksand', system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(143,70,255,.18), transparent 30%),
    radial-gradient(circle at top right, rgba(88,215,255,.22), transparent 32%),
    linear-gradient(180deg, #fffaf2 0%, #fff7fb 45%, #f8fbff 100%);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea {
  font: inherit;
}
.bg-bubble {
  position: fixed;
  border-radius: 50%;
  filter: blur(4px);
  opacity: .18;
  pointer-events: none;
  z-index: 0;
}
.bubble-a { width: 220px; height: 220px; background: #8f46ff; top: -60px; left: -70px; }
.bubble-b { width: 180px; height: 180px; background: #58d7ff; top: 120px; right: -50px; }
.bubble-c { width: 260px; height: 260px; background: #ff7eb6; bottom: -100px; left: 10%; }
.topbar, .page-wrap, .admin-shell { position: relative; z-index: 1; }
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}
.public-topbar { max-width: 1180px; margin: 0 auto; }
.public-links, .sidebar-nav { display: flex; gap: 10px; flex-wrap: wrap; }
.public-links a, .sidebar-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 6px 20px rgba(80, 45, 140, 0.06);
}
.brand {
  display: flex;
  gap: 14px;
  align-items: center;
}
.brand-admin { margin-bottom: 24px; }
.brand-logo { width: 56px; height: 56px; }
.brand-mark {
  width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center;
  background: linear-gradient(135deg, #8f46ff, #58d7ff);
  color: white; font-size: 24px; box-shadow: var(--shadow);
}
.brand-title, .page-heading, h1, h2, h3, h4 {
  font-family: 'Fredoka', system-ui, sans-serif;
}
.brand-title { font-size: 1.18rem; font-weight: 700; }
.brand-sub { color: var(--muted); font-size: .9rem; }
.page-wrap { max-width: 1180px; margin: 0 auto; padding: 6px 18px 110px; }
.hero {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.2fr .9fr;
  align-items: center;
  padding: 20px 0 12px;
}
.hero-card, .card, .form-card, .stats-card, .pricing-card, .short-overlay, .sidebar-card, .admin-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card { padding: 34px; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px;
  background: rgba(255,255,255,.7); color: var(--primary-dark); font-weight: 700; margin-bottom: 12px;
}
.hero h1 { margin: 0 0 12px; font-size: clamp(2.2rem, 4vw, 4.2rem); line-height: 1.02; }
.hero p { color: var(--muted); font-size: 1.02rem; }
.hero-visual {
  min-height: 420px;
  border-radius: 36px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(143,70,255,.2), rgba(88,215,255,.2));
}
.hero-phone {
  width: min(320px, 90%);
  margin: 0 auto;
  border-radius: 34px;
  padding: 14px;
  background: #101632;
  box-shadow: 0 35px 80px rgba(32, 11, 69, 0.25);
}
.phone-screen {
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffdc7e, #ff8ac3 55%, #74d9ff);
  min-height: 540px;
  position: relative;
  padding: 18px;
}
.cloud { position: absolute; background: rgba(255,255,255,.78); border-radius: 999px; }
.cloud.one { width: 120px; height: 40px; top: 30px; right: 24px; }
.cloud.two { width: 88px; height: 32px; top: 72px; left: 26px; }
.cloud:before, .cloud:after { content: ''; position: absolute; background: inherit; border-radius: 50%; }
.cloud:before { width: 44px; height: 44px; left: 12px; top: -16px; }
.cloud:after { width: 52px; height: 52px; right: 12px; top: -20px; }
.phone-card {
  position: absolute; left: 16px; right: 16px; bottom: 24px;
  background: rgba(255,255,255,.82); border-radius: 26px; padding: 16px;
}
.phone-card h3 { margin: 0 0 6px; }
.phone-row { display: flex; gap: 10px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 18px; border: none; border-radius: 999px; cursor: pointer; font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); box-shadow: 0 16px 28px rgba(111, 55, 230, 0.28); }
.btn-secondary { background: rgba(255,255,255,.82); color: var(--ink); border: 1px solid var(--line); }
.btn-accent { color: #fff; background: linear-gradient(135deg, var(--accent), #ff5f89); }
.btn-danger { background: linear-gradient(135deg, var(--danger), #ff7e84); color: #fff; }
.btn-soft { background: rgba(143,70,255,.1); color: var(--primary-dark); }
.grid-3, .grid-2, .card-grid, .stats-grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card, .stats-card, .pricing-card, .form-card, .admin-card { padding: 24px; }
.card h3, .stats-card h3, .pricing-card h3, .form-card h2, .admin-card h3 { margin-top: 0; }
.pill, .badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: 999px;
  font-size: .85rem; font-weight: 700; background: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.85);
}
.badge.is-success { color: #0a7a47; background: rgba(32,182,111,.12); }
.badge.is-warning { color: #9c6100; background: rgba(255,178,46,.18); }
.badge.is-danger { color: #ad223c; background: rgba(255,90,109,.14); }
.stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stat-value { font-size: 2rem; font-family: 'Fredoka', sans-serif; }
.muted { color: var(--muted); }
.flash {
  max-width: 1180px; margin: 0 auto 16px; padding: 14px 18px; border-radius: 18px; position: relative; z-index: 2;
}
.flash-success { background: rgba(32,182,111,.12); color: #0f7e4d; border: 1px solid rgba(32,182,111,.25); }
.flash-error { background: rgba(255,90,109,.12); color: #ad223c; border: 1px solid rgba(255,90,109,.23); }
.flash-hide { opacity: 0; transform: translateY(-8px); transition: .35s ease; }
.form-card { max-width: 560px; margin: 30px auto; }
.form-card.compact { max-width: 480px; }
.form-grid { display: grid; gap: 16px; }
.field label { display: block; margin-bottom: 8px; font-weight: 700; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border-radius: 18px; border: 1px solid var(--line);
  background: rgba(255,255,255,.95); color: var(--ink); outline: none;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: rgba(143,70,255,.42); box-shadow: 0 0 0 4px rgba(143,70,255,.08); }
.help { color: var(--muted); font-size: .92rem; margin-top: 6px; }
.row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 14px 12px; border-bottom: 1px solid #eee4f4; text-align: left; vertical-align: top; }
th { font-size: .85rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.hero-actions, .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.empty-state {
  padding: 28px; text-align: center; border: 2px dashed rgba(143,70,255,.18); border-radius: 24px; background: rgba(255,255,255,.55);
}
.bottom-nav {
  position: fixed; bottom: 14px; left: 50%; transform: translateX(-50%); z-index: 20;
  width: min(560px, calc(100% - 24px)); display: grid; grid-template-columns: repeat(4,1fr);
  gap: 8px; padding: 10px; border-radius: 26px; background: rgba(255,255,255,.85); backdrop-filter: blur(14px); box-shadow: 0 20px 60px rgba(64, 23, 117, 0.18);
}
.bottom-nav a { display: grid; gap: 4px; place-items: center; padding: 10px 6px; border-radius: 18px; font-weight: 700; font-size: .86rem; }
.bottom-nav a:hover { background: rgba(143,70,255,.08); }
.kid-steps .card { min-height: 100%; }
.pricing-card { background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.96)); }
.price {
  font-family: 'Fredoka', sans-serif; font-size: clamp(2.4rem, 6vw, 4rem); margin: 6px 0;
}
.package-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.package-card {
  position: relative; overflow: hidden; padding: 22px; min-height: 190px;
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.72));
}
.package-card:after {
  content: '✦'; position: absolute; right: 18px; top: 14px; font-size: 24px; color: rgba(143,70,255,.25);
}
.watch-shell { position: relative; }
.watch-intro .actions { margin-top: 0; }
.short-feed {
  height: calc(100vh - 138px); overflow-y: auto; scroll-snap-type: y mandatory; border-radius: 36px;
  box-shadow: var(--shadow); background: rgba(255,255,255,.55); overscroll-behavior-y: contain; -webkit-overflow-scrolling: touch;
}
.short-item {
  position: relative; min-height: calc(100vh - 138px); scroll-snap-align: start; scroll-snap-stop: always; overflow: hidden;
  border-radius: 32px; margin-bottom: 16px; background: linear-gradient(180deg, #0f1736, #1a2250); touch-action: pan-y;
}
.short-item video { width: 100%; height: calc(100vh - 138px); object-fit: cover; display: block; background: #0f1736; }
.short-overlay {
  position: absolute; inset: auto 18px 18px 18px; padding: 18px; color: white;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.55));
}
.short-top-actions {
  position: absolute; top: 16px; right: 16px; display: flex; gap: 10px;
}
.bubble-btn {
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer; color: white;
  background: rgba(255,255,255,.18); backdrop-filter: blur(10px); font-size: 20px;
}
.media-thumb { width: 88px; height: 88px; object-fit: cover; border-radius: 18px; background: #f6f0ff; }
.inline-form { display: inline-flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.admin-shell { display: grid; grid-template-columns: 280px minmax(0,1fr); min-height: 100vh; }
.admin-sidebar {
  padding: 24px 18px; background: rgba(255,255,255,.72); border-right: 1px solid rgba(255,255,255,.86);
  backdrop-filter: blur(14px); position: sticky; top: 0; height: 100vh;
}
.sidebar-nav { flex-direction: column; }
.sidebar-nav a:hover { background: rgba(143,70,255,.1); }
.admin-main { padding: 22px; }
.admin-topbar { padding: 0 0 18px; }
.login-hero { max-width: 560px; margin: 20px auto 0; text-align: center; }
.small { font-size: .88rem; }
@media (max-width: 960px) {
  .hero, .grid-3, .grid-2, .stats-grid, .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: relative; height: auto; }
  .short-feed, .short-item, .short-item video { height: calc(100vh - 182px); min-height: calc(100vh - 182px); }
}
@media (max-width: 640px) {
  .topbar { padding: 16px 14px; }
  .page-wrap { padding: 6px 14px 110px; }
  .hero-card, .card, .form-card, .stats-card, .pricing-card, .admin-card { padding: 20px; }
  .hero-phone { width: 100%; }
  .brand-sub, .public-links { display: none; }
  .page-heading { font-size: 1.8rem; }
}

.device-chip { display:inline-flex; align-items:center; gap:6px; padding:8px 12px; border-radius:999px; background:rgba(143,70,255,.08); color:var(--primary-dark); font-weight:700; }
.token-box { display:inline-flex; align-items:center; padding:14px 18px; border-radius:18px; background:#fff; border:2px dashed rgba(143,70,255,.45); font-family:'Fredoka',sans-serif; font-size:1.2rem; letter-spacing:1px; }
.notice-card { background:linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.93)); }


.short-item.is-active { outline: 3px solid rgba(255,255,255,.08); }
.watch-page .page-wrap { max-width: 1280px; }
.watch-immersive .public-topbar,
.watch-immersive .bottom-nav,
.watch-immersive .watch-intro,
.watch-immersive .flash {
  display: none !important;
}
.watch-immersive .page-wrap {
  max-width: none;
  padding: 0 !important;
}
.watch-shell.is-immersive,
.watch-immersive .watch-shell {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
}
.watch-shell.is-immersive .short-feed,
.watch-immersive .short-feed {
  height: 100vh;
  border-radius: 0;
  box-shadow: none;
  background: #000;
}
.watch-shell.is-immersive .short-item,
.watch-immersive .short-item {
  min-height: 100vh;
  margin-bottom: 0;
  border-radius: 0;
}
.watch-shell.is-immersive .short-item video,
.watch-immersive .short-item video {
  height: 100vh;
}
.watch-shell.is-immersive .short-overlay,
.watch-immersive .short-overlay {
  left: 14px;
  right: 14px;
  bottom: 14px;
  border-radius: 24px;
}
.watch-shell.is-immersive .short-top-actions,
.watch-immersive .short-top-actions {
  top: 12px;
  right: 12px;
}
@media (max-width: 960px) {
  .watch-intro .actions { margin-top: 14px; }
}

.token-box-sm { font-size: .92rem; padding: 10px 12px; letter-spacing: .6px; }
.stack-actions { align-items: stretch; }
.stack-actions .btn, .stack-actions form, .stack-actions .inline-form { width: 100%; }
.stack-actions .btn { justify-content: center; }
.admin-sidebar .sidebar-nav { display: grid; gap: 10px; }
.admin-sidebar .sidebar-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.68);
  font-weight: 700;
}
.admin-topbar { display: flex; justify-content: space-between; gap: 16px; align-items: center; flex-wrap: wrap; }
.responsive-table table { min-width: 760px; }
@media (max-width: 960px) {
  .admin-shell { display: block; }
  .admin-sidebar {
    position: sticky;
    top: 0;
    z-index: 30;
    height: auto;
    padding: 14px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.86);
    box-shadow: 0 10px 30px rgba(64, 23, 117, 0.08);
  }
  .brand-admin { margin-bottom: 12px; }
  .admin-sidebar .sidebar-nav {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .admin-sidebar .sidebar-nav::-webkit-scrollbar { display: none; }
  .admin-sidebar .sidebar-nav a {
    white-space: nowrap;
    min-width: max-content;
  }
  .admin-main { padding: 16px 14px 28px; }
  .admin-topbar { align-items: flex-start; }
}
@media (max-width: 720px) {
  .responsive-table table,
  .responsive-table thead,
  .responsive-table tbody,
  .responsive-table th,
  .responsive-table td,
  .responsive-table tr {
    display: block;
    width: 100%;
  }
  .responsive-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
  }
  .responsive-table table { min-width: 0; }
  .responsive-table tbody { display: grid; gap: 14px; }
  .responsive-table tr {
    border: 1px solid rgba(143,70,255,.12);
    border-radius: 22px;
    padding: 14px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 10px 30px rgba(64, 23, 117, 0.06);
  }
  .responsive-table td {
    border-bottom: 1px dashed rgba(143,70,255,.12);
    padding: 10px 0;
  }
  .responsive-table td:last-child { border-bottom: 0; padding-bottom: 0; }
  .responsive-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 6px;
    font-size: .74rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .04em;
  }
  .stack-actions { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .stack-actions .inline-form { display: flex; }
  .stack-actions .btn { width: 100%; }
  .table-wrap { overflow: visible; }
}


.payment-info-card {
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,247,230,.96));
  border: 1px solid rgba(255,205,92,.35);
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(156, 111, 13, 0.12);
  padding: 24px;
}
.payment-head {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.payment-title { margin:10px 0 6px; font-size:1.6rem; }
.payment-sub { margin:0; color:var(--muted); max-width:640px; }
.payment-emoji {
  width:68px; height:68px; border-radius:22px; display:grid; place-items:center;
  background:linear-gradient(135deg, #ffd36a, #ff9cc6); font-size:32px; flex:0 0 auto;
  box-shadow: 0 12px 30px rgba(255, 170, 41, 0.22);
}
.payment-grid {
  display:grid; gap:14px; grid-template-columns:repeat(3,minmax(0,1fr)); margin-bottom:16px;
}
.payment-block {
  padding:18px; border-radius:22px; background:rgba(255,255,255,.86); border:1px solid rgba(255,255,255,.95);
}
.payment-label { display:block; font-size:.82rem; color:var(--muted); margin-bottom:6px; text-transform:uppercase; letter-spacing:.04em; }
.payment-value { display:block; font-size:1.2rem; font-family:'Fredoka', sans-serif; color:var(--ink); word-break:break-word; }
.payment-note {
  display:grid; gap:10px; background:rgba(255,255,255,.7); border-radius:24px; padding:16px 18px;
}
.payment-step { display:flex; gap:12px; align-items:flex-start; }
.payment-step span {
  width:30px; height:30px; border-radius:50%; display:grid; place-items:center; flex:0 0 auto;
  background:linear-gradient(135deg, var(--primary), var(--primary-dark)); color:#fff; font-weight:700;
}
.payment-step p { margin:4px 0 0; color:var(--ink); }
@media (max-width: 700px) {
  .payment-head { align-items:stretch; }
  .payment-grid { grid-template-columns:1fr; }
  .payment-emoji { width:58px; height:58px; font-size:28px; border-radius:18px; }
  .payment-title { font-size:1.35rem; }
}


/* Shorts YouTube-like focus mode */
.watch-page .public-topbar { display:none; }
.watch-page .page-wrap { max-width:none; padding:0; }
.watch-page body { background:#000; }
.watch-page .bg-bubble { display:none; }
.watch-shell { position:relative; background:#000; }
.watch-shell::after { content:''; display:block; height:0; }
.short-feed {
  height: 100svh;
  background:#000;
  border-radius:0;
  box-shadow:none;
  margin:0;
}
.short-item, .short-item video {
  min-height: 100svh;
  height: 100svh;
  border-radius:0;
  margin-bottom:0;
}
.short-item {
  background:#000;
}
.short-overlay.compact-overlay {
  inset:auto 14px 86px 14px;
  padding:10px 12px;
  border-radius:16px;
  background:linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.26));
  backdrop-filter: blur(4px);
}
.short-overlay.compact-overlay h3 {
  margin:0 0 4px;
  font-size:.94rem;
  line-height:1.2;
  font-family:'Quicksand', system-ui, sans-serif;
  font-weight:700;
}
.short-overlay.compact-overlay p {
  margin:0;
  font-size:.75rem;
  line-height:1.28;
  opacity:.8;
}
.watch-package-bar {
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:30;
  padding:10px 10px calc(env(safe-area-inset-bottom, 0px) + 10px);
  background:linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.72) 45%, rgba(0,0,0,.9));
}
.watch-package-head {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  color:#fff;
  padding:0 6px 10px;
}
.watch-kicker {
  font-size:.72rem;
  opacity:.72;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.watch-package-title {
  font-size:.98rem;
  font-weight:700;
}
.yt-chip-row {
  display:flex;
  gap:8px;
  overflow:auto;
  padding:0 2px;
  scrollbar-width:none;
}
.yt-chip-row::-webkit-scrollbar { display:none; }
.package-chip {
  background:rgba(255,255,255,.12);
  color:#fff;
  border:1px solid rgba(255,255,255,.14);
}
.package-chip.is-active {
  background:#fff;
  color:#111;
  border-color:#fff;
}
.yt-bottom-nav {
  background:rgba(255,255,255,.94);
  border-top:1px solid rgba(20,24,31,.06);
  border-radius:24px 24px 0 0;
  left:max(10px, env(safe-area-inset-left));
  right:max(10px, env(safe-area-inset-right));
  bottom:max(10px, env(safe-area-inset-bottom));
  width:auto;
  justify-content:space-around;
  padding:8px 10px;
}
.yt-bottom-nav .nav-item {
  min-width:64px;
  gap:2px;
  color:#46536a;
}
.yt-bottom-nav .nav-item.is-active {
  color:#111827;
}
.yt-bottom-nav .nav-icon {
  font-size:1.22rem;
  line-height:1;
}
@media (max-width: 960px) {
  .watch-page .short-feed,
  .watch-page .short-item,
  .watch-page .short-item video {
    height:100svh;
    min-height:100svh;
  }
}


.watch-back-btn {
  position: fixed;
  top: max(14px, env(safe-area-inset-top, 0px));
  left: 14px;
  z-index: 10020;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(8, 10, 18, 0.34);
  backdrop-filter: blur(8px);
  font-size: 34px;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}
.watch-page .short-feed {
  height: 100vh;
  border-radius: 0;
  box-shadow: none;
  background: #000;
}
.watch-page .short-item,
.watch-page .short-item video {
  min-height: 100vh;
  height: 100vh;
  border-radius: 0;
  margin-bottom: 0;
}
.watch-page .watch-package-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10010;
  padding: 10px 12px calc(12px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.62));
}
.watch-page .watch-package-head {
  display: none;
}
.watch-page .package-chip-row {
  overflow-x: auto;
  flex-wrap: nowrap;
  padding-bottom: 2px;
}
.watch-page .package-chip {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.94);
  border-color: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}
.watch-page .package-chip.is-active {
  background: #fff;
  color: #111827;
}
.compact-overlay {
  left: 12px;
  right: 12px;
  bottom: calc(62px + env(safe-area-inset-bottom, 0px));
  padding: 10px 12px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.28));
}
.compact-overlay h3 {
  margin: 0 0 4px;
  font-size: 14px;
  color: rgba(255,255,255,.96);
}
.compact-overlay p {
  margin: 0;
  font-size: 11px;
  line-height: 1.35;
  color: rgba(255,255,255,.76);
}
.short-item.is-buffering::after {
  content: 'Memuat video…';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: 12px;
  letter-spacing: .2px;
  backdrop-filter: blur(8px);
}
@media (max-width: 640px) {
  .watch-back-btn {
    top: calc(12px + env(safe-area-inset-top, 0px));
    left: 12px;
  }
  .compact-overlay {
    left: 10px;
    right: 10px;
    padding: 8px 10px;
  }
}
