/* tokens.css */
:root {
--bg: #0b0c14;
--bg-rgb: 11, 12, 20;
--bg-raised: #131523;
--accent-rgb: 139, 123, 255;
--bg-wash: radial-gradient(120% 90% at 70% -20%, rgba(93, 78, 214, 0.22), transparent 60%),
radial-gradient(80% 60% at 0% 0%, rgba(43, 108, 176, 0.12), transparent 55%);
--wash-hi: rgba(96, 80, 220, 0.24);
--wash-lo: rgba(48, 112, 184, 0.17);
--surface: rgba(255, 255, 255, 0.06);
--surface-hover: rgba(255, 255, 255, 0.11);
--line: rgba(255, 255, 255, 0.09);
--glass: rgba(13, 14, 24, 0.72);
--text: #f3f4f8;
--text-dim: #9aa1b5;
--text-faint: #616880;
--accent: #8b7bff;
--accent-strong: #6c58ff;
--progress: #8b7bff;
--kind-film: #f0c67e;
--kind-series: #7fd1e8;
--focus-ring: 0 0 0 3px rgba(255, 255, 255, 0.95), 0 10px 24px rgba(0, 0, 0, 0.5);
--focus-ring-light: 0 0 0 3px var(--bg), 0 0 0 7px var(--accent),
0 10px 24px rgba(0, 0, 0, 0.5);
--card-aura-reach: 38px;
--card-aura: 0 0 0 2px rgba(255, 255, 255, 0.9),
0 18px 36px rgba(0, 0, 0, 0.6);
--radius-s: 8px;
--radius: 12px;
--radius-l: 18px;
--font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI Variable Display",
"Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
--fs-hero: clamp(2.4rem, 4.5vw, 4.2rem);
--fs-title: clamp(1.5rem, 2.4vw, 2.2rem);
--fs-row: 1.25rem;
--fs-body: 1rem;
--fs-small: 0.85rem;
--ease: cubic-bezier(0.2, 0.7, 0.2, 1);
--t-fast: 160ms;
--t-med: 280ms;
--page-x: clamp(24px, 4.5vw, 64px);
--nav-h: 68px;
}
:root[data-theme="oled"] {
--bg: #000000;
--bg-rgb: 0, 0, 0;
--bg-raised: #0b0b12;
--glass: rgba(0, 0, 0, 0.78);
--wash-hi: rgba(96, 80, 220, 0.13);
--wash-lo: rgba(48, 112, 184, 0.09);
}
:root[data-theme="warm"] {
--bg: #131009;
--bg-rgb: 19, 16, 9;
--bg-raised: #1c1710;
--glass: rgba(19, 16, 9, 0.75);
--bg-wash: radial-gradient(120% 90% at 70% -20%, rgba(214, 150, 78, 0.16), transparent 60%),
radial-gradient(80% 60% at 0% 0%, rgba(176, 116, 43, 0.10), transparent 55%);
--wash-hi: rgba(220, 152, 80, 0.15);
--wash-lo: rgba(184, 122, 48, 0.10);
--text: #f6f2e9;
--text-dim: #b3a892;
--text-faint: #7d735e;
}
/* base.css */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { height: 100%; }
body {
min-height: 100%;
background-color: var(--bg);
color: var(--text);
font-family: var(--font);
font-size: var(--fs-body);
line-height: 1.5;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}
html::before,
html::after {
content: "";
position: fixed;
inset: -25%;
pointer-events: none;
will-change: transform;
}
html::before {
z-index: -3;
background-image: radial-gradient(46% 42% at 70% 16%, var(--wash-hi), transparent 62%);
animation: wash-hi 71s ease-in-out infinite alternate;
}
html::after {
z-index: -2;
background-image: radial-gradient(44% 40% at 24% 84%, var(--wash-lo), transparent 60%);
animation: wash-lo 97s ease-in-out infinite alternate;
}
@keyframes wash-hi {
from { transform: translate3d(-2%, -1.5%, 0) scale(1); }
to   { transform: translate3d(3%, 2%, 0) scale(1.16); }
}
@keyframes wash-lo {
from { transform: translate3d(2.5%, 1.5%, 0) scale(1.12); }
to   { transform: translate3d(-3%, -2%, 0) scale(1); }
}
body::before {
content: "";
position: fixed;
inset: 0;
z-index: -1;
pointer-events: none;
opacity: 0.032;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='g' x='0' y='0' width='100%25' height='100%25'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23g)'/%3E%3C/svg%3E");
background-size: 160px 160px;
}
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::-webkit-scrollbar { width: 10px; height: 0; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.14);
border-radius: 5px;
border: 2px solid transparent;
background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover { background-color: rgba(255, 255, 255, 0.25); }
:focus { outline: none; }
:focus-visible { outline: none; }
#app { min-height: 100vh; }
.screen {
min-height: 100vh;
padding-bottom: 80px;
animation: screen-in var(--t-med) var(--ease);
}
@keyframes screen-in {
from { opacity: 0; transform: translateY(10px); }
to   { opacity: 1; transform: translateY(0); }
}
.page-pad { padding-left: var(--page-x); padding-right: var(--page-x); }
.hidden { display: none !important; }
html { -webkit-tap-highlight-color: transparent; }
html, body { overscroll-behavior-y: none; }
.img-fade { opacity: 0; transition: opacity 240ms var(--ease); }
.img-fade.img-in { opacity: 1; }
.skeleton {
background: linear-gradient(100deg,
rgba(255,255,255,0.05) 40%, rgba(255,255,255,0.10) 50%, rgba(255,255,255,0.05) 60%);
background-size: 200% 100%;
animation: shimmer 1.4s infinite;
border-radius: var(--radius);
}
@keyframes shimmer { to { background-position: -200% 0; } }
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
html::before, html::after,
.skeleton,
.pfm-wait-bar::after { animation: none !important; }
.mini-spinner, .spinner { animation-duration: 1.2s !important; }
}
/* components.css */
.nav {
position: fixed;
top: 0;
left: 0;
right: 0;
height: var(--nav-h);
display: flex;
align-items: center;
gap: 8px;
padding: 0 max(var(--page-x), env(safe-area-inset-right)) 0
max(var(--page-x), env(safe-area-inset-left));
z-index: 100;
background-image: linear-gradient(
to bottom,
rgba(var(--bg-rgb), 0.9),
rgba(var(--bg-rgb), 0)
);
background-color: rgba(var(--bg-rgb), 0);
transition:
background-color 400ms var(--ease),
box-shadow 400ms var(--ease);
}
.nav.solid {
background-color: rgba(var(--bg-rgb), 0.97);
box-shadow: 0 1px 0 var(--line);
}
.nav-logo {
display: flex;
align-items: center;
gap: 10px;
font-size: 1.3rem;
font-weight: 800;
letter-spacing: 0.02em;
margin-right: 20px;
border-radius: var(--radius-s);
padding: 6px 10px;
}
.nav-logo .logo-mark {
width: 26px;
height: 26px;
border-radius: 8px;
background: conic-gradient(from 210deg, #6c58ff, #b76cff, #4ea3ff, #6c58ff);
box-shadow: 0 0 18px rgba(124, 100, 255, 0.55);
}
.nav-item {
padding: 8px 16px;
border-radius: 999px;
color: var(--text-dim);
font-weight: 600;
font-size: 0.95rem;
transition:
color var(--t-fast),
background var(--t-fast),
box-shadow var(--t-fast);
white-space: nowrap;
}
.nav-item:hover {
color: var(--text);
background: var(--surface);
}
.nav-item.active {
color: var(--text);
background: var(--surface);
}
.nav-item:focus {
color: #0b0c14;
background: #fff;
box-shadow: var(--focus-ring);
}
.nav-spacer {
flex: 1;
position: relative;
align-self: stretch;
overflow: hidden;
pointer-events: none;
opacity: 0;
transition: opacity 600ms var(--ease);
-webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.nav.solid .nav-spacer {
opacity: 1;
}
.nav-aurora {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
}
.nav-dl {
flex: none;
padding: 5px 12px;
border-radius: 999px;
background: rgba(96, 165, 250, 0.14);
border: 1px solid rgba(96, 165, 250, 0.35);
color: #9ec8ff;
font-size: 0.8rem;
font-weight: 800;
white-space: nowrap;
font-variant-numeric: tabular-nums;
}
.nav-dl:hover {
background: rgba(96, 165, 250, 0.24);
}
.nav-dl.ready {
background: rgba(74, 222, 128, 0.14);
border-color: rgba(74, 222, 128, 0.45);
color: #86efac;
}
.nav-dl.ready:hover {
background: rgba(74, 222, 128, 0.24);
}
.nav-dl:focus {
box-shadow: var(--focus-ring);
}
.nav-gear {
position: relative;
}
.nav-gear.has-new::after {
content: "";
position: absolute;
top: 6px;
right: 6px;
width: 8px;
height: 8px;
border-radius: 50%;
background: #4ade80;
box-shadow: 0 0 0 2px var(--bg, #0b0c14);
}
.nav-profile {
display: flex;
align-items: center;
gap: 10px;
padding: 5px 14px 5px 6px;
border-radius: 999px;
background: var(--surface);
font-weight: 600;
font-size: 0.9rem;
transition:
background var(--t-fast),
box-shadow var(--t-fast);
}
.nav-profile:hover {
background: var(--surface-hover);
}
.nav-profile:focus {
box-shadow: var(--focus-ring);
}
.avatar {
width: 30px;
height: 30px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
flex-shrink: 0;
}
.btn {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 13px 26px;
border-radius: 999px;
font-weight: 700;
font-size: 1rem;
letter-spacing: 0.01em;
background: var(--surface);
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
transition:
transform var(--t-fast) var(--ease),
background var(--t-fast),
box-shadow var(--t-fast);
}
.btn:hover {
background: var(--surface-hover);
transform: translateY(-1px);
box-shadow:
inset 0 0 0 1px rgba(255, 255, 255, 0.14),
0 8px 22px rgba(0, 0, 0, 0.35);
}
.btn:focus {
box-shadow: var(--focus-ring);
}
.btn:active {
transform: scale(0.97);
}
.btn svg {
width: 20px;
height: 20px;
flex-shrink: 0;
}
.btn-primary {
background: linear-gradient(to bottom, #ffffff 0%, #eceef7 100%);
color: #0b0c14;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.38);
}
.btn-primary:hover {
background: linear-gradient(to bottom, #ffffff 0%, #e0e3f0 100%);
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.48);
}
.btn-primary:focus {
box-shadow: var(--focus-ring-light);
}
@property --btn-orbit {
syntax: "<angle>";
initial-value: 0deg;
inherits: false;
}
@keyframes btn-orbit {
to {
--btn-orbit: 360deg;
}
}
@supports ((mask-composite: exclude) or (-webkit-mask-composite: xor)) {
.btn-primary {
position: relative;
}
.btn-primary:focus::after {
content: "";
position: absolute;
inset: -7px;
padding: 4px;
border-radius: inherit;
background: conic-gradient(
from var(--btn-orbit),
#cfc7ff 0deg,
var(--accent) 25deg,
var(--accent-strong) 90deg,
var(--accent-strong) 270deg,
var(--accent) 335deg,
#cfc7ff 360deg
);
-webkit-mask:
linear-gradient(#000 0 0) content-box,
linear-gradient(#000 0 0);
-webkit-mask-composite: xor;
mask:
linear-gradient(#000 0 0) content-box,
linear-gradient(#000 0 0);
mask-composite: exclude;
animation: btn-orbit 3.2s linear(0 0%, 0.6 43.75%, 1 100%) infinite;
pointer-events: none;
}
}
@media (prefers-reduced-motion: reduce) {
.btn-primary:focus::after {
animation: none !important;
}
}
.btn-icon {
width: 48px;
height: 48px;
padding: 0;
justify-content: center;
border-radius: 50%;
}
.btn.small {
padding: 9px 18px;
font-size: 0.9rem;
}
.card {
position: relative;
border-radius: var(--radius);
background: var(--bg-raised);
flex-shrink: 0;
transition:
transform var(--t-med) var(--ease),
box-shadow var(--t-med) var(--ease);
cursor: pointer;
}
.card:hover,
.card:focus {
transform: scale(1.055) translateY(-3px);
box-shadow: var(--card-aura);
z-index: 5;
}
.card::before {
content: "";
position: absolute;
z-index: -1;
inset: calc(-1.1 * var(--card-aura-reach));
padding: var(--card-aura-reach);
border-radius: calc(var(--radius) + var(--card-aura-reach));
background-color: rgba(255, 255, 255, 0.92);
background-clip: content-box;
filter: blur(13px);
opacity: 0;
pointer-events: none;
transition: opacity var(--t-med) var(--ease);
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n' x='0' y='0' width='100%25' height='100%25'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='1' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.9' intercept='0.45'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)'/%3E%3C/svg%3E");
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n' x='0' y='0' width='100%25' height='100%25'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='1' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.9' intercept='0.45'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)'/%3E%3C/svg%3E");
-webkit-mask-size: 100px 100px;
mask-size: 100px 100px;
}
.card:hover::before,
.card:focus::before {
opacity: 0.55;
}
.card:hover .card-poster,
.card:focus .card-poster {
filter: brightness(1.06) saturate(1.04);
}
.card-poster {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: inherit;
transition: filter var(--t-med) var(--ease);
}
.card.poster {
width: 176px;
aspect-ratio: 2 / 3;
}
.card.wide {
width: 300px;
aspect-ratio: 16 / 9;
}
.card-fallback {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
padding: 14px;
text-align: center;
font-weight: 700;
color: var(--text-dim);
background: linear-gradient(160deg, #1b1d31, #101120);
border-radius: inherit;
font-size: 1rem;
}
.card-shade {
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(5, 6, 12, 0.92) 0%, transparent 45%);
border-radius: inherit;
opacity: 0;
transition: opacity var(--t-fast);
pointer-events: none;
}
.card:hover .card-shade,
.card:focus .card-shade,
.card.wide .card-shade,
.card.has-label .card-shade {
opacity: 1;
}
.card-label {
position: absolute;
left: 12px;
right: 12px;
bottom: 10px;
font-size: 0.9rem;
font-weight: 700;
text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
pointer-events: none;
}
.card-sub {
display: block;
font-size: 0.75rem;
font-weight: 600;
color: var(--text-dim);
}
.card-progress {
position: absolute;
left: 12px;
right: 12px;
bottom: 8px;
height: 4px;
border-radius: 2px;
background: rgba(255, 255, 255, 0.25);
overflow: hidden;
pointer-events: none;
}
.card-progress > div {
height: 100%;
background: var(--progress);
border-radius: 2px;
}
.card-progress ~ .card-label {
bottom: 20px;
}
.card-new {
position: absolute;
top: 10px;
left: 10px;
padding: 3px 9px;
border-radius: 7px;
background: var(--accent-strong);
color: #fff;
font-size: 0.68rem;
font-weight: 900;
letter-spacing: 0.1em;
pointer-events: none;
box-shadow: 0 4px 14px rgba(108, 88, 255, 0.5);
}
.card-tag {
position: absolute;
top: 10px;
padding: 3px 8px;
border-radius: 7px;
background: rgba(6, 8, 16, 0.72);
color: #cbd2e6;
font-size: 0.62rem;
font-weight: 900;
letter-spacing: 0.12em;
border: 1px solid rgba(255, 255, 255, 0.16);
backdrop-filter: blur(4px);
pointer-events: none;
}
.card-tag[data-t]::after,
.card-tag span[data-t]::after,
.card-new[data-t]::after {
content: attr(data-t);
}
.card-tag.stream {
left: 10px;
}
.card-tag.kind {
right: 10px;
display: inline-flex;
align-items: center;
gap: 4px;
}
.card-tag.kind svg {
width: 11px;
height: 11px;
flex-shrink: 0;
}
.card-tag.kind.film {
color: var(--kind-film);
border-color: rgba(240, 198, 126, 0.32);
}
.card-tag.kind.series {
color: var(--kind-series);
border-color: rgba(127, 209, 232, 0.32);
}
.card-remove {
position: absolute;
top: 8px;
right: 8px;
width: 30px;
height: 30px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
background: rgba(0, 0, 0, 0.65);
font-size: 0.85rem;
font-weight: 800;
opacity: 0;
transition:
opacity var(--t-fast),
background var(--t-fast);
cursor: pointer;
}
.card:hover .card-remove,
.card:focus .card-remove {
opacity: 1;
}
.card-remove:hover {
background: rgba(220, 60, 60, 0.9);
}
.badge {
display: inline-flex;
align-items: center;
padding: 2px 8px;
border-radius: 6px;
border: 1px solid var(--line);
background: rgba(0, 0, 0, 0.35);
font-size: 0.7rem;
font-weight: 800;
letter-spacing: 0.08em;
color: var(--text-dim);
text-transform: uppercase;
}
.badge-age {
border-color: rgba(255, 255, 255, 0.22);
color: var(--text);
letter-spacing: 0.04em;
}
.row {
margin-top: 22px;
position: relative;
}
.row-title {
font-size: var(--fs-row);
font-weight: 800;
letter-spacing: -0.01em;
margin-bottom: 14px;
padding: 0 var(--page-x);
}
.row-scroller {
display: flex;
gap: 14px;
overflow-x: auto;
padding: calc(var(--card-aura-reach) + 12px) var(--page-x)
calc(var(--card-aura-reach) + 28px);
margin: calc(-2px - var(--card-aura-reach)) 0
calc(-12px - var(--card-aura-reach));
scroll-behavior: smooth;
scrollbar-width: none;
}
.row-scroller::-webkit-scrollbar {
display: none;
}
.row-nav {
display: none;
}
@media (hover: hover) and (pointer: fine) and (min-width: 861px) {
.row-nav {
display: grid;
place-items: center;
position: absolute;
top: var(--row-nav-y, 50%);
transform: translateY(-50%);
z-index: 8;
width: 40px;
height: 40px;
border-radius: 999px;
color: var(--text);
background: rgba(16, 16, 22, 0.72);
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
border: 1px solid rgba(255, 255, 255, 0.14);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
opacity: 0;
pointer-events: none;
transition:
opacity var(--t-fast),
transform var(--t-fast),
background var(--t-fast);
}
.row-nav.prev {
left: var(--row-nav-x, 0px);
}
.row-nav.next {
right: var(--row-nav-x, 0px);
}
.row-nav svg {
width: 24px;
height: 24px;
}
.row.can-prev:hover .row-nav.prev,
.row.can-prev .row-nav.prev:focus,
.row.can-next:hover .row-nav.next,
.row.can-next .row-nav.next:focus {
opacity: 1;
pointer-events: auto;
}
.row-nav:hover {
background: rgba(28, 28, 38, 0.9);
transform: translateY(-50%) scale(1.08);
}
.row-nav:active {
transform: translateY(-50%) scale(0.96);
}
}
@media (prefers-reduced-motion: reduce) {
.row-nav {
transition: none;
}
.row-nav:hover,
.row-nav:active {
transform: translateY(-50%);
}
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
gap: 18px 18px;
padding: 22px var(--page-x) 40px;
}
.grid .card.poster {
width: 100%;
}
#toasts {
position: fixed;
right: 24px;
bottom: 24px;
z-index: 400;
display: flex;
flex-direction: column;
gap: 10px;
pointer-events: none;
}
.toast {
display: flex;
align-items: center;
gap: 10px;
max-width: 360px;
padding: 13px 18px;
border-radius: var(--radius);
background: rgba(20, 22, 34, 0.98);
border: 1px solid var(--line);
box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
font-size: 0.92rem;
font-weight: 600;
animation: toast-in var(--t-med) var(--ease);
transition:
opacity 0.4s,
transform 0.4s;
}
.toast.hide {
opacity: 0;
transform: translateX(24px);
}
.toast.has-action {
pointer-events: auto;
}
.toast-act {
margin-left: 6px;
padding: 5px 12px;
border-radius: 999px;
background: var(--surface-hover);
border: 1px solid var(--line);
color: var(--text);
font-weight: 800;
font-size: 0.82rem;
white-space: nowrap;
}
.toast-act:hover,
.toast-act:focus {
background: #fff;
color: #0b0c14;
}
@keyframes toast-in {
from {
opacity: 0;
transform: translateX(24px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
.modal-backdrop {
position: fixed;
inset: 0;
background: rgba(4, 5, 9, 0.82);
z-index: 300;
display: flex;
align-items: center;
justify-content: center;
animation: fade-in var(--t-fast);
}
@keyframes fade-in {
from {
opacity: 0;
}
}
.modal {
background: var(--bg-raised);
border: 1px solid var(--line);
border-radius: var(--radius-l);
padding: 28px;
max-width: 520px;
width: calc(100% - 48px);
max-height: 85vh;
overflow-y: auto;
box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
animation: modal-in var(--t-med) var(--ease);
}
@keyframes modal-in {
from {
opacity: 0;
transform: scale(0.95) translateY(12px);
}
to {
opacity: 1;
transform: scale(1) translateY(0);
}
}
.modal h2 {
font-size: 1.4rem;
margin-bottom: 18px;
letter-spacing: -0.01em;
}
.dl-picker-sub {
margin: -12px 0 18px;
color: var(--text-dim);
font-size: 0.92rem;
}
.dl-picker-list {
display: flex;
flex-direction: column;
gap: 8px;
max-height: 46vh;
overflow-y: auto;
padding: 4px;
margin: -4px;
}
.dl-picker-head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
margin: 12px 0 0;
font-size: 0.7rem;
font-weight: 900;
letter-spacing: 0.09em;
text-transform: uppercase;
color: var(--text-faint);
}
.dl-picker-all {
padding: 4px 8px;
border-radius: 6px;
text-transform: none;
letter-spacing: 0.06em;
color: var(--text-dim);
transition:
background var(--t-fast),
color var(--t-fast),
box-shadow var(--t-fast);
}
.dl-picker-all:hover {
background: var(--surface);
color: var(--text);
}
.dl-picker-all:focus {
box-shadow: var(--focus-ring);
}
.dl-opt {
display: flex;
align-items: center;
gap: 14px;
width: 100%;
padding: 12px 14px;
border-radius: var(--radius);
background: var(--surface);
text-align: left;
transition:
background var(--t-fast),
box-shadow var(--t-fast);
}
.dl-opt:hover {
background: var(--surface-hover);
}
.dl-opt:focus {
box-shadow: var(--focus-ring);
}
.dl-opt-box {
width: 22px;
height: 22px;
flex-shrink: 0;
border-radius: 6px;
border: 2px solid var(--line);
display: flex;
align-items: center;
justify-content: center;
color: transparent;
transition:
background var(--t-fast),
border-color var(--t-fast),
color var(--t-fast);
}
.dl-opt-box svg {
width: 14px;
height: 14px;
}
.dl-opt[aria-checked="true"] .dl-opt-box {
background: #fff;
border-color: #fff;
color: #0b0c14;
}
.dl-opt-body {
display: flex;
flex-direction: column;
min-width: 0;
}
.dl-opt-name {
font-weight: 700;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.dl-opt-meta {
font-size: 0.8rem;
color: var(--text-dim);
}
.dl-picker-actions {
display: flex;
justify-content: flex-end;
gap: 10px;
margin-top: 22px;
}
.dl-picker-actions .btn {
white-space: nowrap;
}
.field {
margin-bottom: 16px;
}
.field label {
display: block;
font-size: 0.85rem;
font-weight: 700;
color: var(--text-dim);
margin-bottom: 7px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="password"] {
width: 100%;
padding: 12px 16px;
border-radius: var(--radius-s);
background: var(--surface);
border: 1px solid var(--line);
transition:
border-color var(--t-fast),
box-shadow var(--t-fast);
}
.field input[type="password"] {
margin-top: 8px;
}
.field input[type="text"]:focus,
.field input[type="email"]:focus,
.field input[type="password"]:focus {
border-color: rgba(255, 255, 255, 0.5);
box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
}
.pw-error {
color: #ff7a7a;
font-size: 0.82rem;
font-weight: 700;
margin-top: 8px;
}
.pw-error.hidden {
display: none;
}
.field-hint {
color: var(--text-faint);
font-size: 0.8rem;
line-height: 1.45;
margin-top: 8px;
}
.request-sent {
text-align: center;
}
.request-sent-emoji {
font-size: 2.6rem;
line-height: 1;
margin-bottom: 10px;
}
.request-sent h2 {
margin: 0 0 10px;
}
.request-sent p {
color: var(--text-dim);
font-size: 0.92rem;
line-height: 1.55;
margin: 0 0 8px;
}
.request-sent .field-hint {
margin-top: 12px;
}
.profile-lock {
position: absolute;
right: -2px;
bottom: -2px;
font-size: 0.9rem;
background: var(--bg);
border-radius: 50%;
width: 26px;
height: 26px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.pref-profile {
display: flex;
align-items: center;
gap: 16px;
max-width: 640px;
}
.pref-profile .big-avatar.small {
width: 56px;
height: 56px;
font-size: 1.6rem;
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.pref-profile-name {
font-weight: 800;
font-size: 1.05rem;
}
.pref-list {
display: flex;
flex-direction: column;
gap: 2px;
}
.pref-item-text {
max-width: 640px;
}
.pref-item > .pref-item-value {
margin-left: auto;
}
.pref-item {
display: flex;
align-items: center;
gap: 16px;
padding: 14px 0;
border-bottom: 1px solid var(--line);
}
.pref-item:last-child {
border-bottom: 0;
}
.pref-item-text {
flex: 1;
min-width: 0;
}
.pref-item-label {
font-weight: 700;
}
.pref-item-note {
color: var(--text-faint);
font-size: var(--fs-small);
line-height: 1.45;
margin-top: 3px;
}
.pref-item-value {
flex-shrink: 0;
min-width: 132px;
justify-content: center;
}
.menu {
position: absolute;
min-width: 240px;
max-height: 46vh;
overflow-y: auto;
background: rgba(20, 22, 34, 0.98);
border: 1px solid var(--line);
border-radius: var(--radius);
padding: 6px;
box-shadow: 0 18px 60px rgba(0, 0, 0, 0.6);
z-index: 60;
}
.menu-title {
padding: 8px 12px 4px;
font-size: 0.72rem;
font-weight: 800;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--text-faint);
}
.menu-item {
display: flex;
align-items: center;
gap: 10px;
width: 100%;
text-align: left;
padding: 11px 12px;
border-radius: var(--radius-s);
font-size: 0.95rem;
font-weight: 600;
color: var(--text-dim);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
transition:
background var(--t-fast),
color var(--t-fast);
}
.menu-item:hover,
.menu-item:focus {
background: var(--surface-hover);
color: var(--text);
}
.menu-item.active {
color: var(--text);
}
.menu-item.active::before {
content: "✓";
font-weight: 800;
}
.menu-item:not(.active)::before {
content: "";
width: 13px;
}
.menu-item .tag {
margin-left: auto;
font-size: 0.65rem;
letter-spacing: 0.08em;
color: var(--text-faint);
text-transform: uppercase;
}
.sub-sync {
display: flex;
align-items: center;
gap: 8px;
padding: 4px 8px 6px;
}
.sub-sync button {
padding: 8px 10px;
border-radius: var(--radius-s);
background: var(--surface);
border: 1px solid var(--line);
font-weight: 700;
font-size: 0.82rem;
color: var(--text-dim);
transition:
background var(--t-fast),
color var(--t-fast),
box-shadow var(--t-fast);
}
.sub-sync button:hover {
background: var(--surface-hover);
color: var(--text);
}
.sub-sync button:focus {
box-shadow: var(--focus-ring);
color: var(--text);
}
.sub-sync .tag {
min-width: 44px;
text-align: center;
font-size: 0.8rem;
font-weight: 800;
color: var(--text);
text-transform: none;
letter-spacing: 0;
}
.empty {
padding: 90px var(--page-x);
text-align: center;
color: var(--text-dim);
}
.empty .glyph {
font-size: 3rem;
margin-bottom: 12px;
}
.nav-items {
display: contents;
}
.hero-picks,
.hero-progress,
.card-meta,
.row-sub {
display: none;
}
.fmt {
display: inline-flex;
align-items: center;
gap: 6px;
flex-wrap: wrap;
}
.fmt span {
padding: 2px 7px;
border-radius: 6px;
border: 1px solid rgba(255, 255, 255, 0.28);
font-size: 0.62rem;
font-weight: 800;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--text);
white-space: nowrap;
}
.card-tag.ready {
left: 10px;
background: #4ade80;
color: #0b0c14;
}
.card-tag.live {
left: 10px;
background: #93c5fd;
color: #0b0c14;
}
.card-tag.fresh {
left: 10px;
background: #c7bfff;
color: #0b0c14;
}
.look-pick {
display: flex;
flex-direction: column;
gap: 8px;
padding: 12px 14px;
min-width: 170px;
border-radius: 12px;
background: var(--surface);
border: 1px solid var(--line);
text-align: left;
}
.look-pick.on {
border-color: var(--accent);
box-shadow: inset 0 0 0 1px var(--accent);
}
.look-pick:focus {
box-shadow: var(--focus-ring);
}
.look-pick-swatch {
display: flex;
flex-direction: column;
gap: 4px;
width: 100%;
height: 54px;
padding: 6px;
border-radius: 8px;
background: #0b0c14;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.look-pick-swatch i {
display: block;
border-radius: 3px;
background: rgba(255, 255, 255, 0.12);
}
.look-pick-nav { height: 7px; width: 60%; }
.look-pick-hero { height: 18px; width: 100%; background: linear-gradient(90deg, rgba(139,123,255,0.5), rgba(78,163,255,0.25)) !important; }
.look-pick-row { height: 9px; width: 85%; }
.look-pick.glass-preview .look-pick-swatch {
background: radial-gradient(80% 60% at 30% 30%, rgba(60, 235, 150, 0.35), transparent 60%), radial-gradient(60% 50% at 70% 60%, rgba(150, 120, 255, 0.4), transparent 65%), #070811;
}
.look-pick.glass-preview .look-pick-swatch i {
border-radius: 999px;
background: rgba(255, 255, 255, 0.22);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.look-pick.glass-preview .look-pick-hero {
border-radius: 7px;
background: rgba(255, 255, 255, 0.14) !important;
}
.look-notice-wrap {
position: fixed;
inset: 0;
z-index: 320;
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
background: rgba(4, 5, 9, 0.6);
animation: fade-in var(--t-med);
}
.look-notice-wrap.leaving {
opacity: 0;
transition: opacity 240ms var(--ease);
}
.look-notice {
width: min(440px, 100%);
padding: 26px 26px 22px;
border-radius: var(--radius-l);
background: var(--bg-raised);
border: 1px solid var(--line);
box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
animation: modal-in var(--t-med) var(--ease);
text-align: center;
}
.look-notice-glyph {
width: 54px;
height: 54px;
margin: 0 auto 14px;
border-radius: 16px;
background: conic-gradient(from 210deg, #6c58ff, #b76cff, #4ea3ff, #6c58ff);
box-shadow: 0 0 30px rgba(124, 100, 255, 0.55);
}
.look-notice-title {
font-size: 1.3rem;
font-weight: 900;
letter-spacing: -0.02em;
}
.look-notice-text {
margin: 10px 0 18px;
color: var(--text-dim);
line-height: 1.5;
text-wrap: pretty;
}
.look-notice-actions {
display: flex;
gap: 10px;
justify-content: center;
flex-wrap: wrap;
}
.look-notice.sheet .look-notice-text { margin-top: 8px; }
.sheet-icon { font-size: 2rem; line-height: 1; margin-bottom: 10px; }
.empty-note { color: var(--text-dim); font-size: 0.92rem; padding: 6px 0; }
.peek-wrap {
position: fixed;
inset: 0;
z-index: 310;
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
background: rgba(4, 5, 9, 0.62);
animation: fade-in var(--t-fast);
}
.peek-wrap.leaving { opacity: 0; transition: opacity 200ms var(--ease); }
.peek {
width: min(520px, 100%);
max-height: min(86vh, 720px);
overflow: hidden auto;
border-radius: var(--radius-l);
background: var(--bg-raised);
border: 1px solid var(--line);
box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65);
animation: modal-in var(--t-med) var(--ease);
}
.peek-art { position: relative; aspect-ratio: 16 / 9; background: #0b0c14; overflow: hidden; }
.peek-art.poster { aspect-ratio: 16 / 10; }
.peek-art .peek-img, .peek-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.peek-art.poster img { object-position: center 20%; }
.peek-art .card-fallback { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 20px; }
.peek-art-fade {
position: absolute; inset: 0;
background: linear-gradient(to top, var(--bg-raised) 0%, rgba(0, 0, 0, 0) 55%);
}
.peek-close { position: absolute; top: 10px; right: 10px; background: rgba(0, 0, 0, 0.5); }
.peek-body { padding: 4px 22px 20px; }
.peek-title { font-size: 1.35rem; font-weight: 900; letter-spacing: -0.02em; line-height: 1.15; }
.peek-sub { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 12px; color: var(--text-dim); font-size: 0.9rem; margin-top: 6px; }
.peek-progress { display: flex; align-items: center; gap: 10px; margin-top: 12px; font-size: 0.82rem; color: var(--text-dim); }
.peek-bar { flex: 1; height: 4px; border-radius: 4px; background: rgba(255, 255, 255, 0.14); overflow: hidden; }
.peek-bar i { display: block; height: 100%; background: var(--accent, #7c64ff); border-radius: 4px; }
.peek-synopsis { margin: 12px 0 0; color: var(--text-dim); line-height: 1.5; font-size: 0.93rem; display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
.peek-synopsis.skeleton-text { height: 3.6em; border-radius: 8px; background: linear-gradient(100deg, rgba(255,255,255,0.05) 40%, rgba(255,255,255,0.10) 50%, rgba(255,255,255,0.05) 60%); background-size: 200% 100%; animation: shimmer 1.4s infinite; }
.peek-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.peek-remove { margin-left: auto; }
@media (max-width: 720px) {
.peek-wrap { align-items: flex-end; padding: 0; }
.peek { width: 100%; max-height: 88vh; border-radius: 22px 22px 0 0; animation: sheet-up var(--t-med) var(--ease); }
.peek-body { padding-bottom: calc(20px + env(safe-area-inset-bottom)); }
.peek-remove { margin-left: 0; }
}
@keyframes sheet-up { from { transform: translateY(40px); opacity: 0; } }
.look-notice.report { text-align: left; }
.look-notice.report .look-notice-title, .look-notice.report .sheet-icon { text-align: center; }
.report-text, .report-doing {
width: 100%;
margin-top: 8px;
padding: 12px 14px;
border-radius: 12px;
border: 1px solid var(--line);
background: rgba(255, 255, 255, 0.06);
color: var(--text);
font: inherit;
resize: vertical;
}
.report-text:focus, .report-doing:focus { outline: none; box-shadow: var(--focus-ring); }
.report-ctx { margin-top: 10px; font-size: 0.78rem; color: var(--text-faint); }
.report-status { min-height: 1.2em; margin-top: 6px; font-size: 0.85rem; color: var(--text-dim); }
.look-notice.report .look-notice-actions { justify-content: flex-end; margin-top: 14px; }
.card, .card img { -webkit-touch-callout: none; -webkit-user-select: none; user-select: none; -webkit-user-drag: none; }
#nav-new { display: none; position: relative; }
.nav-new-dot { display: none; }
/* screens.css */
.hero {
position: relative;
min-height: 76vh;
display: flex;
align-items: flex-end;
padding: 0 var(--page-x) 56px;
overflow: hidden;
touch-action: pan-y;
}
:root {
--hero-dissolve: linear-gradient(to bottom, #000 70%, rgba(0, 0, 0, 0.45) 81%, transparent 87%);
}
.hero-backdrop {
position: absolute;
inset: -40px;
background-size: cover;
background-position: center 20%;
filter: blur(42px) saturate(1.25) brightness(0.55);
transform: scale(1.15);
transition: opacity 0.75s var(--ease);
-webkit-filter: blur(42px) saturate(1.25) brightness(0.55);
-webkit-mask-image: var(--hero-dissolve);
mask-image: var(--hero-dissolve);
}
.hero-backdrop.fade {
opacity: 0;
background-image: var(--hero-art, none), var(--hero-poster, none);
}
.hero-backdrop.fade.on {
opacity: 1;
}
.hero-backdrop.sharp {
filter: saturate(1.1) brightness(0.62);
transform: scale(1.03);
}
.hero-backdrop.art {
filter: saturate(1.12) brightness(0.58);
transform: scale(1.05);
-webkit-filter: saturate(1.12) brightness(0.58);
}
.hero-backdrop.fade.art::after {
content: "";
position: absolute;
inset: 0;
background-image: inherit;
background-size: inherit;
background-position: inherit;
filter: blur(2.5px);
-webkit-filter: blur(2.5px);
opacity: 0;
transition: opacity 0.6s;
will-change: opacity;
pointer-events: none;
}
.hero-backdrop.fade.on.art::after {
animation: hero-veil-focus 5.5s ease-out forwards;
}
@keyframes hero-veil-focus {
0% { opacity: 1; }
82%, 100% { opacity: 0; }
}
.hero.scrolled .hero-backdrop.fade.on.art::after {
animation: none;
opacity: 1;
}
@media (max-width: 900px) and (orientation: portrait) {
.hero-backdrop.fade {
background-image: var(--hero-poster, none);
background-position: center 34%;
filter: saturate(1.08) brightness(0.56);
-webkit-filter: saturate(1.08) brightness(0.56);
transform: scale(1.02);
animation: none;
}
.hero-backdrop.fade.art::after {
display: none;
}
}
.hero-fade {
position: absolute;
inset: 0;
background:
linear-gradient(
to top,
rgba(11, 12, 20, 0.34) 0%,
rgba(11, 12, 20, 0.3) 42%,
rgba(11, 12, 20, 0.22) 100%
),
linear-gradient(to right, rgba(11, 12, 20, 0.66), transparent 58%);
-webkit-mask-image: linear-gradient(to bottom, #000 62%, rgba(0, 0, 0, 0.72) 78%,
rgba(0, 0, 0, 0.3) 91%, transparent 100%);
mask-image: linear-gradient(to bottom, #000 62%, rgba(0, 0, 0, 0.72) 78%,
rgba(0, 0, 0, 0.3) 91%, transparent 100%);
}
.hero-inner {
position: relative;
display: flex;
align-items: flex-end;
gap: 48px;
width: 100%;
}
.hero-info {
flex: 1;
max-width: 640px;
}
.hero-kicker {
font-size: 0.8rem;
font-weight: 800;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 14px;
}
.hero-title {
font-size: var(--fs-hero);
font-weight: 900;
letter-spacing: -0.02em;
line-height: 1.04;
margin-bottom: 14px;
text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.hero-meta {
display: flex;
align-items: center;
gap: 12px;
color: var(--text-dim);
font-weight: 600;
margin-bottom: 26px;
}
.hero-actions {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.hero-poster {
width: 240px;
aspect-ratio: 2 / 3;
border-radius: var(--radius-l);
object-fit: cover;
box-shadow: 0 30px 80px -45px rgba(0, 0, 0, 0.65);
flex-shrink: 0;
}
@keyframes hero-slide-next {
from { opacity: 0; transform: translate3d(52px, 0, 0); }
to   { opacity: 1; transform: none; }
}
@keyframes hero-slide-prev {
from { opacity: 0; transform: translate3d(-52px, 0, 0); }
to   { opacity: 1; transform: none; }
}
.hero-info.slide-next,
.hero-poster.slide-next {
animation: hero-slide-next 0.5s var(--ease) both;
}
.hero-info.slide-prev,
.hero-poster.slide-prev {
animation: hero-slide-prev 0.5s var(--ease) both;
}
.hero-poster.slide-next,
.hero-poster.slide-prev {
animation-delay: 0.06s;
}
@media (prefers-reduced-motion: reduce) {
.hero-info.slide-next,
.hero-info.slide-prev,
.hero-poster.slide-next,
.hero-poster.slide-prev {
animation: none;
}
.hero-backdrop.fade.art::after {
animation: none;
opacity: 0;
transition: none;
}
}
.hero-dots {
position: absolute;
right: var(--page-x);
bottom: 22px;
display: flex;
gap: 2px;
}
.hero-dot {
display: flex;
align-items: center;
justify-content: center;
padding: 7px;
background: none;
border: 0;
cursor: pointer;
}
.hero-dots span {
width: 8px;
height: 8px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.28);
transition:
background var(--t-fast),
transform var(--t-fast);
}
.hero-dots span.on {
background: #fff;
transform: scale(1.2);
}
@media (max-width: 900px) {
.hero-poster {
display: none;
}
.hero {
min-height: 60vh;
}
}
.hero-synopsis {
max-width: 560px;
color: var(--text-dim);
font-size: 0.98rem;
line-height: 1.55;
margin-bottom: 26px;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
.rating-star {
color: #f5c542;
font-weight: 800;
}
.detail-rate {
display: flex;
align-items: center;
gap: 14px;
margin-bottom: 22px;
}
.detail-rate-label {
color: var(--text-faint);
font-size: 0.82rem;
font-weight: 700;
}
.star-rating {
display: inline-flex;
gap: 2px;
}
.star-rating .star {
font-size: 1.4rem;
line-height: 1;
color: rgba(255, 255, 255, 0.22);
padding: 2px 3px;
border-radius: 6px;
transition:
color var(--t-fast),
transform var(--t-fast);
}
.star-rating .star.on {
color: #f5c542;
}
.star-rating .star:hover {
transform: scale(1.15);
}
.star-rating .star:focus {
box-shadow: var(--focus-ring);
color: #f5c542;
}
.pref-note {
color: var(--text-dim);
font-size: 0.9rem;
padding: 0 var(--page-x);
max-width: 640px;
margin: -4px 0 10px;
}
.detail-synopsis {
max-width: 640px;
color: var(--text-dim);
line-height: 1.6;
margin-bottom: 24px;
display: -webkit-box;
-webkit-line-clamp: 5;
-webkit-box-orient: vertical;
overflow: hidden;
}
.genre-chips {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 18px;
}
.chip {
padding: 7px 16px;
border-radius: 999px;
background: var(--surface);
border: 1px solid var(--line);
font-size: 0.85rem;
font-weight: 700;
color: var(--text-dim);
white-space: nowrap;
transition:
background var(--t-fast),
color var(--t-fast),
box-shadow var(--t-fast);
}
.chip:hover {
background: var(--surface-hover);
color: var(--text);
}
.chip.on {
background: #fff;
color: #0b0c14;
border-color: transparent;
box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
.chip:focus {
box-shadow: var(--focus-ring);
}
.chip.static {
cursor: default;
border-color: var(--line);
background: transparent;
}
.filter-bar {
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
padding: 10px var(--page-x) 16px;
}
.cat-row {
display: flex;
gap: 8px;
padding: 8px var(--page-x);
overflow-x: auto;
scrollbar-width: none;
-webkit-overflow-scrolling: touch;
}
.cat-row::-webkit-scrollbar { display: none; }
.cat-pill {
flex: none;
padding: 9px 18px;
border-radius: 999px;
background: transparent;
border: 1px solid transparent;
font-size: 0.95rem;
font-weight: 800;
color: var(--text-faint);
white-space: nowrap;
transition: color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.cat-pill:hover {
color: var(--text);
background: var(--surface);
}
.cat-pill.on {
background: #fff;
color: #0b0c14;
border-color: transparent;
box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
.cat-pill:focus {
box-shadow: var(--focus-ring);
}
.filter-bar.tools {
padding: 2px var(--page-x) 6px;
gap: 10px;
}
.picker-btn {
display: inline-flex;
align-items: baseline;
gap: 8px;
padding: 8px 16px;
border-radius: 999px;
background: var(--surface);
border: 1px solid var(--line);
font-size: 0.85rem;
font-weight: 700;
color: var(--text);
white-space: nowrap;
transition: background var(--t-fast), box-shadow var(--t-fast);
}
.picker-btn:hover { background: var(--surface-hover); }
.picker-btn:focus { box-shadow: var(--focus-ring); }
.picker-label { color: var(--text-faint); font-weight: 600; }
.picker-caret { color: var(--text-faint); font-size: 0.7rem; }
.picker-btn.set { border-color: rgba(255, 255, 255, 0.35); }
.tool-note {
color: var(--text-faint);
font-size: 0.8rem;
font-weight: 600;
align-self: center;
}
.chip-sep {
flex: none;
width: 1px;
height: 18px;
margin: 0 4px;
background: var(--line);
}
.dropdown-veil {
position: fixed;
inset: 0;
z-index: 290;
}
.dropdown {
position: fixed;
z-index: 291;
max-height: min(340px, 60vh);
overflow-y: auto;
overscroll-behavior: contain;
padding: 6px;
background: var(--bg-raised);
border: 1px solid var(--line);
border-radius: 14px;
box-shadow: 0 22px 60px rgba(0, 0, 0, 0.6);
animation: dropdown-in var(--t-fast) var(--ease);
}
@keyframes dropdown-in {
from { opacity: 0; transform: translateY(-4px); }
}
.dropdown-item {
display: block;
width: 100%;
text-align: left;
padding: 9px 12px;
border-radius: 9px;
font-size: 0.9rem;
font-weight: 600;
color: var(--text-dim);
transition: background var(--t-fast), color var(--t-fast);
}
.dropdown-item:hover {
background: var(--surface-hover);
color: var(--text);
}
.dropdown-item.on {
color: var(--text);
font-weight: 800;
}
.dropdown-item:focus {
box-shadow: inset 0 0 0 2px #fff;
color: var(--text);
}
.grid-skel {
aspect-ratio: 2 / 3;
width: 100%;
}
.browse-head {
padding: calc(var(--nav-h) + 42px) var(--page-x) 8px;
display: flex;
align-items: baseline;
gap: 16px;
}
.browse-head h1 {
font-size: var(--fs-title);
font-weight: 900;
letter-spacing: -0.02em;
}
.browse-head .count {
color: var(--text-faint);
font-weight: 600;
}
.wrapped { padding-top: calc(var(--nav-h) + 18px); }
.wrapped-title { font-size: var(--fs-title); font-weight: 900; margin-top: 10px; }
.wrapped-since { color: var(--text-faint); margin: 4px 0 22px; font-weight: 600; }
.wrapped-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.wrapped-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 22px; }
.wrapped-num {
font-size: 2.2rem; font-weight: 900;
background: linear-gradient(100deg, var(--accent), #4ea3ff);
-webkit-background-clip: text; background-clip: text; color: transparent;
}
.wrapped-label { text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; font-weight: 800; color: var(--text-dim); margin-top: 4px; }
.wrapped-sub { color: var(--text-faint); font-size: 0.85rem; margin-top: 8px; }
.wrapped-roasts { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; max-width: 720px; }
.wrapped-roast {
background: linear-gradient(100deg, rgba(var(--accent-rgb), 0.10), var(--surface) 60%);
border: 1px solid var(--line); border-left: 3px solid var(--accent);
border-radius: 12px; padding: 14px 16px; font-size: 0.95rem; line-height: 1.5;
}
.pref-grid {
padding: 6px var(--page-x) 10px;
}
.pref-grid > .pref-section { margin-bottom: 16px; }
@media (min-width: 1100px) {
.pref-grid { columns: 2; column-gap: 26px; }
.pref-grid > .pref-section {
break-inside: avoid;
margin-bottom: 22px;
}
}
.pref-section {
background: var(--surface);
border: 1px solid var(--line);
border-radius: var(--radius-l);
padding: 18px 20px;
}
.pref-section .row-title { margin-bottom: 6px; }
.pref-section .pref-note { margin-bottom: 12px; }
.pref-section .page-pad { padding-left: 0; padding-right: 0; }
.pref-section .pref-list { padding-right: 18px; }
.rows-editor {
max-height: 340px;
overflow-y: auto;
overflow-x: hidden;
scrollbar-width: thin;
scrollbar-color: var(--surface-hover) transparent;
padding-right: 6px;
-webkit-mask-image: linear-gradient(to bottom, #000 calc(100% - 26px), transparent);
mask-image: linear-gradient(to bottom, #000 calc(100% - 26px), transparent);
}
.rows-editor::-webkit-scrollbar { width: 8px; }
.rows-editor::-webkit-scrollbar-thumb { background: var(--surface-hover); border-radius: 99px; }
.rows-editor::-webkit-scrollbar-track { background: transparent; }
.rows-editor .pref-item { padding: 8px 4px; }
.rows-editor .mini {
padding: 6px 10px;
border-radius: 999px;
background: var(--surface);
border: 1px solid var(--line);
color: var(--text-dim);
font-size: 0.8rem;
font-weight: 700;
white-space: nowrap;
transition: background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
}
.rows-editor .mini:hover { background: var(--surface-hover); color: var(--text); }
.rows-editor .mini:focus { box-shadow: var(--focus-ring); }
.row-grip {
color: var(--text-faint);
letter-spacing: 2px;
margin-right: 10px;
font-size: 0.85rem;
user-select: none;
}
.row-move {
width: 34px;
height: 34px;
border-radius: 10px;
background: var(--surface);
border: 1px solid var(--line);
color: var(--text-dim);
display: inline-flex;
align-items: center;
justify-content: center;
transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.row-move:hover:not(:disabled) { background: var(--surface-hover); color: var(--text); transform: translateY(-1px); }
.row-move:disabled { opacity: 0.3; }
.row-move:focus { box-shadow: var(--focus-ring); }
.pref-item.row-moved {
animation: row-pop 500ms var(--ease);
border-radius: 10px;
}
@keyframes row-pop {
0% { background: rgba(var(--accent-rgb), 0.22); }
100% { background: transparent; }
}
.taste { padding-top: calc(var(--nav-h) + 18px); }
.taste-tile {
position: relative;
border-radius: var(--radius);
padding: 0;
overflow: hidden;
aspect-ratio: 2 / 3;
border: 2px solid transparent;
transition: border-color var(--t-fast), transform var(--t-fast);
}
.taste-tile:hover { transform: translateY(-2px); }
.taste-tile:focus { box-shadow: var(--focus-ring); }
.taste-poster { width: 100%; height: 100%; object-fit: cover; display: block; }
.taste-check {
position: absolute;
top: 8px;
right: 8px;
width: 30px;
height: 30px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
background: rgba(0, 0, 0, 0.55);
color: rgba(255, 255, 255, 0.35);
font-size: 15px;
transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.taste-tile.on { border-color: var(--accent); }
.taste-tile.on .taste-check {
background: var(--accent);
color: #fff;
transform: scale(1.1);
}
.taste-tile.on .taste-poster { filter: brightness(0.8); }
.taste-done {
position: fixed;
left: 50%;
transform: translateX(-50%);
bottom: calc(20px + env(safe-area-inset-bottom));
z-index: 60;
}
.taste-done .btn {
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
min-width: 180px;
justify-content: center;
}
.avatar-photo {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
border-radius: inherit;
}
.big-avatar { position: relative; }
.screensaver {
position: fixed;
inset: 0;
z-index: 800;
background: #000;
opacity: 0;
transition: opacity 700ms var(--ease);
cursor: none;
}
.screensaver.on { opacity: 1; }
.ss-img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0;
transition: opacity 1800ms var(--ease);
filter: brightness(0.75);
}
.ss-img.show { opacity: 1; }
.ss-caption {
position: absolute;
left: 4vw;
bottom: 11vh;
font-size: 1.1rem;
font-weight: 700;
color: rgba(255, 255, 255, 0.85);
text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}
.ss-clock {
position: absolute;
left: 4vw;
bottom: 4vh;
font-size: 3.4rem;
font-weight: 900;
letter-spacing: -0.01em;
color: #fff;
text-shadow: 0 2px 18px rgba(0, 0, 0, 0.8);
font-variant-numeric: tabular-nums;
}
.home-greeting { padding: 18px var(--page-x) 0; font-size: 1.05rem; font-weight: 700; color: var(--text-dim); }
.home-greeting b { color: var(--text); }
.home-greeting.big { padding-top: 26px; }
.home-greeting.big .greet-line { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 900; color: var(--text); letter-spacing: -0.01em; }
.greet-name {
background: linear-gradient(100deg, var(--accent), #b76cff 35%, #4ea3ff 65%, var(--accent));
background-size: 220% 100%;
-webkit-background-clip: text;
background-clip: text;
color: transparent;
animation: greet-shine 8s linear infinite;
}
@keyframes greet-shine { to { background-position: -220% 0; } }
.greet-sub { font-size: 0.98rem; font-weight: 600; color: var(--text-dim); margin-top: 5px; }
@media (prefers-reduced-motion: reduce) {
.greet-name { animation: none; }
}
.suggest-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
gap: 6px 10px;
padding: 0 var(--page-x) 10px;
}
.suggest-divider {
grid-column: 1 / -1;
color: var(--text-faint);
font-size: 0.8rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
padding: 6px 4px 0;
}
.suggest-item {
display: flex;
align-items: center;
gap: 12px;
padding: 8px 12px;
border-radius: var(--radius);
background: var(--surface);
text-align: left;
min-height: 52px;
}
.suggest-item:hover,
.suggest-item:focus {
background: var(--surface-hover);
}
.suggest-thumb {
width: 34px;
height: 50px;
object-fit: cover;
border-radius: 4px;
background: var(--surface-hover);
flex-shrink: 0;
font-size: 0;
}
.suggest-title {
font-weight: 700;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.suggest-meta {
color: var(--text-faint);
font-size: 0.8rem;
flex-shrink: 0;
margin-left: auto;
}
.suggest-item .disc-tag.have {
position: static;
flex-shrink: 0;
}
.search-wrap {
padding: calc(var(--nav-h) + 42px) var(--page-x) 10px;
}
.search-box {
display: flex;
align-items: center;
gap: 14px;
background: var(--surface);
border: 1px solid var(--line);
border-radius: 14px;
padding: 16px 22px;
transition:
border-color var(--t-fast),
box-shadow var(--t-fast);
}
.search-box:focus-within {
border-color: rgba(255, 255, 255, 0.45);
box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}
.search-box svg {
width: 22px;
height: 22px;
color: var(--text-dim);
flex-shrink: 0;
}
.search-box input {
flex: 1;
background: none;
border: none;
font-size: 1.25rem;
font-weight: 600;
}
.search-box input::placeholder {
color: var(--text-faint);
}
.detail-hero {
position: relative;
padding: calc(var(--nav-h) + 60px) var(--page-x) 44px;
display: flex;
gap: 44px;
align-items: flex-end;
overflow: hidden;
}
.detail-hero .hero-backdrop {
filter: blur(60px) saturate(1.2) brightness(0.4);
--hero-dissolve: linear-gradient(to bottom, #000 80%, rgba(0, 0, 0, 0.5) 88%, transparent 92%);
}
.detail-hero .hero-fade {
-webkit-mask-image: linear-gradient(to bottom, #00000073 82%, rgb(0 0 0 / 11%) 93%, transparent 100%);
mask-image: linear-gradient(to bottom, #00000073 82%, rgb(0 0 0 / 11%) 93%, transparent 100%);
}
.detail-hero .hero-backdrop.sharp {
filter: saturate(1.05) brightness(0.42);
}
.detail-poster {
position: relative;
width: 220px;
aspect-ratio: 2 / 3;
border-radius: var(--radius-l);
object-fit: cover;
box-shadow: 0 26px 70px rgba(0, 0, 0, 0.6);
flex-shrink: 0;
}
.detail-info {
position: relative;
flex: 1;
min-width: 0;
}
.detail-title {
font-size: var(--fs-title);
font-weight: 900;
letter-spacing: -0.02em;
margin-bottom: 10px;
text-shadow: 0 3px 24px rgba(0, 0, 0, 0.45);
}
.detail-meta {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 12px;
color: var(--text-dim);
font-weight: 600;
margin-bottom: 24px;
}
.detail-actions {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
@media (max-width: 760px) {
.detail-hero {
flex-direction: column;
align-items: flex-start;
gap: 24px;
}
.detail-poster {
width: 150px;
}
}
.season-bar {
display: flex;
gap: 10px;
padding: 26px var(--page-x) 4px;
overflow-x: auto;
scrollbar-width: none;
}
.season-bar::-webkit-scrollbar {
display: none;
}
.season-pill {
padding: 9px 20px;
border-radius: 999px;
background: var(--surface);
font-weight: 700;
font-size: 0.92rem;
color: var(--text-dim);
white-space: nowrap;
transition:
background var(--t-fast),
color var(--t-fast),
box-shadow var(--t-fast);
}
.season-pill:hover {
background: var(--surface-hover);
color: var(--text);
}
.season-pill.active {
background: #fff;
color: #0b0c14;
}
.season-pill:focus {
box-shadow: var(--focus-ring);
}
.season-bar-trailing {
display: flex;
gap: 10px;
}
.season-bar-trailing.push-end {
margin-left: auto;
}
.episode-list {
padding: 18px var(--page-x);
display: flex;
flex-direction: column;
gap: 10px;
}
.episode-wrap {
display: flex;
align-items: stretch;
gap: 8px;
}
.episode-wrap .episode {
flex: 1;
min-width: 0;
}
.ep-action {
width: 48px;
border-radius: var(--radius);
background: var(--surface);
display: flex;
align-items: center;
justify-content: center;
color: var(--text-faint);
flex-shrink: 0;
transition:
background var(--t-fast),
color var(--t-fast),
box-shadow var(--t-fast);
}
.ep-action svg {
width: 20px;
height: 20px;
}
.ep-action:hover {
background: var(--surface-hover);
color: var(--text);
}
.ep-action:focus {
box-shadow: var(--focus-ring);
}
.ep-action.on {
color: #4ade80;
}
.episode {
display: flex;
align-items: center;
gap: 20px;
padding: 14px;
border-radius: var(--radius);
background: var(--surface);
transition:
background var(--t-fast),
transform var(--t-fast),
box-shadow var(--t-fast);
cursor: pointer;
text-align: left;
width: 100%;
}
.episode:hover {
background: var(--surface-hover);
}
.episode:focus {
box-shadow: var(--focus-ring);
transform: scale(1.01);
}
.episode-num {
width: 44px;
font-size: 1.25rem;
font-weight: 900;
color: var(--text-faint);
text-align: center;
flex-shrink: 0;
}
.episode-body {
flex: 1;
min-width: 0;
}
.episode-title {
display: flex;
align-items: center;
min-width: 0;
font-weight: 700;
}
.episode-title > :not(.episode-name) {
flex: none;
}
.episode-name {
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.ep-dur {
white-space: nowrap;
}
.ep-overview {
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.episode-sub {
font-size: 0.83rem;
color: var(--text-dim);
display: flex;
min-width: 0;
gap: 10px;
align-items: center;
margin-top: 3px;
}
.episode-bar {
width: 130px;
height: 4px;
background: rgba(255, 255, 255, 0.15);
border-radius: 2px;
overflow: hidden;
flex-shrink: 0;
}
.episode-bar > div {
height: 100%;
background: var(--progress);
}
.episode-play {
color: var(--text-dim);
flex-shrink: 0;
width: 22px;
height: 22px;
}
.ep-air {
white-space: nowrap;
font-variant-numeric: tabular-nums;
}
.ep-air.upcoming,
.ep-air.tba {
color: var(--text-faint);
}
.ep-air.tba {
font-style: italic;
}
.episode.unaired {
cursor: default;
opacity: 0.55;
}
.episode.unaired:hover {
background: var(--surface);
}
.sources-section {
display: flex;
flex-direction: column;
gap: 8px;
padding-bottom: 40px;
}
.source-box {
display: flex;
flex-direction: column;
min-height: 0;
max-height: min(50vh, 560px);
border: 1px solid var(--line);
border-radius: 14px;
background: var(--bg-raised);
padding: 10px;
}
.source-box .source-filters {
margin-bottom: 10px;
}
.source-box .source-list {
overflow-y: auto;
min-height: 0;
-webkit-overflow-scrolling: touch;
padding: 4px;
scroll-padding-block: 56px;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(min(430px, 100%), 1fr));
gap: 10px;
}
.source-box .best-pinned,
.source-box .best-pinned:hover {
grid-column: 1 / -1;
position: sticky;
top: 0;
z-index: 2;
border-color: rgba(245, 197, 66, 0.38);
background:
linear-gradient(100deg, rgba(245, 197, 66, 0.10), rgba(108, 88, 255, 0.06) 45%, var(--surface) 75%),
var(--bg-raised);
box-shadow: 0 0 0 8px var(--bg-raised);
transform: none;
}
.source-row-wrap:has(> .source-row.owned) {
border-color: rgba(74, 222, 128, 0.45);
}
.source-filters {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 12px;
}
.source-filter {
display: inline-flex;
align-items: center;
gap: 7px;
padding: 7px 14px;
border-radius: 999px;
background: var(--surface);
border: 1px solid var(--line);
font-weight: 700;
font-size: 0.82rem;
color: var(--text-dim);
white-space: nowrap;
transition:
background var(--t-fast),
color var(--t-fast),
box-shadow var(--t-fast);
}
.source-filter:hover {
background: var(--surface-hover);
color: var(--text);
}
.source-filter.active {
background: #fff;
color: #0b0c14;
border-color: #fff;
}
.source-filter:focus {
box-shadow: var(--focus-ring);
}
.source-filter-count {
font-size: 0.72rem;
font-weight: 800;
padding: 1px 7px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.09);
color: var(--text-faint);
}
.source-filter.active .source-filter-count {
background: rgba(0, 0, 0, 0.12);
color: #0b0c14;
}
.source-list {
display: flex;
flex-direction: column;
gap: 8px;
}
.source-row-wrap {
display: flex;
align-items: stretch;
gap: 0;
border-radius: 14px;
border: 1px solid var(--line);
background:
linear-gradient(155deg, rgba(108, 88, 255, 0.10), rgba(78, 163, 255, 0.05) 40%, var(--surface) 75%);
transition:
border-color var(--t-fast),
box-shadow var(--t-fast),
transform var(--t-fast);
}
.source-row-wrap:hover {
border-color: rgba(124, 100, 255, 0.45);
box-shadow: 0 6px 26px rgba(108, 88, 255, 0.16);
transform: translateY(-2px);
}
.source-row-wrap .source-row {
flex: 1;
min-width: 0;
}
.source-dl {
flex: none;
width: 66px;
border-radius: 0 13px 13px 0;
background: rgba(255, 255, 255, 0.03);
border: none;
border-left: 1px solid var(--line);
color: var(--text-dim);
font-size: 1.05rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 3px;
transition:
background var(--t-fast),
box-shadow var(--t-fast),
color var(--t-fast);
}
.dl-cap {
font-size: 0.55rem;
font-weight: 900;
letter-spacing: 0.09em;
color: var(--text-faint);
}
.source-dl.has-ring .dl-cap {
display: none;
}
.source-dl.done .dl-cap {
color: #4ade80;
}
.source-dl svg {
width: 22px;
height: 22px;
}
.source-dl:hover,
.source-dl:focus {
background: var(--surface-hover);
box-shadow: var(--focus-ring);
color: var(--text);
}
.source-dl.on {
color: var(--accent);
border-color: rgba(255, 255, 255, 0.28);
}
.source-dl.done {
color: #4ade80;
border-color: rgba(74, 222, 128, 0.4);
cursor: default;
}
.source-dl.failed {
color: #f87171;
border-color: rgba(248, 113, 113, 0.45);
}
.source-dl {
position: relative;
}
.dl-face {
position: relative;
z-index: 1;
font-variant-numeric: tabular-nums;
}
.source-dl.has-ring .dl-face {
font-size: 0.8rem;
font-weight: 800;
}
.dl-face.dl-dots {
display: inline-flex;
align-items: center;
gap: 3px;
}
.dl-face.dl-dots i {
width: 4px;
height: 4px;
border-radius: 50%;
background: currentColor;
opacity: 0.4;
animation: dl-dot-bounce 1.05s infinite ease-in-out;
}
.dl-face.dl-dots i:nth-child(2) {
animation-delay: 0.15s;
}
.dl-face.dl-dots i:nth-child(3) {
animation-delay: 0.3s;
}
@keyframes dl-dot-bounce {
0%,
70%,
100% {
transform: translateY(0);
opacity: 0.4;
}
35% {
transform: translateY(-4px);
opacity: 1;
}
}
@media (prefers-reduced-motion: reduce) {
.dl-face.dl-dots i {
animation: dl-dot-fade 1.4s infinite ease-in-out;
}
@keyframes dl-dot-fade {
0%, 70%, 100% { opacity: 0.35; }
35% { opacity: 1; }
}
}
.dl-ring {
display: none;
}
.source-dl.has-ring .dl-ring {
display: block;
position: absolute;
width: 44px;
height: 44px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 50%;
background: conic-gradient(
var(--accent, #60a5fa) calc(var(--dl-pct, 0) * 1%),
rgba(255, 255, 255, 0.14) 0
);
-webkit-mask: radial-gradient(farthest-side, transparent 63%, #000 65%);
mask: radial-gradient(farthest-side, transparent 63%, #000 65%);
transition: background var(--t-fast);
}
.source-row {
display: flex;
align-items: center;
gap: 12px;
width: 100%;
text-align: left;
padding: 12px 14px;
border-radius: 13px 0 0 13px;
background: none;
border: none;
transition:
background var(--t-fast),
box-shadow var(--t-fast),
transform var(--t-fast);
}
.source-row:hover,
.source-row:focus {
background: rgba(255, 255, 255, 0.05);
box-shadow: var(--focus-ring);
}
.source-quality {
width: 58px;
flex-shrink: 0;
text-align: center;
padding: 6px 0;
border-radius: 8px;
border: 1px solid;
font-size: 0.72rem;
font-weight: 900;
letter-spacing: -0.01em;
}
.source-info {
flex: 1;
min-width: 0;
}
.source-title {
display: flex;
align-items: center;
min-width: 0;
font-size: 0.9rem;
font-weight: 700;
color: var(--text);
}
.source-title > :not(.source-name) {
flex: none;
}
.source-name {
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.source-meta {
display: flex;
gap: 12px;
margin-top: 3px;
font-size: 0.75rem;
color: var(--text-faint);
flex-wrap: wrap;
align-items: center;
}
.source-seeds.good {
color: #4ade80;
}
.source-seeds.ok {
color: #fbbf24;
}
.source-seeds.low {
color: #ff7a7a;
}
.source-provider {
opacity: 0.7;
}
.source-cam {
margin-left: 8px;
font-size: 0.6rem;
font-weight: 900;
letter-spacing: 0.08em;
color: #ff7a7a;
border: 1px solid rgba(255, 122, 122, 0.4);
border-radius: 4px;
padding: 0 5px;
vertical-align: middle;
}
.source-pack {
margin-left: 8px;
font-size: 0.6rem;
font-weight: 900;
letter-spacing: 0.08em;
color: #fbbf24;
border: 1px solid rgba(251, 191, 36, 0.4);
border-radius: 4px;
padding: 0 5px;
vertical-align: middle;
}
.source-guidance {
margin-top: 5px;
font-size: 0.74rem;
color: #f5c542;
opacity: 0.95;
}
.source-why {
display: none;
margin-top: 5px;
font-size: 0.72rem;
color: var(--text-faint);
}
.source-row:hover .source-why,
.source-row:focus .source-why,
.source-row-wrap:focus-within .source-why {
display: block;
}
.source-best {
margin-left: 8px;
font-size: 0.58rem;
font-weight: 900;
letter-spacing: 0.08em;
color: #0b0c14;
background: #f5c542;
border-radius: 4px;
padding: 1px 6px;
vertical-align: middle;
}
.source-last {
margin-left: 8px;
font-size: 0.58rem;
font-weight: 900;
letter-spacing: 0.08em;
color: #0b0c14;
background: #60a5fa;
border-radius: 4px;
padding: 1px 6px;
vertical-align: middle;
}
.source-owned {
margin-left: 8px;
font-size: 0.58rem;
font-weight: 900;
letter-spacing: 0.08em;
color: #0b0c14;
background: #4ade80;
border-radius: 4px;
padding: 1px 6px;
vertical-align: middle;
white-space: nowrap;
}
.source-getting {
margin-left: 8px;
font-size: 0.58rem;
font-weight: 900;
letter-spacing: 0.08em;
color: #60a5fa;
border: 1px solid rgba(96, 165, 250, 0.45);
border-radius: 4px;
padding: 0 5px;
vertical-align: middle;
white-space: nowrap;
}
.source-row.owned {
border-color: rgba(74, 222, 128, 0.45);
background: linear-gradient(90deg, rgba(74, 222, 128, 0.12), var(--surface) 60%);
}
.source-quality.owned-chip {
color: #4ade80;
border-color: rgba(74, 222, 128, 0.4);
background: rgba(74, 222, 128, 0.12);
}
.owned-note {
color: #4ade80;
font-weight: 600;
}
.episode.owned {
border-left: 3px solid #4ade80;
}
.episode.up-next {
border-left: 3px solid var(--accent, #60a5fa);
}
.ep-up-next {
margin-left: 8px;
flex: none;
font-size: 0.58rem;
font-weight: 900;
letter-spacing: 0.08em;
color: #0b0c14;
background: var(--accent, #60a5fa);
border-radius: 4px;
padding: 1px 6px;
vertical-align: middle;
}
.source-langs {
letter-spacing: 0.04em;
}
.load-more-host {
display: flex;
justify-content: center;
padding: 8px var(--page-x) 48px;
}
.load-more {
min-width: 220px;
justify-content: center;
}
.load-more.busy {
color: var(--text-dim);
}
.load-more.busy:hover {
transform: none;
}
.source-hint {
color: var(--text-faint);
font-size: 0.82rem;
line-height: 1.45;
margin-bottom: 12px;
max-width: 760px;
}
.source-hint.owned {
color: #4ade80;
font-weight: 600;
font-size: 0.9rem;
}
.dl-callout {
display: flex;
align-items: center;
gap: 16px;
max-width: 760px;
margin: 4px 0 16px;
padding: 14px 18px;
border-radius: var(--radius-l, 14px);
border: 1px solid rgba(96, 165, 250, 0.45);
background: linear-gradient(100deg, rgba(96, 165, 250, 0.16), rgba(192, 132, 252, 0.10));
box-shadow: 0 0 22px rgba(96, 165, 250, 0.12);
}
.dl-callout-icon {
flex: none;
width: 42px;
height: 42px;
display: grid;
place-items: center;
font-size: 1.3rem;
font-weight: 800;
color: #dbeafe;
background: rgba(96, 165, 250, 0.28);
border-radius: 50%;
}
.dl-callout-title {
font-weight: 800;
font-size: 0.95rem;
margin-bottom: 3px;
}
.dl-callout-sub {
color: var(--text-dim, #b6bdcf);
font-size: 0.82rem;
line-height: 1.45;
}
.dl-confirm {
text-align: center;
max-width: 460px;
}
.dl-confirm-emoji {
font-size: 2.6rem;
margin-bottom: 8px;
}
.dl-confirm-title {
margin: 0 0 10px;
}
.dl-confirm-sub {
color: var(--text-dim, #b6bdcf);
font-size: 0.92rem;
line-height: 1.55;
margin: 0 0 18px;
}
.source-tags {
display: flex;
flex-wrap: wrap;
gap: 5px;
margin-top: 5px;
}
.source-tag {
font-size: 0.62rem;
font-weight: 800;
letter-spacing: 0.03em;
color: var(--text-dim);
background: rgba(255, 255, 255, 0.06);
border: 1px solid var(--line);
border-radius: 5px;
padding: 2px 6px;
}
.detail-cast {
color: var(--text-dim);
font-size: 0.9rem;
margin-bottom: 4px;
}
.detail-cast .cast-label {
color: var(--text-faint);
font-weight: 700;
}
.source-play {
width: 30px;
height: 30px;
flex-shrink: 0;
border-radius: 50%;
background: var(--surface-hover);
display: flex;
align-items: center;
justify-content: center;
color: var(--text-dim);
}
.source-play svg {
width: 15px;
height: 15px;
}
.source-row:focus .source-play {
background: #fff;
color: #0b0c14;
}
.source-row-wrap:hover .source-play {
background: linear-gradient(135deg, #6c58ff, #4ea3ff);
color: #fff;
}
.sources-loading,
.sources-empty {
display: flex;
align-items: center;
gap: 10px;
color: var(--text-dim);
padding: 18px 4px;
font-size: 0.9rem;
}
.mini-spinner {
width: 18px;
height: 18px;
border: 2px solid rgba(255, 255, 255, 0.2);
border-top-color: #fff;
border-radius: 50%;
animation: spin 0.8s linear infinite;
flex-shrink: 0;
}
.extra-row {
display: flex;
align-items: center;
gap: 14px;
padding: 13px 16px;
border-radius: var(--radius);
background: var(--surface);
font-weight: 600;
}
.extra-row .size {
color: var(--text-faint);
font-size: 0.85rem;
margin-left: auto;
}
.disc-tag {
position: absolute;
top: 10px;
left: 10px;
padding: 3px 9px;
border-radius: 7px;
background: rgba(0, 0, 0, 0.7);
border: 1px solid var(--line);
color: var(--text-dim);
font-size: 0.62rem;
font-weight: 900;
letter-spacing: 0.1em;
pointer-events: none;
}
.disc-tag.have {
background: rgba(74, 222, 128, 0.2);
color: #4ade80;
border-color: transparent;
}
.profiles-gate {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
gap: 34px;
padding: 6vh var(--page-x) 8vh;
background: var(--bg-wash);
}
.profiles-gate > :first-child { margin-top: auto; }
.profiles-gate > :last-child { margin-bottom: auto; }
.profiles-head {
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
width: 100%;
}
.profiles-gate h1 {
font-size: clamp(1.8rem, 3.4vw, 2.8rem);
font-weight: 900;
letter-spacing: -0.02em;
text-align: center;
}
.profiles-search {
display: flex;
align-items: center;
gap: 10px;
width: min(400px, 100%);
padding: 0 16px;
background: var(--surface);
border: 1px solid var(--line);
border-radius: 999px;
transition:
background var(--t-fast),
border-color var(--t-fast),
box-shadow var(--t-fast);
}
.profiles-search:focus-within {
background: var(--surface-hover);
border-color: transparent;
box-shadow: var(--focus-ring);
}
.profiles-search-icon {
display: flex;
color: var(--text-faint);
flex-shrink: 0;
}
.profiles-search-icon svg {
width: 18px;
height: 18px;
}
.profiles-search input {
flex: 1;
min-width: 0;
padding: 12px 0;
border: 0;
outline: none;
background: none;
color: var(--text);
font: inherit;
font-size: 1rem;
}
.profiles-search input::placeholder { color: var(--text-faint); }
.profiles-search input::-webkit-search-cancel-button {
-webkit-appearance: none;
appearance: none;
}
.profiles-body {
width: 100%;
display: flex;
flex-direction: column;
gap: 30px;
}
.profiles-section {
display: flex;
flex-direction: column;
gap: 16px;
}
.profiles-section-label {
align-self: center;
font-size: var(--fs-small);
font-weight: 800;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--text-faint);
}
.profiles-none {
text-align: center;
color: var(--text-dim);
padding: 40px 0;
}
.profiles-row {
display: flex;
gap: 26px;
flex-wrap: wrap;
justify-content: center;
}
.profile-tile {
display: flex;
flex-direction: column;
align-items: center;
gap: 14px;
padding: 18px;
border-radius: var(--radius-l);
transition:
transform var(--t-med) var(--ease),
background var(--t-fast),
box-shadow var(--t-med);
}
.profile-tile:hover,
.profile-tile:focus {
transform: scale(1.07);
background: var(--surface);
box-shadow: var(--focus-ring);
}
.profile-tile .big-avatar {
position: relative;
width: 110px;
height: 110px;
border-radius: 26px;
display: flex;
align-items: center;
justify-content: center;
font-size: 52px;
box-shadow:
inset 0 0 0 1px rgba(255, 255, 255, 0.14),
0 16px 40px rgba(0, 0, 0, 0.45);
}
.profile-tile .name {
font-weight: 700;
color: var(--text-dim);
max-width: 132px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.profile-tile:hover .name,
.profile-tile:focus .name {
color: var(--text);
}
.profile-tile.add .big-avatar {
background: transparent;
color: var(--text-dim);
font-size: 40px;
box-shadow: inset 0 0 0 2px var(--line);
}
.profile-tile.add:hover .big-avatar,
.profile-tile.add:focus .big-avatar {
color: var(--text);
box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
}
.profiles-gate.compact .profiles-row { gap: 12px; }
.profiles-gate.compact .profile-tile { padding: 12px; gap: 10px; }
.profiles-gate.compact .profile-tile .big-avatar {
width: 78px;
height: 78px;
border-radius: 20px;
font-size: 36px;
box-shadow:
inset 0 0 0 1px rgba(255, 255, 255, 0.14),
0 10px 24px rgba(0, 0, 0, 0.4);
}
.profiles-gate.compact .profile-tile .name {
font-size: 0.88rem;
max-width: 96px;
}
.profiles-gate.compact .profile-tile.add .big-avatar { font-size: 30px; }
.avatar-pick {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.avatar-pick button {
width: 46px;
height: 46px;
border-radius: 12px;
font-size: 22px;
background: var(--surface);
transition:
background var(--t-fast),
box-shadow var(--t-fast);
}
.avatar-pick button:hover {
background: var(--surface-hover);
}
.avatar-pick button.on,
.avatar-pick button:focus {
box-shadow: 0 0 0 2px #fff;
}
.color-pick {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.color-pick button {
width: 34px;
height: 34px;
border-radius: 50%;
transition:
box-shadow var(--t-fast),
transform var(--t-fast);
}
.color-pick button.on,
.color-pick button:focus {
box-shadow: 0 0 0 3px #fff;
transform: scale(1.1);
}
.player {
position: fixed;
inset: 0;
background: #000;
z-index: 200;
}
.player video {
width: 100%;
height: 100%;
}
.player.hide-cursor {
cursor: none;
}
.torrent-status {
position: absolute;
inset: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: radial-gradient(
ellipse at center,
rgba(8, 9, 16, 0.72) 0%,
rgba(4, 5, 10, 0.94) 100%
);
z-index: 5;
text-align: center;
padding: 24px;
}
.torrent-status .spinner {
width: 46px;
height: 46px;
}
.torrent-status-title {
font-size: 1.25rem;
font-weight: 800;
margin-bottom: 6px;
}
.torrent-status-sub {
color: var(--text-dim);
font-size: 0.95rem;
font-variant-numeric: tabular-nums;
}
.torrent-status.mini {
background: none;
pointer-events: none;
}
.torrent-status.mini .spinner,
.torrent-status.mini .torrent-status-title,
.torrent-status.mini .btn {
display: none;
}
.torrent-status.mini .torrent-status-sub {
font-size: 0.9rem;
color: var(--text);
white-space: nowrap;
background: rgba(10, 12, 20, 0.6);
border-radius: 999px;
padding: 6px 14px;
backdrop-filter: blur(6px);
transform: translateY(58px);
}
.torrent-badge {
font-size: 0.6rem;
font-weight: 900;
letter-spacing: 0.12em;
color: #60a5fa;
background: rgba(96, 165, 250, 0.12);
border: 1px solid rgba(96, 165, 250, 0.3);
padding: 2px 8px;
border-radius: 6px;
margin-top: 4px;
display: inline-block;
}
.player-top {
position: absolute;
top: 0;
left: 0;
right: 0;
padding: max(26px, env(safe-area-inset-top))
max(36px, env(safe-area-inset-right)) 26px
max(36px, env(safe-area-inset-left));
display: flex;
align-items: center;
gap: 18px;
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent);
transition:
opacity var(--t-med),
transform var(--t-med) var(--ease);
}
.player-title {
font-size: 1.15rem;
font-weight: 800;
letter-spacing: -0.01em;
text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
}
.player-subtitle {
color: var(--text-dim);
font-weight: 600;
font-size: 0.9rem;
}
.player-bottom {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 22px max(36px, env(safe-area-inset-right))
max(28px, env(safe-area-inset-bottom)) max(36px, env(safe-area-inset-left));
background: linear-gradient(
to top,
rgba(0, 0, 0, 0.88) 0%,
rgba(0, 0, 0, 0.45) 55%,
transparent 100%
);
transition:
opacity var(--t-med),
transform var(--t-med) var(--ease);
}
.player.controls-hidden .player-top,
.player.controls-hidden .player-bottom {
opacity: 0;
pointer-events: none;
transform: translateY(6px);
}
.player.controls-hidden .player-top {
transform: translateY(-6px);
}
.scrubber {
position: relative;
height: 22px;
display: flex;
align-items: center;
cursor: pointer;
border-radius: 8px;
touch-action: none;
}
@media (hover: none) {
.scrubber {
height: 40px;
}
}
.scrubber-track {
position: relative;
width: 100%;
height: 5px;
border-radius: 3px;
background: rgba(255, 255, 255, 0.22);
overflow: hidden;
transition: height var(--t-fast);
}
.scrubber:hover .scrubber-track,
.scrubber:focus .scrubber-track {
height: 8px;
}
.scrubber:focus {
box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.85);
}
.scrubber-buffer {
position: absolute;
inset: 0 auto 0 0;
background: rgba(255, 255, 255, 0.25);
}
.scrubber-fill {
position: absolute;
inset: 0 auto 0 0;
background: #fff;
border-radius: 3px;
box-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
}
.scrubber-time {
display: flex;
justify-content: space-between;
font-size: 0.85rem;
font-weight: 700;
color: var(--text-dim);
font-variant-numeric: tabular-nums;
margin-top: 6px;
}
.scrubber-time .buffer-pct {
color: var(--text-faint);
font-weight: 600;
letter-spacing: 0.01em;
}
.player-controls {
display: flex;
align-items: center;
gap: 8px;
margin-top: 12px;
}
.pbtn {
width: 52px;
height: 52px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
transition:
background var(--t-fast),
transform var(--t-fast),
box-shadow var(--t-fast);
}
.pbtn svg {
width: 26px;
height: 26px;
}
.pbtn:hover {
background: rgba(255, 255, 255, 0.16);
transform: scale(1.07);
}
.pbtn:active {
transform: scale(0.96);
}
.pbtn:focus {
background: #fff;
color: #000;
box-shadow: 0 6px 26px rgba(0, 0, 0, 0.5);
}
.pbtn.big svg {
width: 34px;
height: 34px;
}
.player-spacer {
flex: 1;
}
.skip-indicator {
position: absolute;
top: 50%;
right: 12%;
transform: translateY(-50%) scale(0.9);
font-size: 2rem;
font-weight: 900;
color: #fff;
text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
background: rgba(0, 0, 0, 0.45);
border-radius: 999px;
padding: 12px 28px;
opacity: 0;
pointer-events: none;
transition:
opacity 150ms,
transform 150ms;
font-variant-numeric: tabular-nums;
}
.skip-indicator.left {
right: auto;
left: 12%;
}
.skip-indicator.on {
opacity: 1;
transform: translateY(-50%) scale(1);
}
.scrub-tip {
position: absolute;
bottom: 26px;
transform: translateX(-50%);
background: rgba(0, 0, 0, 0.85);
border: 1px solid var(--line);
border-radius: 8px;
padding: 4px 10px;
font-size: 0.8rem;
font-weight: 700;
font-variant-numeric: tabular-nums;
pointer-events: none;
white-space: nowrap;
}
.vol-group {
display: flex;
align-items: center;
}
.vol-slider {
width: 0;
opacity: 0;
transition:
width var(--t-med) var(--ease),
opacity var(--t-med);
accent-color: #fff;
cursor: pointer;
}
.vol-group:hover .vol-slider,
.vol-group:focus-within .vol-slider {
width: 90px;
opacity: 1;
margin-right: 8px;
}
@media (hover: none) {
.vol-slider {
width: 90px;
opacity: 1;
}
}
.shortcut-list {
display: flex;
flex-direction: column;
gap: 8px;
}
.shortcut-row {
display: flex;
align-items: center;
gap: 14px;
}
.shortcut-row kbd {
min-width: 92px;
text-align: center;
padding: 5px 10px;
border-radius: 8px;
background: var(--surface);
border: 1px solid var(--line);
font-family: inherit;
font-size: 0.8rem;
font-weight: 800;
}
.shortcut-row span {
color: var(--text-dim);
font-size: 0.92rem;
}
.player-flash {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 90px;
height: 90px;
border-radius: 50%;
background: rgba(0, 0, 0, 0.55);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
pointer-events: none;
}
.player-flash svg {
width: 44px;
height: 44px;
color: #fff;
}
.player-flash.go {
animation: flash 0.5s ease-out;
}
@keyframes flash {
0% {
opacity: 0;
transform: translate(-50%, -50%) scale(0.7);
}
30% {
opacity: 1;
}
100% {
opacity: 0;
transform: translate(-50%, -50%) scale(1.15);
}
}
.player .menu {
right: 36px;
bottom: 110px;
}
.player .skip-intro {
position: absolute;
right: 40px;
bottom: 130px;
z-index: 4;
background: rgba(12, 13, 20, 0.85);
border: 1px solid rgba(255, 255, 255, 0.4);
font-weight: 800;
letter-spacing: 0.02em;
}
.player .skip-intro:hover,
.player .skip-intro:focus {
background: #fff;
color: #000;
}
.upnext {
position: absolute;
right: 36px;
bottom: 120px;
width: 320px;
background: rgba(16, 18, 28, 0.97);
border: 1px solid var(--line);
border-radius: var(--radius-l);
padding: 16px;
box-shadow: 0 22px 60px rgba(0, 0, 0, 0.6);
animation: toast-in var(--t-med) var(--ease);
}
.upnext .k {
font-size: 0.72rem;
font-weight: 800;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--text-dim);
margin-bottom: 6px;
}
.upnext .t {
font-weight: 800;
margin-bottom: 12px;
}
.upnext-actions {
display: flex;
gap: 8px;
}
.upnext .btn {
padding: 9px 16px;
font-size: 0.88rem;
}
.upnext .ring {
position: relative;
display: inline-block;
margin-right: 6px;
font-variant-numeric: tabular-nums;
}
.spinner {
position: absolute;
top: 50%;
left: 50%;
width: 54px;
height: 54px;
margin: -27px 0 0 -27px;
border: 4px solid rgba(255, 255, 255, 0.2);
border-top-color: #fff;
border-radius: 50%;
animation: spin 0.9s linear infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
.game-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 16px;
padding: 14px var(--page-x) 30px;
}
.game-card {
position: relative;
border-radius: var(--radius);
padding: 22px 18px;
background: linear-gradient(
150deg,
var(--surface),
rgba(255, 255, 255, 0.02)
);
border: 1px solid var(--line);
text-align: left;
transition:
transform var(--t-med) var(--ease),
box-shadow var(--t-med),
background var(--t-fast);
}
.game-card:hover,
.game-card:focus {
transform: scale(1.045);
box-shadow: var(--focus-ring);
background: var(--surface-hover);
}
.game-card .g-icon {
font-size: 2rem;
margin-bottom: 10px;
}
.game-card .g-name {
font-weight: 800;
margin-bottom: 2px;
}
.game-card .g-desc {
font-size: 0.82rem;
color: var(--text-dim);
}
.game-card .g-score {
margin-top: 10px;
font-size: 0.75rem;
font-weight: 700;
color: var(--accent);
}
.game-stage {
position: fixed;
inset: 0;
background: #05060c;
z-index: 200;
display: flex;
flex-direction: column;
}
.game-head {
display: flex;
align-items: center;
gap: 18px;
padding: 16px var(--page-x);
background: var(--glass);
box-shadow: 0 1px 0 var(--line);
}
.game-head .title {
font-weight: 800;
font-size: 1.1rem;
}
.game-head .score {
color: var(--accent);
font-weight: 800;
font-variant-numeric: tabular-nums;
}
.game-body {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
#game-canvas {
max-width: 100%;
max-height: 100%;
border-radius: var(--radius);
}
.game-overlay {
position: absolute;
inset: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 18px;
background: rgba(5, 6, 12, 0.82);
text-align: center;
padding: 24px;
}
.game-overlay h2 {
font-size: 2rem;
font-weight: 900;
}
.game-overlay p {
color: var(--text-dim);
max-width: 420px;
}
.name-input-modal {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
background: rgba(5, 6, 12, 0.85);
z-index: 10;
}
.leaderboard-entry {
display: flex;
gap: 12px;
padding: 8px 14px;
border-radius: var(--radius-s);
font-weight: 600;
font-size: 0.95rem;
}
.leaderboard-entry:nth-child(odd) {
background: var(--surface);
}
.leaderboard-rank {
color: var(--accent);
font-weight: 800;
width: 34px;
}
.leaderboard-name {
flex: 1;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.leaderboard-score {
font-variant-numeric: tabular-nums;
font-weight: 800;
}
.leaderboard-empty {
color: var(--text-faint);
padding: 10px 14px;
text-align: center;
}
.pfm { position: relative; }
.pfm::before {
content: "";
position: absolute;
inset: 0 0 auto;
height: 560px;
background:
radial-gradient(78% 120% at 18% -12%, rgba(139, 123, 255, 0.2), transparent 62%),
radial-gradient(68% 110% at 88% -4%, rgba(108, 88, 255, 0.13), transparent 60%);
pointer-events: none;
}
.pfm > * { position: relative; }
.pfm-head { padding: calc(var(--nav-h) + 52px) var(--page-x) 0; }
.pfm-head h1 {
margin: 0;
font-size: clamp(2rem, 3.6vw, 3.1rem);
letter-spacing: -0.022em;
line-height: 1.05;
}
.pfm-sub {
color: var(--text-dim);
max-width: 56ch;
line-height: 1.55;
font-size: 1.02rem;
margin: 12px 0 0;
}
.pfm-box {
margin: 26px var(--page-x) 0;
padding: 22px;
background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032));
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: var(--radius-l);
box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
backdrop-filter: blur(18px) saturate(1.2);
}
.pfm-ask { display: flex; gap: 12px; align-items: stretch; }
.pfm-input {
flex: 1;
min-width: 0;
background: rgba(0, 0, 0, 0.42);
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: 14px;
color: var(--text);
font-family: inherit;
font-size: 1.15rem;
padding: 17px 20px;
transition:
border-color var(--t-fast) var(--ease),
box-shadow var(--t-fast) var(--ease),
background var(--t-fast) var(--ease);
}
.pfm-input::placeholder { color: var(--text-faint); }
.pfm-input:focus {
outline: none;
background: rgba(0, 0, 0, 0.55);
border-color: rgba(139, 123, 255, 0.75);
box-shadow: 0 0 0 4px rgba(139, 123, 255, 0.16);
}
.pfm-go {
flex: 0 0 auto;
padding: 0 30px;
border: 0;
border-radius: 14px;
color: #fff;
font: inherit;
font-size: 1rem;
font-weight: 800;
white-space: nowrap;
cursor: pointer;
background: linear-gradient(180deg, var(--accent), var(--accent-strong));
box-shadow: 0 10px 26px rgba(108, 88, 255, 0.34);
transition:
transform var(--t-fast) var(--ease),
box-shadow var(--t-fast) var(--ease),
opacity var(--t-fast) var(--ease);
}
.pfm-go:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 14px 32px rgba(108, 88, 255, 0.44); }
.pfm-go:active:not(:disabled) { transform: translateY(0) scale(0.985); }
.pfm-go:disabled { opacity: 0.5; cursor: default; box-shadow: none; }
.pfm-switch {
position: relative;
flex: 0 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
width: 236px;
padding: 4px;
border: 1px solid rgba(255, 255, 255, 0.13);
border-radius: 999px;
background: rgba(0, 0, 0, 0.42);
font: inherit;
cursor: pointer;
}
.pfm-switch-thumb {
position: absolute;
top: 4px;
left: 4px;
width: calc(50% - 4px);
height: calc(100% - 8px);
border-radius: 999px;
background: linear-gradient(180deg, var(--accent), var(--accent-strong));
box-shadow: 0 6px 18px rgba(108, 88, 255, 0.4);
transition: transform var(--t-med) var(--ease);
}
.pfm-switch[aria-checked="true"] .pfm-switch-thumb { transform: translateX(100%); }
.pfm-switch-opt {
position: relative;
padding: 11px 0;
text-align: center;
font-size: 0.92rem;
font-weight: 800;
color: var(--text-dim);
user-select: none;
transition: color var(--t-med) var(--ease);
}
.pfm-switch-opt.on { color: #fff; }
.pfm-tune {
display: flex;
flex-wrap: wrap;
gap: 14px 30px;
margin-top: 18px;
padding-top: 18px;
border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.pfm-tune-group { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.pfm-tune-label {
color: var(--text-faint);
font-size: 0.71rem;
font-weight: 800;
letter-spacing: 0.09em;
text-transform: uppercase;
}
.pfm-pill {
padding: 8px 15px;
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: 999px;
background: rgba(255, 255, 255, 0.045);
color: var(--text-dim);
font: inherit;
font-size: 0.855rem;
font-weight: 700;
cursor: pointer;
transition:
background var(--t-fast) var(--ease),
border-color var(--t-fast) var(--ease),
color var(--t-fast) var(--ease);
}
.pfm-pill:hover { background: rgba(255, 255, 255, 0.1); color: var(--text); }
.pfm-pill.on {
background: rgba(139, 123, 255, 0.2);
border-color: rgba(139, 123, 255, 0.62);
color: #fff;
}
.pfm-examples {
display: flex;
align-items: baseline;
gap: 4px 14px;
flex-wrap: wrap;
padding: 16px var(--page-x) 0;
}
.pfm-examples-label {
color: var(--text-faint);
font-size: 0.78rem;
font-weight: 800;
letter-spacing: 0.04em;
}
.pfm-example {
border: 0;
border-bottom: 1px solid transparent;
background: none;
color: var(--accent);
font: inherit;
font-size: 0.87rem;
padding: 3px 0;
cursor: pointer;
transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.pfm-example:hover { color: #fff; border-bottom-color: rgba(139, 123, 255, 0.6); }
.pfm-wait {
display: flex;
flex-direction: column;
align-items: center;
gap: 18px;
padding: 56px var(--page-x) 10px;
text-align: center;
}
.pfm-wait-msg {
font-size: clamp(1.35rem, 2.1vw, 1.9rem);
font-weight: 700;
letter-spacing: -0.012em;
color: var(--text);
}
@keyframes pfm-fade-up { from { opacity: 0; transform: translateY(7px); } }
.pfm-wait-msg.in { animation: pfm-fade-up 420ms var(--ease); }
.pfm-wait-bar {
width: min(430px, 60vw);
height: 4px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.1);
overflow: hidden;
}
.pfm-wait-bar::after {
content: "";
display: block;
height: 100%;
width: 38%;
border-radius: 999px;
background: linear-gradient(90deg, transparent, var(--accent), transparent);
animation: pfm-sweep 1.5s var(--ease) infinite;
}
@keyframes pfm-sweep { from { transform: translateX(-105%); } to { transform: translateX(370%); } }
.pfm-wait-hint { color: var(--text-faint); font-size: 0.87rem; }
.pfm-skel { aspect-ratio: 2 / 3; border-radius: var(--radius); }
.pfm .pfm-results {
padding-top: 8px;
grid-template-columns: repeat(auto-fill, minmax(188px, 1fr));
}
.pfm-pick { display: flex; flex-direction: column; gap: 10px; }
.pfm-why {
color: var(--text-dim);
font-size: 0.82rem;
line-height: 1.45;
padding-left: 10px;
border-left: 2px solid rgba(139, 123, 255, 0.55);
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
.pfm-status {
color: var(--text-dim);
font-size: 0.88rem;
padding: 22px var(--page-x) 0;
}
@media (max-width: 720px) {
.pfm-ask { flex-wrap: wrap; }
.pfm-input { font-size: 1.05rem; padding: 15px 17px; }
.pfm-go { width: 100%; padding: 15px 0; }
}
.account-devices { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.account-device {
display: flex;
align-items: center;
gap: 12px;
padding: 10px 14px;
background: var(--surface);
border: 1px solid var(--line);
border-radius: 12px;
}
.login-wrap {
position: fixed;
inset: 0;
z-index: 260;
overflow-y: auto;
background:
radial-gradient(120% 90% at 50% -10%, #0c1224 0%, #070a14 48%, #04060c 100%);
}
.login-sky {
position: fixed;
inset: 0;
width: 100%;
height: 100%;
pointer-events: none;
}
.login-gate {
position: relative;
min-height: 100vh;
min-height: 100dvh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 26px;
padding: max(5vh, 30px) 20px calc(max(6vh, 34px) + env(safe-area-inset-bottom, 0px));
}
.login-brand { text-align: center; animation: login-rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.login-logo {
font-size: clamp(2.8rem, 7vw, 4.4rem);
font-weight: 900;
letter-spacing: -0.035em;
line-height: 1.05;
background: linear-gradient(100deg, #37d4a0, #b76cff 38%, #4ea3ff 68%, #37d4a0);
background-size: 220% 100%;
-webkit-background-clip: text;
background-clip: text;
color: transparent;
animation: greet-shine 9s linear infinite;
filter: drop-shadow(0 0 26px rgba(90, 180, 255, 0.22));
}
.login-tag {
color: #8b93ab;
margin-top: 4px;
font-size: 0.95rem;
letter-spacing: 0.16em;
text-transform: uppercase;
font-size: 0.72rem;
}
.login-card {
width: min(420px, 100%);
border-radius: 22px;
padding: 30px 28px 26px;
background: rgba(15, 19, 32, 0.62);
border: 1px solid rgba(160, 185, 255, 0.13);
box-shadow:
inset 0 1px 0 rgba(200, 220, 255, 0.09),
0 30px 80px rgba(0, 0, 0, 0.55),
0 4px 18px rgba(0, 0, 0, 0.4);
backdrop-filter: blur(18px) saturate(1.35);
-webkit-backdrop-filter: blur(18px) saturate(1.35);
animation: login-rise 0.7s 0.12s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
@keyframes login-rise {
from { opacity: 0; transform: translateY(16px); }
to { opacity: 1; transform: none; }
}
.login-card.view-in > * { animation: login-view 0.32s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
@keyframes login-view {
from { opacity: 0; transform: translateY(7px); }
to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
.login-brand, .login-card, .login-card.view-in > * { animation: none; }
.login-logo { animation: none; }
}
.lhead {
margin: 0 0 6px;
font-size: 1.45rem;
font-weight: 800;
letter-spacing: -0.015em;
color: #eef1fa;
}
.lsub { margin: 0 0 18px; color: #9aa3ba; font-size: 0.9rem; line-height: 1.5; }
.ldim { color: #6d7590; }
.lfield {
display: flex;
align-items: center;
gap: 11px;
height: 50px;
padding: 0 15px;
margin-bottom: 10px;
border-radius: 13px;
background: rgba(255, 255, 255, 0.055);
border: 1px solid rgba(255, 255, 255, 0.09);
transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
}
.lfield:focus-within {
background: rgba(255, 255, 255, 0.08);
border-color: rgba(122, 162, 255, 0.55);
box-shadow: 0 0 0 3px rgba(110, 150, 255, 0.16);
}
.lfield-ic { display: flex; color: #6d7590; flex: none; }
.lfield-ic svg { width: 18px; height: 18px; }
.lfield input {
flex: 1;
min-width: 0;
height: 100%;
background: none;
border: 0;
outline: none;
color: #eef1fa;
font: inherit;
font-size: 0.95rem;
}
.lfield input::placeholder { color: #5d6478; }
.lfield-eye {
display: flex;
background: none;
border: 0;
padding: 4px;
margin-right: -4px;
color: #6d7590;
cursor: pointer;
border-radius: 8px;
}
.lfield-eye:hover { color: #aeb6cc; }
.lfield-eye svg { width: 18px; height: 18px; }
.lerr {
display: none;
color: #ff8296;
font-size: 0.85rem;
margin: 2px 2px 10px;
}
.lerr.on { display: block; }
.lerr.shake { animation: lshake 0.4s; }
@keyframes lshake {
20% { transform: translateX(-5px); }
45% { transform: translateX(4px); }
70% { transform: translateX(-3px); }
90% { transform: translateX(2px); }
}
.lbtn {
width: 100%;
height: 50px;
border: 0;
border-radius: 13px;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
font: inherit;
font-size: 0.97rem;
font-weight: 700;
cursor: pointer;
transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
}
.lbtn.primary {
margin-top: 4px;
color: #061310;
background: linear-gradient(115deg, #3fd8a4, #7f8cff 90%);
box-shadow: 0 6px 24px rgba(70, 200, 160, 0.25);
}
.lbtn.primary:hover { filter: brightness(1.08); box-shadow: 0 8px 30px rgba(80, 200, 170, 0.35); }
.lbtn.primary:active { transform: translateY(1px); }
.lbtn.primary:disabled { opacity: 0.7; cursor: default; }
.lbtn.busy > span { animation: lbusy 1.1s ease-in-out infinite; }
@keyframes lbusy { 50% { opacity: 0.45; } }
.lbtn.google {
background: rgba(255, 255, 255, 0.96);
color: #1f2330;
margin-bottom: 10px;
}
.lbtn.google:hover { filter: brightness(1.05); }
.gmark { display: flex; }
.gmark svg { width: 19px; height: 19px; }
.ldivider {
display: flex;
align-items: center;
gap: 12px;
color: #5d6478;
font-size: 0.78rem;
letter-spacing: 0.1em;
text-transform: uppercase;
margin: 18px 0 14px;
}
.ldivider::before, .ldivider::after {
content: "";
flex: 1;
height: 1px;
background: rgba(255, 255, 255, 0.09);
}
.lfoot { margin-top: 18px; text-align: center; color: #8b93ab; font-size: 0.9rem; }
.lskip { margin-top: 10px; text-align: center; }
.llink {
background: none;
border: 0;
padding: 0;
font: inherit;
font-size: inherit;
color: #8fb8ff;
cursor: pointer;
text-decoration: underline;
text-underline-offset: 3px;
text-decoration-color: rgba(143, 184, 255, 0.4);
}
.llink:hover { color: #b3cdff; }
.llink.dim { color: #6d7590; text-decoration-color: rgba(120, 130, 160, 0.4); }
.llink.dim:hover { color: #9aa3ba; }
.lcode {
display: flex;
justify-content: center;
gap: 7px;
margin: 20px 0 14px;
}
.lcode span {
width: 40px;
height: 52px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 11px;
background: rgba(255, 255, 255, 0.07);
border: 1px solid rgba(160, 185, 255, 0.16);
font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
font-size: 1.45rem;
font-weight: 800;
color: #eef1fa;
font-variant-numeric: tabular-nums;
}
.lcode span.sep {
width: 18px;
background: none;
border: 0;
color: #5d6478;
}
@media (max-width: 420px) {
.lcode span { width: 32px; height: 44px; font-size: 1.15rem; }
}
.lwait {
display: flex;
align-items: center;
justify-content: center;
gap: 9px;
color: #8b93ab;
font-size: 0.85rem;
}
.lwait-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: #3fd8a4;
animation: lpulse 1.6s ease-in-out infinite;
}
@keyframes lpulse { 50% { opacity: 0.25; transform: scale(0.75); } }
@media (prefers-reduced-motion: reduce) { .lwait-dot { animation: none; } }
.lsent { text-align: center; padding: 8px 0 4px; }
.lsent-glyph { font-size: 2.6rem; margin-bottom: 10px; }
.lsent + .lbtn { margin-top: 18px; }
.claim-modal { max-width: 430px; }
.claim-glyph { font-size: 2.1rem; margin-bottom: 6px; }
.claim-sub { color: var(--text-faint); font-size: 0.92rem; line-height: 1.55; margin: 6px 0 16px; }
.claim-dim { color: var(--text-faint); opacity: 0.75; }
.claim-modal .field { margin-bottom: 10px; }
.claim-modal input { width: 100%; }
.lgoogle-verified {
display: flex;
align-items: center;
gap: 10px;
padding: 12px 15px;
margin-bottom: 10px;
border-radius: 13px;
background: rgba(63, 216, 164, 0.08);
border: 1px solid rgba(63, 216, 164, 0.3);
font-size: 0.9rem;
color: #cfe9dd;
}
.lgoogle-verified .gmark svg { width: 18px; height: 18px; }
.nav-menu-wrap {
position: fixed;
inset: 0;
z-index: 300;
background: rgba(0, 0, 0, 0.25);
}
.nav-menu {
position: absolute;
top: calc(var(--nav-h) + 8px);
right: max(18px, calc(var(--page-x) - 6px));
min-width: 220px;
padding: 8px;
border-radius: 14px;
background: var(--surface);
border: 1px solid var(--line);
box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
animation: login-view 0.18s ease-out both;
}
@media (prefers-reduced-motion: reduce) { .nav-menu { animation: none; } }
.nav-menu-head { padding: 8px 12px 10px; border-bottom: 1px solid var(--line); margin-bottom: 6px; }
.nav-menu-name { font-weight: 800; }
.nav-menu-sub { color: var(--text-faint); font-size: 0.82rem; margin-top: 1px; }
.nav-menu-item {
display: block;
width: 100%;
text-align: left;
padding: 10px 12px;
border: 0;
border-radius: 9px;
background: none;
color: var(--text);
font: inherit;
font-size: 0.93rem;
cursor: pointer;
}
.nav-menu-item:hover { background: var(--surface-hover); }
.nav-menu-item.danger { color: #ff8296; }
.nav-menu-item.danger:hover { background: rgba(224, 64, 80, 0.12); }
.btn.danger {
color: #ff8296;
border-color: rgba(224, 64, 80, 0.35);
background: rgba(224, 64, 80, 0.08);
}
.btn.danger:hover { background: rgba(224, 64, 80, 0.16); border-color: rgba(224, 64, 80, 0.55); }
.dl-section {
margin-top: 18px;
}
.dl-section .row-title .count {
margin-left: 10px;
font-size: 0.8rem;
color: var(--text-faint);
font-weight: 600;
}
.dl-list {
display: flex;
flex-direction: column;
gap: 10px;
}
.dl-row {
display: grid;
grid-template-columns: 56px 1fr auto;
gap: 14px;
align-items: center;
padding: 10px 12px;
border-radius: 12px;
background: var(--surface);
border: 1px solid transparent;
}
.dl-row.fresh {
border-color: rgba(74, 222, 128, 0.45);
background: rgba(74, 222, 128, 0.06);
}
.dl-poster {
position: relative;
width: 56px;
aspect-ratio: 2/3;
border-radius: 6px;
overflow: hidden;
font-size: 0.5rem;
line-height: 1.15;
background: var(--surface-2, rgba(255, 255, 255, 0.06));
}
.dl-poster .card-fallback {
padding: 4px;
font-weight: 700;
}
.dl-poster img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.dl-info {
min-width: 0;
}
.dl-title {
font-weight: 700;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.dl-new {
margin-left: 8px;
font-size: 0.58rem;
font-weight: 900;
letter-spacing: 0.08em;
color: #0b0c14;
background: #4ade80;
border-radius: 4px;
padding: 1px 6px;
vertical-align: middle;
}
.dl-quality {
margin-left: 8px;
font-size: 0.65rem;
color: var(--text-faint);
font-weight: 700;
}
.dl-status {
margin-top: 3px;
font-size: 0.8rem;
color: var(--text-faint);
}
.dl-row.error .dl-status,
.dl-row.declined .dl-status {
color: #ff7a7a;
}
.dl-bar {
margin-top: 8px;
height: 4px;
border-radius: 2px;
background: rgba(255, 255, 255, 0.08);
overflow: hidden;
}
.dl-bar-fill {
height: 100%;
background: #60a5fa;
transition: width 0.4s ease;
}
.dl-actions {
display: flex;
gap: 8px;
}
.empty.small {
padding: 12px 0;
font-size: 0.85rem;
}
@media (max-width: 640px) {
.dl-row {
grid-template-columns: 44px 1fr;
}
.dl-actions {
grid-column: 1 / -1;
}
}
.trailer-modal {
position: fixed;
inset: 0;
z-index: 60;
background: rgba(0, 0, 0, 0.82);
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
}
.trailer-box {
width: min(1100px, 100%);
background: #0b0c14;
border-radius: 14px;
overflow: hidden;
box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.trailer-head {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 14px;
font-weight: 700;
}
.trailer-close {
width: 36px;
height: 36px;
}
.trailer-frame {
position: relative;
aspect-ratio: 16 / 9;
background: #000;
}
.trailer-frame iframe {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
border: 0;
}
.changelog {
margin: 0;
padding-left: 18px;
list-style: disc;
font-size: 0.88rem;
line-height: 1.5;
}
.changelog li + li {
margin-top: 4px;
}
.changelog-release {
margin-top: 14px;
}
.changelog-head {
font-weight: 700;
font-size: 0.8rem;
color: var(--text-faint);
margin-bottom: 4px;
}
.btn.resume-btn {
padding-left: 6px;
gap: 10px;
}
.resume-peek {
height: 40px;
aspect-ratio: 16 / 9;
object-fit: cover;
border-radius: 6px;
display: block;
}
.resume-card {
position: absolute;
left: 28px;
bottom: 120px;
z-index: 8;
display: flex;
align-items: center;
gap: 14px;
padding: 10px 12px;
border-radius: 12px;
background: rgba(10, 11, 20, 0.86);
border: 1px solid rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
animation: resume-in 0.3s ease-out;
}
.resume-card.leaving {
opacity: 0;
transform: translateY(6px);
transition: opacity 0.3s ease, transform 0.3s ease;
}
.resume-card-frame {
height: 64px;
aspect-ratio: 16 / 9;
object-fit: cover;
border-radius: 8px;
display: block;
}
.resume-card-k {
font-size: 0.7rem;
color: var(--text-faint);
letter-spacing: 0.06em;
text-transform: uppercase;
}
.resume-card-t {
font-size: 1.05rem;
font-weight: 800;
font-variant-numeric: tabular-nums;
}
@keyframes resume-in {
from { opacity: 0; transform: translateY(8px); }
to { opacity: 1; transform: none; }
}
@media (max-width: 640px) {
.resume-card {
left: 12px;
right: 12px;
bottom: 96px;
}
.resume-card-frame {
height: 48px;
}
}
.party-pill {
margin-left: auto;
align-self: flex-start;
padding: 6px 12px;
border-radius: 999px;
background: rgba(96, 165, 250, 0.16);
border: 1px solid rgba(96, 165, 250, 0.45);
color: #bfdbfe;
font-weight: 800;
font-size: 0.8rem;
letter-spacing: 0.04em;
white-space: nowrap;
}
.party-pill:focus {
box-shadow: var(--focus-ring);
}
.player-btn.active,
.player .btn.active {
color: #93c5fd;
}
.party-panel {
position: absolute;
right: 36px;
top: 90px;
z-index: 9;
width: min(360px, calc(100% - 48px));
padding: 16px 18px 18px;
border-radius: 16px;
background: rgba(10, 11, 20, 0.92);
border: 1px solid rgba(255, 255, 255, 0.1);
backdrop-filter: blur(12px);
box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.party-head {
display: flex;
align-items: center;
justify-content: space-between;
font-weight: 800;
margin-bottom: 10px;
}
.party-code {
display: flex;
gap: 8px;
justify-content: center;
margin: 6px 0 10px;
}
.party-code span {
width: 52px;
height: 64px;
display: grid;
place-items: center;
font-size: 2rem;
font-weight: 900;
letter-spacing: 0.02em;
border-radius: 12px;
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.12);
font-variant-numeric: tabular-nums;
}
.party-hint {
font-size: 0.78rem;
color: var(--text-faint);
line-height: 1.45;
margin-bottom: 12px;
}
.party-members {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 14px;
}
.party-member {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 4px 10px 4px 4px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.06);
font-size: 0.82rem;
font-weight: 600;
}
.party-member img,
.party-avatar {
width: 24px;
height: 24px;
border-radius: 50%;
object-fit: cover;
display: grid;
place-items: center;
font-size: 0.95rem;
background: rgba(255, 255, 255, 0.08);
}
.party-actions {
display: flex;
justify-content: flex-end;
}
.party-code-input {
width: 100%;
margin: 10px 0 12px;
padding: 12px;
font-size: 1.6rem;
font-weight: 900;
letter-spacing: 0.35em;
text-align: center;
text-transform: uppercase;
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.14);
background: rgba(255, 255, 255, 0.05);
color: inherit;
}
.party-join-actions {
display: flex;
gap: 8px;
justify-content: flex-end;
}
.party-strip {
display: flex;
flex-direction: column;
gap: 8px;
padding: 0 var(--page-x) 14px;
}
.party-strip-item {
display: flex;
align-items: center;
gap: 12px;
width: 100%;
text-align: left;
padding: 12px 16px;
border-radius: 14px;
background: linear-gradient(90deg, rgba(96, 165, 250, 0.16), rgba(96, 165, 250, 0.04));
border: 1px solid rgba(96, 165, 250, 0.35);
color: inherit;
font: inherit;
cursor: pointer;
}
.party-strip-item:focus {
box-shadow: var(--focus-ring);
outline: none;
}
.party-strip-icon {
font-size: 1.3rem;
}
.party-strip-text {
flex: 1;
min-width: 0;
}
.party-strip-sub {
color: var(--text-faint);
font-size: 0.85em;
}
.party-strip-cta {
padding: 6px 14px;
border-radius: 999px;
background: #60a5fa;
color: #0b0c14;
font-weight: 800;
font-size: 0.8rem;
}
@media (max-width: 640px) {
.party-panel {
right: 12px;
left: 12px;
width: auto;
top: 70px;
}
.party-code span {
width: 44px;
height: 54px;
font-size: 1.6rem;
}
}
.btn-offline.saved {
color: #86efac;
}
.pair-screen { min-height: calc(100vh - 80px); display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.pair-wrap { width: 100%; max-width: 480px; }
.pair-card {
background: var(--surface, rgba(255, 255, 255, 0.05));
border: 1px solid var(--line, rgba(255, 255, 255, 0.1));
border-radius: 20px;
padding: 34px 30px 30px;
text-align: center;
animation: screen-in 0.4s ease both;
}
.pair-glyph { font-size: 2.6rem; line-height: 1; margin-bottom: 14px; }
.pair-card h1 { font-size: 1.5rem; margin: 0 0 8px; }
.pair-sub { color: var(--text-dim, #aaa); line-height: 1.5; margin: 0 0 20px; }
.pair-sub strong { color: var(--text, #fff); }
.pair-code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: 0.2em; font-size: 1.1em; }
.pair-card > .btn, .pair-card > div { justify-content: center; }
.player .mark-chip {
position: absolute;
right: 40px;
bottom: 130px;
z-index: 5;
display: flex;
align-items: center;
gap: 10px;
padding: 8px 8px 8px 14px;
border-radius: 999px;
background: rgba(12, 13, 20, 0.88);
border: 1px solid rgba(255, 255, 255, 0.28);
font-weight: 700;
font-size: 0.9rem;
animation: screen-in 0.3s ease both;
}
.player .mark-chip-k { white-space: nowrap; }
.player .tap-ripple {
position: absolute;
width: 150px;
height: 150px;
margin: -75px 0 0 -75px;
border-radius: 50%;
background: radial-gradient(circle, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.1) 55%, rgba(255, 255, 255, 0) 72%);
display: flex;
align-items: center;
justify-content: center;
font-weight: 900;
font-size: 1.05rem;
letter-spacing: 0.02em;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
pointer-events: none;
z-index: 6;
animation: tap-ripple 0.65s ease-out both;
}
@keyframes tap-ripple {
0% { transform: scale(0.55); opacity: 0; }
25% { opacity: 1; }
100% { transform: scale(1.35); opacity: 0; }
}
.player .scrubber-marks { position: absolute; inset: 0; pointer-events: none; }
.player .scrubber-marks i {
position: absolute;
top: 0;
bottom: 0;
width: 3px;
margin-left: -1px;
border-radius: 2px;
background: rgba(255, 255, 255, 0.85);
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
}
.wrapped-preview { opacity: 0.45; filter: saturate(0.4); pointer-events: none; user-select: none; }
.trailer-pills { display: flex; gap: 6px; margin-left: auto; margin-right: 10px; }
.trailer-note { position: absolute; inset: auto 0 0 0; padding: 14px 18px; text-align: center; color: #fff; background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0)); font-size: 0.9rem; }
.detail-server, .episode-still, .episode-kicker { display: none; }
.row, .grid { content-visibility: auto; contain-intrinsic-size: auto 340px; }
.pc-transport, .pc-tools { display: flex; align-items: center; gap: inherit; }
.season-island { display: contents; }
.whatsnew { padding: calc(var(--nav-h) + 40px) var(--page-x) 60px; }
.wn-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 16px; }
.wn-card { display: flex; gap: 18px; padding: 18px; border-radius: var(--radius-l); background: var(--surface); border: 1px solid var(--line); }
.wn-cue { flex: none; width: 76px; height: 76px; border-radius: 20px; display: grid; place-items: center; background: rgba(255,255,255,0.06); position: relative; overflow: hidden; }
.wn-cue i { position: absolute; pointer-events: none; }
.wn-glyph { font-size: 2rem; line-height: 1; }
.wn-title { font-size: 1.1rem; font-weight: 800; margin: 0; }
.wn-what { margin: 8px 0 0; line-height: 1.5; }
.wn-how { margin: 8px 0 0; font-size: 0.9rem; color: var(--text-dim); line-height: 1.5; }
.wn-go { margin-top: 12px; }
.wn-foot { display: flex; gap: 10px; justify-content: center; margin-top: 30px; }
.wn-h1 { font-size: 2.4rem; font-weight: 900; margin: 0 0 10px; }
.wn-sub { color: var(--text-dim); margin: 0 0 24px; }
.wn-kicker { font-size: 0.74rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); }
.wn-ribbon { margin-left: 8px; font-size: 0.66rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; color: #86efac; }
/* responsive.css */
@media (max-width: 900px) {
.grid {
grid-template-columns: repeat(auto-fill, minmax(136px, 1fr));
}
}
@media (max-width: 860px) {
.nav {
gap: 4px;
overflow-x: auto;
overflow-y: hidden;
scrollbar-width: none;
-webkit-overflow-scrolling: touch;
}
.nav::-webkit-scrollbar {
display: none;
}
.nav > * {
flex: none;
}
.nav-logo {
margin-right: 4px;
padding: 6px;
}
.nav-logo span:not(.logo-mark) {
display: none;
}
.nav-item {
padding: 8px 12px;
}
.nav-spacer {
width: 4px;
}
.nav-aurora {
display: none;
}
#nav-profile-name {
display: none;
}
.nav-profile {
padding: 5px 6px;
}
.nav.clip-right {
-webkit-mask-image: linear-gradient(to right, #000 calc(100% - 48px), transparent);
mask-image: linear-gradient(to right, #000 calc(100% - 48px), transparent);
}
.nav.clip-left {
-webkit-mask-image: linear-gradient(to right, transparent, #000 48px);
mask-image: linear-gradient(to right, transparent, #000 48px);
}
.nav.clip-left.clip-right {
-webkit-mask-image: linear-gradient(to right, transparent, #000 48px, #000 calc(100% - 48px), transparent);
mask-image: linear-gradient(to right, transparent, #000 48px, #000 calc(100% - 48px), transparent);
}
}
@media (max-width: 600px) {
#toasts {
left: 16px;
right: 16px;
bottom: calc(16px + env(safe-area-inset-bottom));
}
.toast {
max-width: none;
}
:root {
--page-x: 16px;
--nav-h: 56px;
--fs-hero: clamp(1.8rem, 9vw, 2.4rem);
}
.hero {
padding-bottom: 56px;
}
.hero-inner {
gap: 0;
}
.hero-dots {
left: 0;
right: 0;
bottom: 10px;
justify-content: center;
}
.grid {
grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
gap: 14px 12px;
}
.row-scroller {
gap: 10px;
}
.card.poster {
width: 150px;
}
.card.wide {
width: 264px;
}
.browse-head {
flex-wrap: wrap;
row-gap: 2px;
}
.browse-head .count {
flex-basis: 100%;
order: 3;
}
.filter-bar.tools {
flex-wrap: nowrap;
overflow-x: auto;
scrollbar-width: none;
-webkit-overflow-scrolling: touch;
padding: 6px var(--page-x) 8px;
}
.filter-bar.tools::-webkit-scrollbar {
display: none;
}
.filter-bar.tools > * {
flex: none;
}
.detail-poster {
width: 120px;
}
.profiles-row {
gap: 14px;
}
.profile-tile {
padding: 10px;
gap: 10px;
}
.profile-tile .big-avatar {
width: 84px;
height: 84px;
border-radius: 20px;
font-size: 40px;
}
.profile-tile .name {
font-size: 0.9rem;
max-width: 92px;
}
.profiles-gate.compact .profile-tile .big-avatar {
width: 64px;
height: 64px;
border-radius: 16px;
font-size: 30px;
}
.profiles-gate.compact .profile-tile .name {
font-size: 0.8rem;
max-width: 74px;
}
.source-dl {
width: 62px;
}
.source-dl.has-ring .dl-ring {
width: 38px;
height: 38px;
}
.source-row {
gap: 10px;
padding: 10px;
}
.source-row .source-play {
display: none;
}
.source-row.owned .source-owned {
display: none;
}
.suggest-item .disc-tag.have {
width: 22px;
height: 22px;
padding: 0;
border-radius: 50%;
font-size: 0;
display: inline-grid;
place-items: center;
}
.suggest-item .disc-tag.have::after {
content: "✓";
font-size: 12px;
font-weight: 900;
}
.source-quality {
min-width: 42px;
padding: 2px 4px;
font-size: 0.62rem;
}
.source-meta {
gap: 8px;
}
.episode {
gap: 10px;
padding: 12px 10px;
}
.episode .episode-play {
display: none;
}
.ep-action {
width: 44px;
}
.episode-num {
width: 22px;
font-size: 1rem;
}
.episode-title .source-owned {
display: none;
}
.episode-sub .badge {
display: none;
}
.episode-sub .ep-overview {
display: none;
}
.player-top {
padding: max(14px, env(safe-area-inset-top))
max(16px, env(safe-area-inset-right)) 14px
max(16px, env(safe-area-inset-left));
}
.player-bottom {
padding: 14px max(16px, env(safe-area-inset-right))
max(18px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
}
.player-controls {
gap: 2px;
}
.pbtn {
width: 42px;
height: 42px;
}
.pbtn svg {
width: 22px;
height: 22px;
}
.pbtn.big svg {
width: 28px;
height: 28px;
}
}
@media (hover: none) {
.card-remove {
opacity: 1;
width: 40px;
height: 40px;
font-size: 1rem;
}
.chip,
.cat-pill,
.season-pill,
.source-filter,
.picker-btn {
min-height: 40px;
}
.star-rating .star {
padding: 6px 6px;
font-size: 1.55rem;
}
}
@media (hover: none) and (max-height: 500px) {
.vol-group {
display: none;
}
}
@media (hover: none) and (max-width: 600px) {
.vol-group {
display: none;
}
}
/* glass.css */
html[data-look="glass"] {
--g-radius: 20px;
--g-radius-l: 30px;
--g-fill: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025) 55%, rgba(255, 255, 255, 0.06));
--g-fill-strong: linear-gradient(135deg, rgba(20, 22, 38, 0.42), rgba(14, 16, 30, 0.28));
--g-edge: inset 0 1px 0 rgba(255, 255, 255, 0.38), inset 1px 0 0 rgba(255, 255, 255, 0.14),
inset 0 -1px 0 rgba(255, 255, 255, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
--g-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
--g-blur: blur(7px) saturate(1.9) brightness(1.08);
--g-progress: linear-gradient(90deg, #8b7bff, #a6c8ff);
--g-glow: 0 0 10px rgba(139, 123, 255, 0.6);
--bg: #070811;
--bg-rgb: 7, 8, 17;
--text-dim: #c2c7d6;
--text-faint: #8c93a8;
--radius: 16px;
--radius-l: 24px;
--t-slow: 420ms;
}
html[data-look="glass"][data-theme="warm"] {
--bg: #100d08;
--bg-rgb: 16, 13, 8;
}
html[data-look="glass"][data-theme="oled"] {
--bg: #000;
--bg-rgb: 0, 0, 0;
}
.glass-sky {
display: none;
}
html[data-look="glass"] .glass-sky {
display: block;
position: fixed;
inset: 0;
width: 100%;
height: 100%;
z-index: -1;
pointer-events: none;
opacity: 0;
transition: opacity 1.4s var(--ease);
}
html[data-look="glass"] .glass-sky.on {
opacity: 0.9;
}
html[data-look="glass"] body {
background-color: var(--bg);
background-image:
radial-gradient(120% 90% at 70% -20%, rgba(96, 80, 220, 0.28), transparent 60%),
radial-gradient(80% 60% at 0% 100%, rgba(48, 112, 184, 0.22), transparent 55%);
background-attachment: fixed;
}
html[data-look="glass"] body::before,
html[data-look="glass"] body::after {
display: none;
}
html[data-look="glass"] .nav-aurora {
display: none;
}
html[data-look="glass"] .g,
html[data-look="glass"] .nav-items,
html[data-look="glass"] .nav-logo,
html[data-look="glass"] .nav-profile,
html[data-look="glass"] .nav-gear,
html[data-look="glass"] .nav-dl,
html[data-look="glass"] .hero,
html[data-look="glass"] .hero-picks,
html[data-look="glass"] .menu,
html[data-look="glass"] .modal,
html[data-look="glass"] .nav-menu,
html[data-look="glass"] .dropdown,
html[data-look="glass"] .toast,
html[data-look="glass"] .player-bottom,
html[data-look="glass"] .player-top > div,
html[data-look="glass"] .player-top .pbtn,
html[data-look="glass"] .upnext,
html[data-look="glass"] .resume-card,
html[data-look="glass"] .party-panel,
html[data-look="glass"] .party-pill,
html[data-look="glass"] .trailer-box,
html[data-look="glass"] .search-box,
html[data-look="glass"] .login-card,
html[data-look="glass"] .claim-modal,
html[data-look="glass"] .suggest-list {
background: var(--g-fill);
box-shadow: var(--g-edge), var(--g-shadow);
backdrop-filter: var(--g-blur);
-webkit-backdrop-filter: var(--g-blur);
border: 0;
}
html[data-look="glass"] .modal,
html[data-look="glass"] .login-card,
html[data-look="glass"] .toast,
html[data-look="glass"] .search-box {
position: relative;
}
html[data-look="glass"] .nav-items::before,
html[data-look="glass"] .hero::before,
html[data-look="glass"] .player-bottom::before,
html[data-look="glass"] .modal::before,
html[data-look="glass"] .login-card::before {
content: "";
position: absolute;
inset: 0;
border-radius: inherit;
pointer-events: none;
z-index: 1;
overflow: hidden;
background: radial-gradient(120% 60% at 15% 0%, rgba(255, 255, 255, 0.14), transparent 55%);
}
@media (prefers-reduced-transparency: reduce), (hover: none) and (pointer: coarse) and (min-width: 1200px) {
html[data-look="glass"] .nav-items,
html[data-look="glass"] .hero,
html[data-look="glass"] .menu,
html[data-look="glass"] .modal,
html[data-look="glass"] .toast,
html[data-look="glass"] .player-bottom,
html[data-look="glass"] .upnext,
html[data-look="glass"] .party-panel {
backdrop-filter: none;
-webkit-backdrop-filter: none;
background: rgba(18, 20, 34, 0.9);
}
}
@media (prefers-reduced-motion: reduce) {
html[data-look="glass"] *::before {
animation: none !important;
}
}
html[data-look="glass"] .nav {
background-image: none;
background-color: transparent;
padding-top: 18px;
height: calc(var(--nav-h) + 22px);
gap: 10px;
}
html[data-look="glass"] .nav.solid {
background-color: transparent;
box-shadow: none;
}
html[data-look="glass"] .nav.solid::after {
content: "";
position: absolute;
inset: 0 0 -30px;
z-index: -1;
pointer-events: none;
background: linear-gradient(to bottom, rgba(var(--bg-rgb), 0.82), rgba(var(--bg-rgb), 0));
}
html[data-look="glass"] .nav-logo {
border-radius: 999px;
padding: 7px 16px 7px 8px;
margin-right: 0;
font-size: 1.05rem;
}
html[data-look="glass"] .nav-items {
display: flex;
align-items: center;
gap: 2px;
padding: 6px;
border-radius: 999px;
position: absolute;
left: 50%;
transform: translateX(-50%);
}
html[data-look="glass"] .nav-item {
padding: 9px 15px;
border-radius: 999px;
font-weight: 600;
font-size: 0.9rem;
color: rgba(243, 244, 248, 0.82);
transition: background var(--t-fast), color var(--t-fast);
}
html[data-look="glass"] .nav-item:hover,
html[data-look="glass"] .nav-item:focus:not(:focus-visible) {
background: rgba(255, 255, 255, 0.08);
color: #fff;
box-shadow: none;
}
html[data-look="glass"] .nav-item.active:focus:not(:focus-visible) {
background: rgba(255, 255, 255, 0.14);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
html[data-look="glass"] .nav-item:focus-visible {
color: #0b0c14;
background: #fff;
box-shadow: var(--focus-ring);
}
html[data-look="glass"] .nav-item.active {
background: rgba(255, 255, 255, 0.14);
color: #fff;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
html[data-look="glass"] .nav-item.active::after {
display: none;
}
html[data-look="glass"] .nav-spacer {
flex: 1;
}
html[data-look="glass"] .nav-gear {
width: 42px;
height: 42px;
border-radius: 999px;
display: grid;
place-items: center;
padding: 0;
color: rgba(243, 244, 248, 0.8);
}
html[data-look="glass"] .nav-gear.has-new::after {
top: 7px;
right: 7px;
}
html[data-look="glass"] .nav-profile {
border-radius: 999px;
padding: 5px 14px 5px 5px;
}
html[data-look="glass"] .nav-dl {
border-radius: 999px;
padding: 9px 14px;
}
html[data-look="glass"] .nav-dl.ready {
background: rgba(74, 222, 128, 0.16);
box-shadow: inset 0 0 0 1px rgba(74, 222, 128, 0.42), var(--g-shadow);
}
@media (max-width: 1100px) {
html[data-look="glass"] .nav-items {
position: static;
transform: none;
}
html[data-look="glass"] .nav-item {
padding: 9px 11px;
}
}
@media (max-width: 720px) {
html[data-look="glass"] .nav {
padding-top: 10px;
height: var(--nav-h);
}
html[data-look="glass"] .nav-items {
position: fixed;
top: auto;
left: 12px;
right: 12px;
bottom: max(12px, env(safe-area-inset-bottom));
transform: none;
justify-content: space-around;
padding: 6px;
z-index: 100;
}
html[data-look="glass"] .nav-item {
flex: 1;
text-align: center;
padding: 11px 6px;
font-size: 0.76rem;
font-weight: 700;
}
html[data-look="glass"] #app {
padding-bottom: 92px;
}
html[data-look="glass"] .episode-bar {
width: 72px;
}
html[data-look="glass"] #toasts {
bottom: calc(78px + env(safe-area-inset-bottom, 0px));
}
html[data-look="glass"] body:has(.player) #toasts {
bottom: 150px;
}
html[data-look="glass"] body:has(.player) .nav-items {
display: none;
}
}
html[data-look="glass"] .hero {
min-height: 0;
height: min(800px, 84vh);
margin: 12px 12px 0;
padding: 0;
border-radius: 32px;
overflow: hidden;
align-items: flex-end;
background: var(--g-fill-strong);
}
html[data-look="glass"] .hero .hero-backdrop {
filter: saturate(1.1) brightness(0.86);
-webkit-filter: saturate(1.1) brightness(0.86);
transform: none;
background-position: center 18%;
}
html[data-look="glass"] .hero .hero-backdrop.art::after {
display: none;
}
html[data-look="glass"] .hero-layer {
-webkit-mask-image: none;
mask-image: none;
inset: 0;
transform: none;
}
html[data-look="glass"] .hero-fade {
-webkit-mask-image: none;
mask-image: none;
background:
linear-gradient(to bottom, rgba(7, 8, 17, 0.5), transparent 24%),
linear-gradient(90deg, rgba(7, 8, 17, 0.86) 0%, rgba(7, 8, 17, 0.45) 38%, rgba(7, 8, 17, 0) 70%),
linear-gradient(to top, rgba(7, 8, 17, 0.82), transparent 46%);
}
html[data-look="glass"] .hero-inner {
padding: 0 var(--page-x) 28px;
z-index: 2;
}
html[data-look="glass"] .hero-poster {
display: none;
}
html[data-look="glass"] .hero-kicker {
display: inline-flex;
align-items: center;
padding: 6px 12px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.1);
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
font-size: 0.7rem;
font-weight: 800;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #f0c67e;
margin-bottom: 14px;
}
html[data-look="glass"] .hero-title {
font-size: clamp(2.4rem, 4.6vw, 4.1rem);
letter-spacing: -0.03em;
line-height: 1;
margin-bottom: 12px;
}
html[data-look="glass"] .hero-meta {
margin-bottom: 12px;
flex-wrap: wrap;
gap: 10px;
font-size: 0.9rem;
}
html[data-look="glass"] .hero-synopsis {
max-width: 560px;
font-size: 1rem;
line-height: 1.5;
color: rgba(243, 244, 248, 0.82);
margin-bottom: 14px;
}
html[data-look="glass"] .hero-progress {
display: flex;
align-items: center;
gap: 12px;
font-size: 0.82rem;
color: rgba(243, 244, 248, 0.8);
margin-bottom: 20px;
}
html[data-look="glass"] .hero-actions {
margin-top: 4px;
}
html[data-look="glass"] .hero-dots {
display: flex;
right: var(--page-x);
bottom: 40px;
gap: 4px;
z-index: 3;
}
html[data-look="glass"] .hero-dots span {
width: 7px;
height: 7px;
background: rgba(255, 255, 255, 0.36);
transition: width var(--t-med) var(--ease), background var(--t-fast), transform var(--t-fast);
}
html[data-look="glass"] .hero-dots span.on {
width: 22px;
border-radius: 999px;
background: #fff;
transform: none;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
html[data-look="glass"] .hero-picks {
display: none;
flex-direction: column;
gap: 4px;
position: absolute;
right: 28px;
bottom: 28px;
z-index: 3;
padding: 8px;
border-radius: var(--g-radius);
}
html[data-look="glass"] .hero-picks-k {
font-size: 0.62rem;
font-weight: 800;
letter-spacing: 0.1em;
text-transform: uppercase;
color: rgba(243, 244, 248, 0.66);
padding: 6px 10px 2px;
}
html[data-look="glass"] .hero-pick {
display: flex;
align-items: center;
gap: 10px;
width: 220px;
padding: 8px 12px 8px 8px;
border-radius: 14px;
text-align: left;
color: rgba(243, 244, 248, 0.85);
transition: background var(--t-fast), box-shadow var(--t-fast);
}
html[data-look="glass"] .hero-pick img,
html[data-look="glass"] .hero-pick-thumb {
width: 40px;
height: 60px;
border-radius: 8px;
object-fit: cover;
background: var(--surface);
flex-shrink: 0;
}
html[data-look="glass"] .hero-pick-text {
display: flex;
flex-direction: column;
min-width: 0;
}
html[data-look="glass"] .hero-pick-title {
font-weight: 800;
font-size: 0.82rem;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
html[data-look="glass"] .hero-pick-sub {
font-size: 0.7rem;
color: rgba(243, 244, 248, 0.74);
}
html[data-look="glass"] .hero-pick.on,
html[data-look="glass"] .hero-pick:hover {
background: rgba(255, 255, 255, 0.14);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
html[data-look="glass"] .hero-pick:focus {
box-shadow: var(--focus-ring);
outline: none;
}
@media (max-width: 720px) {
html[data-look="glass"] .hero {
margin: 8px 8px 4px;
height: min(560px, 72vh);
border-radius: 24px;
}
html[data-look="glass"] .hero-dots {
left: 50%;
right: auto;
bottom: 12px;
transform: translateX(-50%);
}
html[data-look="glass"] .hero-inner {
padding: 0 20px 44px;
}
html[data-look="glass"] .hero-fade {
background: linear-gradient(to top, rgba(7, 8, 17, 0.95) 0%, rgba(7, 8, 17, 0.4) 50%, transparent 80%);
}
html[data-look="glass"] .hero-title {
font-size: 2.1rem;
}
html[data-look="glass"] .hero-synopsis {
display: none;
}
}
html[data-look="glass"] .row {
margin-top: 26px;
}
html[data-look="glass"] .row-title {
display: flex;
align-items: baseline;
gap: 10px;
font-size: 1.25rem;
}
html[data-look="glass"] .row-title .row-sub {
font-size: 0.82rem;
font-weight: 600;
color: rgba(243, 244, 248, 0.66);
}
html[data-look="glass"] .card {
border-radius: 16px;
background: rgba(255, 255, 255, 0.05);
}
html[data-look="glass"] .card.wide {
border-radius: 18px;
}
html[data-look="glass"] .card-poster,
html[data-look="glass"] .card-fallback,
html[data-look="glass"] .card-shade {
border-radius: inherit;
}
html[data-look="glass"] .card-tag {
border-radius: 999px;
font-size: 0.6rem;
letter-spacing: 0.1em;
border: 0;
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}
html[data-look="glass"] .card-tag.ready {
background: #4ade80;
color: #0b0c14;
box-shadow: none;
}
html[data-look="glass"] .card-tag.live {
background: #93c5fd;
color: #0b0c14;
box-shadow: none;
}
html[data-look="glass"] .card-tag.fresh {
background: #c7bfff;
color: #0b0c14;
box-shadow: none;
}
html[data-look="glass"] .card-new {
border-radius: 999px;
}
html[data-look="glass"] .card-progress {
left: 12px;
right: 12px;
bottom: 10px;
height: 3px;
border-radius: 2px;
background: rgba(255, 255, 255, 0.22);
overflow: visible;
transition: height var(--t-fast);
}
html[data-look="glass"] .card-progress > div {
position: relative;
height: 100%;
border-radius: 2px;
background: var(--g-progress);
box-shadow: var(--g-glow);
}
html[data-look="glass"] .card-progress > div::after {
content: "";
position: absolute;
right: -3px;
top: 50%;
width: 7px;
height: 7px;
border-radius: 999px;
background: #fff;
transform: translateY(-50%);
box-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
}
html[data-look="glass"] .card:hover .card-progress,
html[data-look="glass"] .card:focus .card-progress {
height: 4px;
}
html[data-look="glass"] .card.has-label .card-label {
bottom: 22px;
}
html[data-look="glass"] .card:not(.has-label) .card-progress {
bottom: 10px;
}
html[data-look="glass"] .card-meta {
display: block;
font-size: 0.72rem;
font-weight: 600;
color: rgba(243, 244, 248, 0.8);
margin-top: 2px;
}
html[data-look="glass"] .card-remove {
border-radius: 999px;
}
html[data-look="glass"] .progress,
html[data-look="glass"] .episode-bar,
html[data-look="glass"] .dl-bar {
height: 3px;
border-radius: 2px;
background: rgba(255, 255, 255, 0.14);
overflow: visible;
position: relative;
}
html[data-look="glass"] .progress > i,
html[data-look="glass"] .progress > div,
html[data-look="glass"] .episode-bar > div,
html[data-look="glass"] .dl-bar-fill {
display: block;
position: relative;
height: 100%;
border-radius: 2px;
background: var(--g-progress);
box-shadow: var(--g-glow);
}
html[data-look="glass"] .progress > i::after,
html[data-look="glass"] .progress > div::after,
html[data-look="glass"] .episode-bar > div::after {
content: "";
position: absolute;
right: -3px;
top: 50%;
width: 7px;
height: 7px;
border-radius: 999px;
background: #fff;
transform: translateY(-50%);
box-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
}
html[data-look="glass"] .hero-progress .progress {
width: 180px;
}
html[data-look="glass"] .fmt span {
padding: 3px 7px;
border-radius: 5px;
font-size: 0.6rem;
font-weight: 800;
letter-spacing: 0.09em;
text-transform: uppercase;
color: rgba(243, 244, 248, 0.82);
background: transparent;
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}
html[data-look="glass"] .btn {
background: var(--g-fill);
box-shadow: var(--g-edge);
}
html[data-look="glass"] .hero-actions .btn,
html[data-look="glass"] .detail-actions .btn {
backdrop-filter: blur(12px) saturate(1.5);
-webkit-backdrop-filter: blur(12px) saturate(1.5);
}
html[data-look="glass"] .btn:hover {
background: rgba(255, 255, 255, 0.14);
box-shadow: var(--g-edge), 0 8px 22px rgba(0, 0, 0, 0.35);
}
html[data-look="glass"] .btn-primary,
html[data-look="glass"] .btn-primary:hover {
background: #fff;
color: #0b0c14;
box-shadow: 0 10px 30px rgba(255, 255, 255, 0.18);
backdrop-filter: none;
-webkit-backdrop-filter: none;
}
html[data-look="glass"] .btn:focus {
box-shadow: var(--focus-ring);
}
html[data-look="glass"] .btn-primary:focus {
box-shadow: var(--focus-ring-light);
}
html[data-look="glass"] .resume-btn .resume-peek {
border-radius: 8px;
}
html[data-look="glass"] .chip,
html[data-look="glass"] .cat-pill,
html[data-look="glass"] .season-pill,
html[data-look="glass"] .source-filter,
html[data-look="glass"] .picker-btn {
border-radius: 999px;
background: rgba(255, 255, 255, 0.07);
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
border: 0;
color: rgba(243, 244, 248, 0.82);
}
html[data-look="glass"] .chip.on,
html[data-look="glass"] .cat-pill.active,
html[data-look="glass"] .cat-pill.on,
html[data-look="glass"] .season-pill.active,
html[data-look="glass"] .source-filter.active {
background: rgba(255, 255, 255, 0.16);
color: #fff;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
html[data-look="glass"] .season-bar,
html[data-look="glass"] .filter-bar,
html[data-look="glass"] .source-filters {
gap: 4px;
}
html[data-look="glass"] .browse-head {
padding-top: calc(var(--nav-h) + 54px);
}
html[data-look="glass"] .browse-head h1 {
letter-spacing: -0.03em;
}
html[data-look="glass"] .search-box {
border-radius: 999px;
padding: 14px 22px;
}
html[data-look="glass"] .suggest-list,
html[data-look="glass"] .dropdown {
border-radius: var(--g-radius);
}
html[data-look="glass"] .pref-section,
html[data-look="glass"] .dl-row,
html[data-look="glass"] .wrapped-card,
html[data-look="glass"] .pair-card,
html[data-look="glass"] .request-sent,
html[data-look="glass"] .taste-tile {
background: rgba(255, 255, 255, 0.05);
border: 0;
box-shadow: var(--g-edge);
border-radius: var(--g-radius);
}
html[data-look="glass"] .dl-row.fresh {
box-shadow: var(--g-edge), inset 0 0 0 1px rgba(74, 222, 128, 0.45);
}
html[data-look="glass"] .pref-list .pref-item,
html[data-look="glass"] .rows-editor .pref-item {
background: none;
border: 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 0;
box-shadow: none;
backdrop-filter: none;
-webkit-backdrop-filter: none;
padding: 14px 0;
}
html[data-look="glass"] .pref-list .pref-item:last-child,
html[data-look="glass"] .rows-editor .pref-item:last-of-type {
border-bottom: 0;
}
html[data-look="glass"] .pref-section .pref-note {
padding-left: 0;
padding-right: 0;
}
html[data-look="glass"] .empty {
color: rgba(243, 244, 248, 0.74);
}
html[data-look="glass"] .detail-hero {
padding: calc(var(--nav-h) + 64px) var(--page-x) 44px;
gap: 40px;
}
html[data-look="glass"] .detail-hero .hero-backdrop,
html[data-look="glass"] .detail-hero .hero-backdrop.sharp {
filter: blur(1px) saturate(1.15) brightness(0.46);
-webkit-filter: blur(1px) saturate(1.15) brightness(0.46);
transform: scale(1.02);
--hero-dissolve: linear-gradient(to bottom, #000 70%, rgba(0, 0, 0, 0.5) 86%, transparent 96%);
}
html[data-look="glass"] .detail-hero .hero-fade {
-webkit-mask-image: none;
mask-image: none;
background: linear-gradient(to bottom, rgba(7, 8, 17, 0.5), rgba(7, 8, 17, 0.35) 40%, rgba(7, 8, 17, 0.9) 100%);
}
html[data-look="glass"] .detail-poster {
width: 260px;
border-radius: 24px;
box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
html[data-look="glass"] .detail-info .hero-kicker {
display: inline-flex;
padding: 6px 12px;
border-radius: 999px;
background: rgba(127, 209, 232, 0.14);
color: #7fd1e8;
box-shadow: inset 0 0 0 1px rgba(127, 209, 232, 0.35);
font-size: 0.74rem;
font-weight: 800;
letter-spacing: 0.08em;
margin-bottom: 14px;
}
html[data-look="glass"] .detail-title {
font-size: clamp(2.4rem, 4.3vw, 3.8rem);
letter-spacing: -0.03em;
line-height: 1;
margin-bottom: 14px;
text-shadow: none;
}
html[data-look="glass"] .detail-meta {
gap: 8px;
margin-bottom: 16px;
}
html[data-look="glass"] .detail-meta > .rating-star,
html[data-look="glass"] .detail-meta > .badge,
html[data-look="glass"] .detail-meta > .detail-meta-parts {
padding: 6px 12px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.1);
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
font-size: 0.76rem;
font-weight: 700;
letter-spacing: 0.04em;
color: rgba(243, 244, 248, 0.9);
}
html[data-look="glass"] .detail-meta > .rating-star {
color: #f0c67e;
}
html[data-look="glass"] .genre-chips .chip.static {
background: transparent;
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}
html[data-look="glass"] .detail-synopsis {
max-width: 640px;
font-size: 1.02rem;
line-height: 1.55;
color: rgba(243, 244, 248, 0.82);
text-wrap: pretty;
}
html[data-look="glass"] .detail-actions .btn {
border-radius: 999px;
padding: 12px 22px;
}
html[data-look="glass"] .detail-rate {
margin: 18px 0 0;
padding: 18px 20px;
border-radius: 22px;
background: var(--g-fill);
box-shadow: var(--g-edge);
display: block;
}
html[data-look="glass"] .detail-rate-label,
html[data-look="glass"] .detail-server-k {
display: block;
font-size: 0.72rem;
font-weight: 800;
letter-spacing: 0.08em;
text-transform: uppercase;
color: rgba(243, 244, 248, 0.7);
margin-bottom: 8px;
}
html[data-look="glass"] .detail-server {
display: block;
margin-top: 16px;
padding-top: 16px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
font-size: 0.9rem;
line-height: 1.6;
}
html[data-look="glass"] .detail-server .ok { color: #86efac; }
html[data-look="glass"] .detail-server .dim { color: rgba(243, 244, 248, 0.74); }
@media (min-width: 1240px) {
html[data-look="glass"] .detail-info { padding-right: 420px; }
html[data-look="glass"] .detail-synopsis { max-width: 600px; }
html[data-look="glass"] .detail-rate {
position: absolute;
right: var(--page-x);
bottom: 44px;
width: 340px;
margin: 0;
}
}
html[data-look="glass"] .season-bar {
display: flex;
align-items: center;
gap: 10px;
padding: 26px var(--page-x) 4px;
background: none;
box-shadow: none;
border-radius: 0;
}
html[data-look="glass"] .season-island {
display: inline-flex;
padding: 5px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.06);
box-shadow: var(--g-edge);
gap: 2px;
flex: none;
}
html[data-look="glass"] .season-bar-trailing .btn,
html[data-look="glass"] .season-bar-trailing .season-pill,
html[data-look="glass"] .season-bar-trailing button {
border-radius: 999px;
background: var(--g-fill);
box-shadow: var(--g-edge);
}
html[data-look="glass"] .season-pill {
border-radius: 999px;
background: transparent;
border: 0;
padding: 9px 16px;
}
html[data-look="glass"] .season-pill.active {
background: rgba(255, 255, 255, 0.14);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
html[data-look="glass"] .episode {
border-radius: 18px;
background: rgba(255, 255, 255, 0.05);
box-shadow: var(--g-edge);
padding: 10px 14px 10px 10px;
gap: 18px;
}
html[data-look="glass"] .episode:hover,
html[data-look="glass"] .episode:focus {
background: rgba(255, 255, 255, 0.09);
}
html[data-look="glass"] .episode-num {
display: none;
}
html[data-look="glass"] .episode-still {
display: block;
width: 176px;
height: 99px;
border-radius: 12px;
object-fit: cover;
background: linear-gradient(160deg, #1b2440, #0e1222);
flex: none;
}
html[data-look="glass"] .episode-kicker {
display: block;
font-size: 0.72rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
color: rgba(243, 244, 248, 0.7);
margin-bottom: 3px;
}
html[data-look="glass"] .episode-title {
font-size: 1.05rem;
font-weight: 800;
letter-spacing: -0.01em;
}
html[data-look="glass"] .episode-bar {
width: 160px;
}
html[data-look="glass"] .episode-sub .ep-dur {
display: none;
}
@media (max-width: 720px) {
html[data-look="glass"] .episode { gap: 12px; padding: 10px; }
html[data-look="glass"] .episode-still { width: 88px; height: 50px; border-radius: 9px; }
html[data-look="glass"] .episode-title { font-size: 0.95rem; }
html[data-look="glass"] .episode-kicker { font-size: 0.66rem; letter-spacing: 0.06em; white-space: nowrap; }
html[data-look="glass"] .episode-kicker-dur { display: none; }
html[data-look="glass"] .episode-sub .ep-dur { display: inline; }
html[data-look="glass"] .ep-action { width: 40px; }
}
html[data-look="glass"] .source-row-wrap {
border-radius: 16px;
background: var(--g-fill);
box-shadow: var(--g-edge);
border: 1px solid rgba(255, 255, 255, 0.06);
}
html[data-look="glass"] .source-row-wrap:hover {
box-shadow: var(--g-edge), 0 8px 26px rgba(0, 0, 0, 0.3);
}
html[data-look="glass"] .source-row-wrap:has(> .source-row.owned) {
border-color: rgba(74, 222, 128, 0.45);
}
html[data-look="glass"] .source-box .source-row-wrap.best-pinned {
border-color: rgba(245, 197, 66, 0.38);
}
html[data-look="glass"] .source-row-wrap > .source-row {
background: none;
box-shadow: none;
border-radius: 15px 0 0 15px;
}
html[data-look="glass"] .source-row-wrap > .source-row:last-child {
border-radius: 15px;
}
html[data-look="glass"] .source-row-wrap > .source-row.owned {
background: linear-gradient(90deg, rgba(74, 222, 128, 0.14), transparent 60%);
}
html[data-look="glass"] .source-row-wrap > .source-row:hover,
html[data-look="glass"] .source-row-wrap > .source-row:focus:not(:focus-visible) {
background: rgba(255, 255, 255, 0.06);
box-shadow: none;
}
html[data-look="glass"] .source-row-wrap > .source-row.owned:hover,
html[data-look="glass"] .source-row-wrap > .source-row.owned:focus:not(:focus-visible) {
background: linear-gradient(90deg, rgba(74, 222, 128, 0.2), rgba(255, 255, 255, 0.06) 60%);
}
html[data-look="glass"] .source-row-wrap > .source-row:focus-visible {
box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.9);
}
html[data-look="glass"] .source-row-wrap > .source-dl {
width: 66px;
height: auto;
align-self: stretch;
flex: none;
padding: 0;
border: 0;
border-left: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 0;
background: transparent;
box-shadow: none;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 3px;
color: rgba(243, 244, 248, 0.8);
}
html[data-look="glass"] .source-row-wrap > .source-dl:last-child {
border-radius: 0 15px 15px 0;
}
html[data-look="glass"] .source-row-wrap > .source-dl:hover,
html[data-look="glass"] .source-row-wrap > .source-dl:focus {
background: rgba(255, 255, 255, 0.1);
box-shadow: none;
color: #fff;
}
html[data-look="glass"] .source-row-wrap > .source-dl:focus-visible {
box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.9);
}
html[data-look="glass"] .source-row-wrap > .source-dl.done,
html[data-look="glass"] .source-row-wrap > .source-dl.saved {
color: #86efac;
}
html[data-look="glass"] .source-row-wrap > .source-dl.failed {
color: #f87171;
}
html[data-look="glass"] .source-row-wrap > .source-dl.on {
color: #c7bfff;
}
html[data-look="glass"] .source-quality,
html[data-look="glass"] .source-best,
html[data-look="glass"] .source-owned,
html[data-look="glass"] .source-last,
html[data-look="glass"] .source-getting,
html[data-look="glass"] .source-cam,
html[data-look="glass"] .source-pack,
html[data-look="glass"] .owned-chip {
border-radius: 999px;
}
html[data-look="glass"] .dl-callout {
border-radius: var(--g-radius);
background: rgba(255, 255, 255, 0.05);
box-shadow: var(--g-edge);
border: 0;
}
html[data-look="glass"] .player-top {
padding-top: max(24px, env(safe-area-inset-top));
gap: 12px;
background: none;
}
html[data-look="glass"] .player-top > div {
border-radius: 22px;
padding: 10px 20px 10px 16px;
}
html[data-look="glass"] .player-top .pbtn {
border-radius: 999px;
}
html[data-look="glass"] .player-title {
font-size: 1rem;
}
html[data-look="glass"] .player-subtitle {
font-size: 0.78rem;
}
html[data-look="glass"] .player-top .fmt {
display: inline-flex;
margin-top: 4px;
}
html[data-look="glass"] .player-bottom {
left: 50%;
right: auto;
transform: translateX(-50%);
width: min(1040px, calc(100% - 48px));
bottom: max(28px, env(safe-area-inset-bottom));
padding: 18px 24px 14px;
border-radius: 28px;
background: var(--g-fill);
}
html[data-look="glass"] .player.controls-hidden .player-bottom {
transform: translateX(-50%) translateY(8px);
}
html[data-look="glass"] .scrubber-track {
height: 6px;
border-radius: 3px;
overflow: visible;
}
html[data-look="glass"] .scrubber:hover .scrubber-track {
height: 8px;
}
html[data-look="glass"] .scrubber-fill {
background: linear-gradient(90deg, #8b7bff, #7fd1e8, #8cffbe);
box-shadow: 0 0 14px rgba(140, 255, 190, 0.5);
}
html[data-look="glass"] .scrubber-fill::after {
content: "";
position: absolute;
right: -8px;
top: 50%;
width: 16px;
height: 16px;
border-radius: 999px;
background: #fff;
transform: translateY(-50%);
box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.22), 0 0 24px rgba(140, 255, 190, 0.7);
}
html[data-look="glass"] .scrub-tip {
border-radius: 10px;
}
html[data-look="glass"] .player-controls {
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
position: relative;
gap: 6px;
}
html[data-look="glass"] .pc-transport {
order: 1;
display: flex;
align-items: center;
gap: 8px;
justify-self: center;
}
html[data-look="glass"] .pc-tools {
order: 2;
display: flex;
align-items: center;
gap: 4px;
justify-self: end;
}
html[data-look="glass"] .pbtn {
width: 46px;
height: 46px;
}
html[data-look="glass"] .pbtn.big {
width: 62px;
height: 62px;
background: #fff;
color: #0b0c14;
}
html[data-look="glass"] .pbtn:hover {
background: rgba(255, 255, 255, 0.14);
}
html[data-look="glass"] .pbtn.big:hover {
background: #fff;
}
html[data-look="glass"] .player-spacer {
display: none;
}
html[data-look="glass"] .vol-group {
order: 0;
justify-self: start;
position: static;
}
html[data-look="glass"] .player .skip-intro {
border-radius: 999px;
}
html[data-look="glass"] .torrent-status {
background: radial-gradient(ellipse at center, rgba(7, 8, 17, 0.55) 0%, rgba(4, 5, 10, 0.9) 100%);
}
html[data-look="glass"] .torrent-status.mini {
border-radius: 999px;
}
html[data-look="glass"] .upnext,
html[data-look="glass"] .resume-card,
html[data-look="glass"] .party-panel {
border-radius: var(--g-radius);
background: var(--g-fill);
}
html[data-look="glass"] .party-code span {
border-radius: 12px;
background: rgba(255, 255, 255, 0.08);
}
@media (max-width: 720px) {
html[data-look="glass"] .player-bottom {
width: calc(100% - 20px);
border-radius: 22px;
padding: 12px 14px 10px;
bottom: max(12px, env(safe-area-inset-bottom));
}
html[data-look="glass"] .player-top > div {
padding: 6px 12px 6px 10px;
min-width: 0;
}
html[data-look="glass"] .player-bottom,
html[data-look="glass"] .player-top > div,
html[data-look="glass"] .player-top .pbtn,
html[data-look="glass"] .player .menu,
html[data-look="glass"] .upnext,
html[data-look="glass"] .resume-card,
html[data-look="glass"] .party-panel {
backdrop-filter: none;
-webkit-backdrop-filter: none;
background: rgba(14, 16, 28, 0.82);
}
html[data-look="glass"] .player-bottom::before {
display: none;
}
html[data-look="glass"] .player .menu {
left: 10px;
right: 10px;
bottom: calc(var(--dock-h, 224px) + 20px);
min-width: 0;
max-height: min(46vh, calc(100vh - var(--dock-h, 224px) - 130px));
}
html[data-look="glass"] .player .sub-sync {
flex-wrap: wrap;
justify-content: center;
}
html[data-look="glass"] .upnext {
left: 12px;
right: 12px;
width: auto;
bottom: calc(var(--dock-h, 224px) + 24px);
}
html[data-look="glass"] .player .skip-intro,
html[data-look="glass"] .player .mark-chip {
right: 16px;
bottom: calc(var(--dock-h, 224px) + 24px);
}
html[data-look="glass"] .player.controls-hidden .skip-intro {
bottom: max(28px, env(safe-area-inset-bottom));
}
html[data-look="glass"] .resume-card {
bottom: calc(var(--dock-h, 224px) + 24px);
}
}
html[data-look="glass"] body:has(.player) #toasts {
bottom: 140px;
}
html[data-look="glass"] .menu,
html[data-look="glass"] .nav-menu,
html[data-look="glass"] .dropdown {
border-radius: var(--g-radius);
padding: 8px;
}
html[data-look="glass"] .menu-item,
html[data-look="glass"] .nav-menu-item,
html[data-look="glass"] .dropdown-item {
border-radius: 12px;
}
html[data-look="glass"] .modal,
html[data-look="glass"] .claim-modal,
html[data-look="glass"] .trailer-box,
html[data-look="glass"] .login-card {
border-radius: var(--g-radius-l);
}
html[data-look="glass"] .modal-backdrop,
html[data-look="glass"] .nav-menu-wrap,
html[data-look="glass"] .trailer-modal,
html[data-look="glass"] .claim-dim {
background: rgba(4, 5, 12, 0.55);
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
}
html[data-look="glass"] .toast {
border-radius: 16px;
background: var(--g-fill);
}
html[data-look="glass"] .profiles-gate {
background: transparent;
}
html[data-look="glass"] .profile-tile {
border-radius: 24px;
}
html[data-look="glass"] .profile-tile:hover,
html[data-look="glass"] .profile-tile:focus {
background: rgba(255, 255, 255, 0.07);
box-shadow: var(--g-edge), var(--g-shadow);
}
html[data-look="glass"] .party-strip-item {
border-radius: 18px;
background: var(--g-fill);
border: 0;
box-shadow: var(--g-edge);
}
html[data-look="glass"] .party-join .party-code-input {
border-radius: 16px;
}
html[data-look="glass"] .screen > * {
animation: g-reveal 620ms var(--ease) both;
}
html[data-look="glass"] .screen > :nth-child(2) { animation-delay: 60ms; }
html[data-look="glass"] .screen > :nth-child(3) { animation-delay: 120ms; }
html[data-look="glass"] .screen > :nth-child(4) { animation-delay: 180ms; }
html[data-look="glass"] .screen > :nth-child(n + 5) { animation-delay: 240ms; }
@keyframes g-reveal {
from { opacity: 0; transform: translateY(14px); }
to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
html[data-look="glass"] .screen > * {
animation: none;
}
}
html[data-look="glass"] .hero-layer.on {
animation: g-kb 30s ease-in-out infinite alternate;
}
@keyframes g-kb {
from { transform: scale(1.02); }
to { transform: scale(1.08) translate(-1.2%, -0.8%); }
}
@media (prefers-reduced-motion: reduce) {
html[data-look="glass"] .hero-layer.on {
animation: none;
}
}
html[data-look="glass"] .nav-gear {
flex: none;
}
@media (max-width: 720px) {
html[data-look="glass"] .episode-bar {
width: 72px;
}
html[data-look="glass"] body:has(.player) #toasts {
bottom: 200px;
left: 12px;
right: 12px;
}
html[data-look="glass"] .nav-profile {
padding: 5px;
}
html[data-look="glass"] .nav-profile #nav-profile-name {
display: none;
}
}
html[data-look="glass"] .ui-overlay:has(> .profiles-gate) {
background: rgba(7, 8, 17, 0.55) !important;
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
}
html[data-look="glass"] .look-notice {
background: var(--g-fill);
border: 0;
box-shadow: var(--g-edge), var(--g-shadow);
backdrop-filter: var(--g-blur);
-webkit-backdrop-filter: var(--g-blur);
border-radius: var(--g-radius-l);
}
html[data-look="glass"] .menu,
html[data-look="glass"] .dropdown,
html[data-look="glass"] .nav-menu,
html[data-look="glass"] .suggest-list {
animation: g-pop 200ms var(--ease) both;
transform-origin: top right;
}
@keyframes g-pop {
from { opacity: 0; transform: translateY(-6px) scale(0.97); }
to { opacity: 1; transform: none; }
}
html[data-look="glass"] .chip,
html[data-look="glass"] .cat-pill,
html[data-look="glass"] .season-pill,
html[data-look="glass"] .source-filter,
html[data-look="glass"] .nav-item,
html[data-look="glass"] .hero-pick,
html[data-look="glass"] .pbtn,
html[data-look="glass"] .menu-item,
html[data-look="glass"] .nav-menu-item {
transition: background var(--t-fast) var(--ease), color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast) var(--ease);
}
html[data-look="glass"] .chip:active,
html[data-look="glass"] .season-pill:active,
html[data-look="glass"] .cat-pill:active,
html[data-look="glass"] .nav-item:active,
html[data-look="glass"] .hero-pick:active,
html[data-look="glass"] .pbtn:active,
html[data-look="glass"] .card:active {
transform: scale(0.97);
}
html[data-look="glass"] .pbtn.big:active {
transform: scale(0.94);
}
html[data-look="glass"] .card-progress > div,
html[data-look="glass"] .progress > i,
html[data-look="glass"] .progress > div,
html[data-look="glass"] .episode-bar > div,
html[data-look="glass"] .dl-bar-fill,
html[data-look="glass"] .scrubber-fill {
transition: width 420ms var(--ease);
}
html[data-look="glass"] .card-tag.live {
animation: g-breathe 2.4s ease-in-out infinite;
}
@keyframes g-breathe {
0%, 100% { box-shadow: 0 0 0 0 rgba(147, 197, 253, 0.55); }
50% { box-shadow: 0 0 0 6px rgba(147, 197, 253, 0); }
}
html[data-look="glass"] .nav-dl.ready {
animation: g-land 520ms cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes g-land {
from { opacity: 0; transform: scale(0.85); }
to { opacity: 1; transform: none; }
}
html[data-look="glass"] .episode-list > *,
html[data-look="glass"] .source-list > *,
html[data-look="glass"] .dl-list > * {
animation: g-reveal 420ms var(--ease) both;
}
html[data-look="glass"] .episode-list > :nth-child(2),
html[data-look="glass"] .source-list > :nth-child(2),
html[data-look="glass"] .dl-list > :nth-child(2) { animation-delay: 40ms; }
html[data-look="glass"] .episode-list > :nth-child(3),
html[data-look="glass"] .source-list > :nth-child(3),
html[data-look="glass"] .dl-list > :nth-child(3) { animation-delay: 80ms; }
html[data-look="glass"] .episode-list > :nth-child(4),
html[data-look="glass"] .source-list > :nth-child(4),
html[data-look="glass"] .dl-list > :nth-child(4) { animation-delay: 120ms; }
html[data-look="glass"] .episode-list > :nth-child(n + 5),
html[data-look="glass"] .source-list > :nth-child(n + 5),
html[data-look="glass"] .dl-list > :nth-child(n + 5) { animation-delay: 160ms; }
html[data-look="glass"] .skeleton,
html[data-look="glass"] .grid-skel > * {
background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.11) 37%, rgba(255, 255, 255, 0.05) 63%);
background-size: 400% 100%;
animation: g-shimmer 1.4s linear infinite;
border-radius: 14px;
}
@keyframes g-shimmer {
from { background-position: 100% 0; }
to { background-position: 0 0; }
}
html[data-look="glass"] .player .skip-intro:not(.hidden),
html[data-look="glass"] .upnext {
animation: g-rise 260ms var(--ease) both;
}
@keyframes g-rise {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: none; }
}
html[data-look="glass"] .scrubber-fill::after {
transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast);
}
html[data-look="glass"] .scrubber:hover .scrubber-fill::after {
transform: translateY(-50%) scale(1.25);
}
html[data-look="glass"] .focusable {
transition: box-shadow var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
@media (prefers-reduced-motion: reduce) {
html[data-look="glass"] .menu,
html[data-look="glass"] .dropdown,
html[data-look="glass"] .nav-menu,
html[data-look="glass"] .suggest-list,
html[data-look="glass"] .card-tag.live,
html[data-look="glass"] .nav-dl.ready,
html[data-look="glass"] .episode-list > *,
html[data-look="glass"] .source-list > *,
html[data-look="glass"] .dl-list > *,
html[data-look="glass"] .skeleton,
html[data-look="glass"] .player .skip-intro,
html[data-look="glass"] .upnext {
animation: none;
}
}
html[data-look="glass"] .peek {
background: var(--g-fill);
border: 0;
box-shadow: var(--g-edge), var(--g-shadow);
backdrop-filter: var(--g-blur);
-webkit-backdrop-filter: var(--g-blur);
border-radius: var(--g-radius-l);
}
html[data-look="glass"] .peek-art-fade { background: linear-gradient(to top, rgba(14, 16, 28, 0.96) 0%, rgba(0, 0, 0, 0) 55%); }
@media (max-width: 720px) {
html[data-look="glass"] .peek { border-radius: var(--g-radius-l) var(--g-radius-l) 0 0; }
}
html[data-look="glass"] .peek-bar i { background: var(--g-progress, #fff); }
html[data-look="glass"] .row,
html[data-look="glass"] .grid {
content-visibility: auto;
contain-intrinsic-size: auto 340px;
}
html[data-look="glass"] .party-strip {
margin: 18px var(--page-x) 0;
}
html[data-look="glass"] .pref-section,
html[data-look="glass"] .wrapped-card,
html[data-look="glass"] .pair-card,
html[data-look="glass"] .request-sent,
html[data-look="glass"] .dl-callout,
html[data-look="glass"] .detail-rate,
html[data-look="glass"] .season-island,
html[data-look="glass"] .peek,
html[data-look="glass"] .look-notice,
html[data-look="glass"] .party-panel,
html[data-look="glass"] .upnext,
html[data-look="glass"] .resume-card,
html[data-look="glass"] .trailer-box,
html[data-look="glass"] .modal,
html[data-look="glass"] .menu,
html[data-look="glass"] .nav-menu,
html[data-look="glass"] .dropdown,
html[data-look="glass"] .suggest-list,
html[data-look="glass"] .toast {
background: var(--g-fill);
border: 0;
box-shadow: var(--g-edge), var(--g-shadow);
backdrop-filter: var(--g-blur);
-webkit-backdrop-filter: var(--g-blur);
}
html[data-look="glass"] .episode,
html[data-look="glass"] .source-row,
html[data-look="glass"] .dl-row,
html[data-look="glass"] .taste-tile,
html[data-look="glass"] .party-strip-item {
background: var(--g-fill);
border: 0;
box-shadow: var(--g-edge);
backdrop-filter: var(--g-blur);
-webkit-backdrop-filter: var(--g-blur);
}
html[data-look="glass"] .episode:hover,
html[data-look="glass"] .episode:focus,
html[data-look="glass"] .source-row:hover,
html[data-look="glass"] .dl-row:hover,
html[data-look="glass"] .party-strip-item:hover {
background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06) 55%, rgba(255, 255, 255, 0.1));
}
html[data-look="glass"] .dl-row.fresh {
box-shadow: var(--g-edge), inset 0 0 0 1px rgba(74, 222, 128, 0.45);
}
@media (max-width: 1239px) {
html[data-look="glass"] .detail-info { display: flex; flex-direction: column; align-items: flex-start; }
html[data-look="glass"] .detail-info > * { width: 100%; }
html[data-look="glass"] .detail-info > .hero-kicker { width: auto; }
html[data-look="glass"] .detail-rate { order: 10; margin-top: 18px; }
}
@media (max-width: 760px) {
html[data-look="glass"] .detail-poster { width: 170px; }
html[data-look="glass"] .detail-title { font-size: 2.2rem; }
}
html[data-look="glass"] .season-bar { max-width: 100%; overflow-x: auto; scrollbar-width: none; }
html[data-look="glass"] .season-bar::-webkit-scrollbar { display: none; }
@media (max-width: 720px) {
html[data-look="glass"] .season-bar { flex-wrap: wrap; overflow: visible; row-gap: 10px; }
html[data-look="glass"] .season-island { max-width: 100%; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
html[data-look="glass"] .season-island::-webkit-scrollbar { display: none; }
html[data-look="glass"] .season-bar-trailing { margin-left: 0 !important; flex-wrap: wrap; }
}
@media (max-width: 720px) {
html[data-look="glass"] .player-controls {
grid-template-columns: 1fr;
justify-items: center;
row-gap: 4px;
}
html[data-look="glass"] .pc-transport { order: 0; }
html[data-look="glass"] .pc-tools { order: 1; justify-self: center; }
html[data-look="glass"] .vol-group { display: none; }
}
html[data-look="glass"] .card::before {
display: none;
}
html[data-look="glass"] .card:hover,
html[data-look="glass"] .card:focus {
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.92), 0 18px 40px rgba(0, 0, 0, 0.5);
}
html[data-look="glass"] .hero-video {
position: absolute;
inset: 0;
overflow: hidden;
opacity: 0;
transition: opacity 800ms var(--ease);
pointer-events: none;
background: #000;
}
html[data-look="glass"] .hero-video iframe {
position: absolute;
border: 0;
pointer-events: none;
}
html[data-look="glass"] .hero.trailing .hero-video {
opacity: 1;
}
html[data-look="glass"] .hero.trailing .hero-backdrop.on {
opacity: 0;
}
html[data-look="glass"] .hero-unmute {
position: absolute;
right: var(--page-x);
bottom: 68px;
z-index: 4;
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 14px 8px 12px;
border-radius: 999px;
border: 0;
font: inherit;
font-weight: 700;
font-size: 0.82rem;
color: #fff;
background: var(--g-fill);
box-shadow: var(--g-edge), var(--g-shadow);
backdrop-filter: var(--g-blur);
-webkit-backdrop-filter: var(--g-blur);
cursor: pointer;
animation: g-reveal 420ms var(--ease) both;
}
html[data-look="glass"] .hero-unmute:hover { background: rgba(255, 255, 255, 0.16); }
html[data-look="glass"] .hero-unmute:focus { box-shadow: var(--focus-ring); }
html[data-look="glass"] .hero.trailing-sound .hero-unmute { background: rgba(255, 255, 255, 0.2); }
@media (max-width: 720px) {
html[data-look="glass"] .hero-unmute { right: 16px; bottom: 104px; }
}
html[data-look="glass"] .home-greeting.big { padding-top: 14px; }
html[data-look="glass"] #nav-new { display: inline-flex; align-items: center; gap: 6px; }
html[data-look="glass"] #nav-new.has-new .nav-new-dot {
display: inline-block;
width: 7px;
height: 7px;
border-radius: 999px;
background: linear-gradient(135deg, #8cffbe, #7fd1e8);
box-shadow: 0 0 10px rgba(140, 255, 190, 0.8);
animation: g-breathe 2.4s ease-in-out infinite;
}
@media (max-width: 720px) {
html[data-look="glass"] #nav-new { display: none; }
}
.whatsnew { padding: calc(var(--nav-h) + 54px) var(--page-x) 60px; }
.wn-hero { max-width: 720px; margin-bottom: 30px; }
.wn-kicker {
display: inline-flex; padding: 6px 12px; border-radius: 999px; margin-bottom: 14px;
font-size: 0.74rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
color: #7fd1e8; background: rgba(127, 209, 232, 0.14); box-shadow: inset 0 0 0 1px rgba(127, 209, 232, 0.35);
}
.wn-h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 900; letter-spacing: -0.03em; line-height: 1; margin: 0 0 12px; }
.wn-sub { color: var(--text-dim); font-size: 1.02rem; line-height: 1.5; margin: 0; text-wrap: pretty; }
.wn-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 16px; }
.wn-card {
position: relative;
display: flex; gap: 18px; padding: 18px;
border-radius: var(--g-radius);
background: var(--g-fill);
box-shadow: var(--g-edge), var(--g-shadow);
backdrop-filter: var(--g-blur); -webkit-backdrop-filter: var(--g-blur);
animation: g-reveal 520ms var(--ease) both;
animation-delay: calc(var(--i, 0) * 45ms);
}
.wn-body { min-width: 0; flex: 1; display: flex; flex-direction: column; }
.wn-head { display: flex; align-items: center; gap: 10px; }
.wn-title { font-size: 1.12rem; font-weight: 800; letter-spacing: -0.01em; margin: 0; }
.wn-ribbon {
padding: 3px 8px; border-radius: 999px; font-size: 0.66rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase;
color: #86efac; background: rgba(74, 222, 128, 0.16); box-shadow: inset 0 0 0 1px rgba(74, 222, 128, 0.4);
}
.wn-what { margin: 8px 0 0; line-height: 1.5; color: rgba(243, 244, 248, 0.9); text-wrap: pretty; }
.wn-how { margin: 8px 0 12px; font-size: 0.9rem; line-height: 1.5; color: var(--text-dim); text-wrap: pretty; }
.wn-how b { color: #7fd1e8; font-weight: 800; letter-spacing: 0.04em; }
.wn-go { margin-top: auto; align-self: flex-start; border-radius: 999px; }
.wn-foot { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 30px; }
.wn-cue {
position: relative; flex: none; width: 76px; height: 76px; border-radius: 22px;
display: grid; place-items: center; overflow: hidden;
background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
box-shadow: var(--g-edge);
}
.wn-glyph { font-size: 2rem; line-height: 1; position: relative; z-index: 1; }
.wn-cue i { position: absolute; pointer-events: none; }
.cue-hold i:nth-of-type(1) { inset: 14px; border-radius: 999px; border: 2px solid rgba(255, 255, 255, 0.9); animation: wn-ring 1.8s ease-out infinite; }
@keyframes wn-ring { 0% { transform: scale(0.6); opacity: 0; } 30% { opacity: 0.9; } 100% { transform: scale(1.25); opacity: 0; } }
.cue-trailer i:nth-of-type(1) { inset: 0; background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.18) 50%, transparent 70%); animation: wn-sweep 2.6s ease-in-out infinite; }
@keyframes wn-sweep { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.cue-party i { width: 8px; height: 8px; border-radius: 999px; background: #bfdbfe; top: 50%; left: 50%; margin: -4px 0 0 -4px; animation: wn-orbit 3.2s linear infinite; }
.cue-party i:nth-of-type(2) { animation-delay: -1.07s; background: #86efac; }
.cue-party i:nth-of-type(3) { animation-delay: -2.13s; background: #f0c67e; }
@keyframes wn-orbit { from { transform: rotate(0deg) translateX(28px); } to { transform: rotate(360deg) translateX(28px); } }
.cue-skip i:nth-of-type(1) { left: 12px; right: 12px; bottom: 12px; height: 3px; border-radius: 3px; background: rgba(255, 255, 255, 0.2); }
.cue-skip i:nth-of-type(2) { left: 12px; bottom: 12px; height: 3px; width: 20px; border-radius: 3px; background: var(--g-progress); animation: wn-jump 2.2s ease-in-out infinite; }
@keyframes wn-jump { 0%, 35% { width: 20px; } 55%, 100% { width: 52px; } }
.cue-subs i:nth-of-type(1) { left: 14px; right: 14px; bottom: 11px; height: 4px; border-radius: 2px; background: rgba(255, 255, 255, 0.85); transform-origin: left; animation: wn-type 2.4s ease-in-out infinite; }
@keyframes wn-type { 0% { transform: scaleX(0); } 60%, 85% { transform: scaleX(1); } 100% { transform: scaleX(0); } }
.cue-smart i:nth-of-type(1) { left: 14px; right: 14px; bottom: 11px; height: 4px; border-radius: 2px; background: rgba(255, 255, 255, 0.18); }
.cue-smart i:nth-of-type(2) { left: 14px; bottom: 11px; height: 4px; width: 0; border-radius: 2px; background: #86efac; animation: wn-fill 2.8s ease-in-out infinite; }
@keyframes wn-fill { 0% { width: 0; } 80%, 100% { width: 48px; } }
.cue-offline i:nth-of-type(1) { top: 10px; right: 10px; width: 8px; height: 8px; border-radius: 999px; background: #86efac; animation: wn-blink 2s steps(1) infinite; }
@keyframes wn-blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0.15; } }
.cue-tap i:nth-of-type(1), .cue-tap i:nth-of-type(2) { top: 50%; width: 26px; height: 26px; margin-top: -13px; border-radius: 999px; background: rgba(255, 255, 255, 0.35); animation: wn-tapripple 2.4s ease-out infinite; }
.cue-tap i:nth-of-type(1) { left: 6px; }
.cue-tap i:nth-of-type(2) { right: 6px; animation-delay: 1.2s; }
@keyframes wn-tapripple { 0% { transform: scale(0.4); opacity: 0; } 20% { opacity: 0.8; } 100% { transform: scale(1.4); opacity: 0; } }
.cue-look { animation: wn-hue 6s ease-in-out infinite alternate; }
@keyframes wn-hue { from { background: linear-gradient(135deg, rgba(139, 123, 255, 0.35), rgba(255, 255, 255, 0.04)); } to { background: linear-gradient(135deg, rgba(140, 255, 190, 0.3), rgba(127, 209, 232, 0.1)); } }
.cue-report .wn-glyph, .cue-keys .wn-glyph, .cue-resume .wn-glyph { animation: wn-float 3s ease-in-out infinite; }
@keyframes wn-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@media (prefers-reduced-motion: reduce) { .wn-cue, .wn-cue i, .wn-glyph, .wn-card { animation: none !important; } }
@media (max-width: 720px) {
.whatsnew { padding-top: calc(var(--nav-h) + 10px); }
.wn-grid { grid-template-columns: 1fr; }
.wn-foot .btn { flex: 1 1 100%; justify-content: center; }
}