:root {
	--bg: #121212;
	--sidebar-bg: #000;
	--surface: #181818;
	--surface-2: #202020;
	--surface-3: #282828;
	--surface-hover: #282828;
	--line: rgba(255,255,255,.08);
	--line-strong: rgba(255,255,255,.18);
	--muted: #b3b3b3;
	--muted-2: #7f7f7f;
	--text: #fff;
	--cyan: #1db954;
	--cyan-dark: #08160d;
	--cyan-soft: rgba(29, 185, 84, .14);
	--lime: #a9e66f;
	--red: #ff7389;
	--red-soft: rgba(255, 115, 137, .1);
	--gold: #f2c66d;
	--sidebar: 252px;
	--player: 88px;
	--player-bg: #181818;
	--mobile-player-gap-mask: 180px;
	--vv-bottom: 0px;
	--vv-left: 0px;
	--vv-width: 100%;
	--radius: 12px;
	font-family: Arial, "Helvetica Neue", system-ui, sans-serif;
	color: var(--text);
	background: var(--bg);
}

html[data-theme="light"] {
	--bg: #f5f5f5;
	--line: #e0e0e0;
	--line-strong: #c8c8c8;
	--surface: #fff;
	--surface-2: #f0f0f0;
	--surface-3: #e7e7e7;
	--surface-hover: #e9e9e9;
	--red-soft: #ffe5e5;
	--cyan-soft: #e0f5e9;
	--muted: #4a4a4a;
	--muted-2: #6a6a6a;
	--text: #121212;
	--radius: 14px;
	--player: 86px;
	--player-bg: #fff;
	--accent: #1db954;
	--cyan: #1bb753;
	--cyan-dark: #07170d;
	--lime: #169c46;
	--gold: #b8860b;
	--red: #c0392b;
	--green: #169c46;
}
@media (max-width: 540px) {
	html[data-theme="light"] {
		--player: 82px;
	}
}

* { box-sizing: border-box; }
html { min-height: 100%; margin: 0; overscroll-behavior: none; }
body { min-height: 100%; margin: 0; overflow-x: hidden; overscroll-behavior: none; }
html, body, .app-shell { background: #181818; }
.app-grid { background: var(--bg); min-height: 100vh; min-height: 100dvh; }
body { overflow-x: hidden; color: var(--text); font-size: 15px; line-height: 1.5; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
@media (min-width:1025px) { body { font-size: 16px; } }
@media (max-width:600px) { body { font-size: 14px; } }


.logo-mark { display: none; }
.app-grid { display: grid; min-height: 100vh; grid-template-columns: var(--sidebar) minmax(0, 1fr); grid-template-rows: auto 1fr; }
.now-side { display: none; }
.topbar { grid-column: 2; grid-row: 1; margin: 0 10px; }
.main { grid-column: 2; grid-row: 2; }
.public-locked-shell .main { grid-column: 2; }
@media (min-width: 1024px) {
	.app-grid { grid-template-columns: var(--sidebar) minmax(0, 1fr) 280px; }
	.app-grid.public-locked-shell { grid-template-columns: var(--sidebar) minmax(0, 1fr); }
	.topbar { grid-column: 2 / 3; }
	.public-locked-shell .topbar, .public-locked-shell .main { grid-column: 2; }
	.now-side { display: block !important; grid-column: 3; grid-row: 1 / -1; position: sticky; top: 0; height: 100vh; overflow-y: auto; padding: 20px 16px 120px; border-left: 1px solid var(--line); background: var(--bg); }
	.public-locked-shell .now-side { display: none; }
	.now-cover:hover .now-cover-overlay { opacity: 1 !important; }
	.now-cover:hover .now-play-btn { opacity: 1 !important; transform: none !important; }
}

.sidebar {
	position: fixed;
	z-index: 30;
	inset: 0 auto var(--player) 0;
	display: flex;
	width: var(--sidebar);
	flex-direction: column;
	padding: 20px 16px 18px;
	border-right: 1px solid var(--line);
	background: var(--sidebar-bg);
	overflow: hidden;
	transition: transform .2s ease;
}
.sidebar.open { transform: none; }
.brand { display: block; padding: 16px 16px 8px; }
.brand-name { display: block; padding-left: 10px; font-size: 16px; font-weight: 800; letter-spacing: -.4px; }
.sidebar > nav { flex: 1; min-height: 0; overflow-y: auto; margin: 0 -8px; padding: 0 8px 8px; scrollbar-color: var(--surface-3) transparent; scrollbar-width: thin; }
.sidebar > nav::-webkit-scrollbar { width: 6px; }
.sidebar > nav::-webkit-scrollbar-track { background: transparent; }
.sidebar > nav::-webkit-scrollbar-thumb { border-radius: 8px; background: var(--surface-3); }
.nav-group { display: grid; gap: 3px; margin-bottom: 20px; }
.nav-label { padding: 0 9px 7px; color: var(--muted-2); font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; }
.nav-link { display: flex; min-height: 44px; align-items: center; gap: 11px; padding: 0 10px; border-radius: 8px; color: var(--muted); font-size: 14px; font-weight: 600; transition: .16s ease; }
.nav-link:hover { color: var(--text); background: var(--surface-2); }
.nav-link.active { color: var(--text); background: var(--surface-3); }
.nav-link.active .icon { color: var(--cyan); }
.nav-link .icon { width: 17px; height: 17px; }
.nav-link .nav-badge { margin-left: auto; color: var(--cyan); font-size: 9px; font-weight: 800; }
.avatar { display: grid; flex: 0 0 auto; width: 34px; height: 34px; aspect-ratio: 1 / 1; place-items: center; overflow: hidden; border-radius: 50%; color: #fff; background: #535353 center / cover no-repeat; font-size: 10px; font-weight: 800; box-sizing: border-box; clip-path: circle(50% at 50% 50%); }
.avatar-trigger { display: inline-grid; place-items: center; overflow: hidden; border: 0; border-radius: 50%; padding: 0; color: inherit; background: transparent; }
.avatar img { display: block !important; width: 100% !important; height: 100% !important; max-width: none !important; aspect-ratio: 1 / 1; border-radius: 50% !important; object-fit: cover !important; object-position: center !important; clip-path: circle(50% at 50% 50%); }
img.avatar { display: block !important; aspect-ratio: 1 / 1; overflow: hidden; border-radius: 50% !important; object-fit: cover !important; object-position: center !important; clip-path: circle(50% at 50% 50%); }
.top-account { position: relative; }
.avatar-dropdown { position: absolute; z-index: 120; right: 0; bottom: auto; width: 204px; overflow: hidden; margin-top: 9px; border: 1px solid var(--line-strong); border-radius: 12px; background: var(--surface); box-shadow: 0 18px 50px rgba(0,0,0,.28); }
.avatar-dropdown-head { display: grid; gap: 4px; padding: 13px 14px; border-bottom: 1px solid var(--line); }
.avatar-dropdown-head strong { font-size: 12px; }
.avatar-dropdown-head span { color: var(--muted); font-size: 10px; }
.logout-link { display: flex; align-items: center; gap: 9px; width: 100%; padding: 12px 14px; border: 0; background: transparent; color: var(--red); font: inherit; font-size: 11px; font-weight: 800; text-align: left; cursor: pointer; transition: .14s ease; }
.logout-link:hover { background: var(--surface-2); }
.logout-link .icon { width: 15px; height: 15px; }
.btn-publish { display: flex; width: 100%; align-items: center; justify-content: center; gap: 8px; padding: 14px 20px; margin-top: 8px; border: none; border-radius: 12px; background: linear-gradient(135deg,#1db954,#169c46); color: #fff; font-size: 15px; font-weight: 700; cursor: pointer; transition: .2s ease; box-shadow: 0 4px 16px rgba(29,185,84,.3); }
.btn-publish:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(29,185,84,.4); }
.btn-publish:active:not(:disabled) { transform: translateY(0); }
.btn-publish:disabled { opacity: .5; cursor: not-allowed; box-shadow: none; }
.btn-publish .icon { width: 18px; height: 18px; }
.btn-publish small { display: block; font-size: 10px; font-weight: 400; opacity: .8; }

.main { width: min(1600px, 100%); min-width: 0; max-width: 1600px; margin-inline: auto; padding: 5px clamp(18px, 3.2vw, 50px) calc(var(--player) + 44px); }
#page { padding-top: 5px; }
.topbar { position: sticky; z-index: 20; top: 0; display: flex; min-height: 72px; align-items: center; gap: 14px; background: var(--bg);  border-bottom: 1px solid rgba(255,255,255,.06); }
.mobile-toggle { display: none !important; }
.top-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; gap: 13px; }
.history-controls { display: none; }
.icon-btn, .circle-btn { display: inline-grid; place-items: center; border: 0; color: var(--muted); background: transparent; transition: .16s ease; }
.icon-btn.active, .circle-btn.active { color: var(--accent); }
.icon-btn:hover, .circle-btn:hover { color: var(--text); }
.circle-btn { width: 34px; height: 34px; border: 0; border-radius: 50%; background: rgba(0,0,0,.72); }
.icon { width: 17px; height: 17px; stroke-width: 1.8; pointer-events: none; }
.global-search { display: flex; width: min(520px, 48vw); height: 40px; align-items: center; padding: 0 13px; border: 1px solid var(--line); border-radius: 9px; background: var(--surface); }
.global-search:focus-within { border-color: var(--cyan); }
.global-search .icon { flex: 0 0 auto; width: 16px; height: 16px; color: var(--muted); }
.global-search input { width: 100%; border: 0; outline: 0; padding: 0 10px; color: var(--text); background: transparent; font-size: 12px; }
.pro-pill { padding: 6px 10px; border-radius: 6px; color: var(--cyan); background: var(--cyan-soft); font-size: 9px; font-weight: 800; letter-spacing: .5px; }
.theme-switch { position: relative; display: inline-flex; width: 44px; height: 24px; flex: 0 0 auto; align-items: center; padding: 0; border: none; border-radius: 999px; color: var(--muted); background: var(--surface-3); cursor: pointer; transition: background .3s ease; }
.theme-switch i { position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--muted-2); transition: transform .3s ease, background .3s ease; display: grid; place-items: center; font-size: 10px; }
.theme-switch i:after { content: '☀'; color: #f59e0b; line-height: 1; }
.theme-switch.on { background: #4b5563; }
.theme-switch.on i { transform: translateX(20px); background: #fff; }
.sidebar-theme-footer { display: flex; flex: 0 0 auto; justify-content: center; padding: 10px 14px 8px; border-top: 1px solid var(--line); }
.network-filter { display: flex; width: min(340px, 100%); flex-direction: column; gap: 7px; margin: 0 0 22px; }
.network-filter span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .7px; text-transform: uppercase; }
.network-filter select { width: 100%; min-height: 42px; border: 1px solid var(--line); border-radius: 9px; padding: 0 38px 0 12px; color: var(--text); background: var(--surface); cursor: pointer; }
.link-performance-card { overflow: hidden; background: radial-gradient(circle at 15% 0,rgba(29,185,84,.18),transparent 34%),var(--surface); }
.link-performance-head { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.link-performance-head h3 { margin: 0 0 4px; font-size: 18px; }
.link-performance-head p, .link-stats-caption { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.link-performance-total { text-align: right; }
.link-performance-total strong, .link-performance-total span { display: block; }
.link-performance-total strong { font-size: 28px; letter-spacing: -1px; }
.link-performance-total span { color: var(--muted); font-size: 10px; }
.link-performance-kpis{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;margin:0 0 16px}
.link-performance-kpis>div{padding:14px;border:1px solid var(--line);border-radius:12px;background:var(--surface-2)}
.link-performance-kpis strong,.link-performance-kpis span{display:block}.link-performance-kpis strong{font-size:24px;letter-spacing:-.7px}.link-performance-kpis span{margin-top:4px;color:var(--muted);font-size:10px}
.link-stats-chart { position: relative; display: grid; height: 240px; grid-template-columns: 22px 34px minmax(0,1fr); gap: 7px; padding: 16px 12px 12px 8px; border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.015)); }
.link-stats-axis-title { display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .7px; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }
.link-stats-y-axis { display: flex; flex-direction: column; justify-content: space-between; padding: 1px 0 22px; color: var(--muted); font-size: 9px; text-align: right; }
.link-stats-plot { display: flex; min-width: 0; align-items: stretch; gap: 5px; background: linear-gradient(to bottom,var(--line) 1px,transparent 1px) 0 0/100% 50%; }
.link-stat-column { display: flex; min-width: 18px; flex: 1; flex-direction: column; align-items: center; justify-content: flex-end; gap: 5px; }
.link-stat-column strong { color: var(--text); font-size: 9px; font-weight: 700; }
.link-stat-column i { display: block; width: 100%; max-width: 22px; min-height: 3px; border-radius: 999px 999px 4px 4px; background: linear-gradient(180deg,#1db954,#0f7a39); box-shadow: 0 0 18px rgba(29,185,84,.22); }
.link-stat-column span { color: var(--muted); font-size: 9px; white-space: nowrap; }
.link-stats-caption { margin-top: 9px; }
.notif-button { position: relative; }
.notif-badge { position: absolute; top: -7px; right: -9px; display: grid; min-width: 17px; height: 17px; place-items: center; border: 2px solid var(--bg); border-radius: 99px; padding: 0 4px; color: #fff; background: #ef4444; font-size: 8px; font-weight: 900; }
.notif-lightbox { position: fixed; z-index: 160; inset: 0; display: grid; place-items: center; padding: 22px; background: rgba(0,0,0,.82);  }
.notif-modal { display: flex; width: min(720px, 100%); max-height: min(760px, calc(100vh - 44px)); overflow: hidden; flex-direction: column; border: 1px solid var(--line-strong); border-radius: 18px; background: var(--surface); box-shadow: 0 26px 80px rgba(0,0,0,.42); }
.notif-modal-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 24px 15px; }
.notif-modal-head span { color: var(--cyan); font-size: 9px; font-weight: 900; letter-spacing: 1.3px; text-transform: uppercase; }
.notif-modal-head h2 { margin: 5px 0 0; font-size: 28px; letter-spacing: -1px; }
.notif-close { width: 34px; height: 34px; border-radius: 50%; background: var(--surface-2); }
.notif-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 0 24px 14px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.notif-list { max-height: min(540px, calc(100vh - 190px)); overflow-y: auto; scrollbar-color: var(--surface-3) transparent; scrollbar-width: thin; }
.notif-item { display: grid; width: 100%; grid-template-columns: 40px minmax(0, 1fr); gap: 13px; padding: 15px 24px; border: 0; border-bottom: 1px solid var(--line); color: var(--text); background: transparent; text-align: left; transition: .14s ease; }
.notif-item:hover { background: var(--surface-2); }
.notif-item.unread { background: var(--cyan-soft); }
.notif-kind { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 50%; color: var(--cyan); background: var(--surface-2); }
.notif-kind .icon { width: 18px; height: 18px; }
.notif-copy { min-width: 0; }
.notif-copy strong, .notif-copy span, .notif-copy small { display: block; }
.notif-copy strong { font-size: 12px; }
.notif-copy span { margin-top: 5px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.notif-copy small { margin-top: 7px; color: var(--muted-2); font-size: 9px; }
.notif-empty { padding: 48px 24px; color: var(--muted); font-size: 12px; text-align: center; }
.notif-loader, .notif-end { display: flex; min-height: 52px; align-items: center; justify-content: center; gap: 9px; padding: 14px; color: var(--muted); font-size: 10px; text-align: center; }
.notif-loader i { width: 15px; height: 15px; border: 2px solid var(--line-strong); border-top-color: var(--cyan); border-radius: 50%; opacity: .45; }
.notif-loader.loading i { opacity: 1; animation: notif-spin .7s linear infinite; }
@keyframes notif-spin { to { transform: rotate(360deg); } }
.playlist-modal { width: min(520px, 100%); }
.playlist-modal-track { display: flex; align-items: center; gap: 12px; padding: 0 24px 16px; border-bottom: 1px solid var(--line); }
.playlist-modal-track strong, .playlist-modal-track span { display: block; }
.playlist-modal-track span { margin-top: 4px; color: var(--muted); font-size: 11px; }
.playlist-choice-list { max-height: min(360px, calc(100vh - 260px)); overflow-y: auto; padding: 8px; }
.playlist-choice { display: flex; width: 100%; align-items: center; gap: 11px; border: 0; border-radius: 8px; padding: 11px; color: var(--text); background: transparent; text-align: left; transition: .14s ease; }
.playlist-choice:hover { background: var(--surface-2); }
.playlist-choice > span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 6px; color: var(--cyan); background: var(--cyan-soft); }
.playlist-choice strong, .playlist-choice small { display: block; }
.playlist-choice small { margin-top: 4px; color: var(--muted); }
.playlist-modal-foot { padding: 14px 24px 20px; border-top: 1px solid var(--line); }

.page { width: min(1180px, 100%); margin-inline: auto; animation: enter .18s ease both; }
.page.wide-page { width: min(1400px, 100%); }
@keyframes enter { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
h1, h2, h3, h4, p { margin-top: 0; }
h1 { max-width: 760px; margin-bottom: 14px; font-size: clamp(38px, 5vw, 64px); font-weight: 800; letter-spacing: -2.5px; line-height: 1; }

.hero { position: relative; display: grid; min-height: 330px; overflow: hidden; grid-template-columns: minmax(0, 1fr) 270px; margin: 26px 0 44px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.hero:before { position: absolute; inset: auto -40px -86px auto; width: 310px; height: 310px; border: 1px solid var(--line-strong); border-radius: 50%; content: ""; }
.hero-copy { position: relative; z-index: 1; align-self: center; padding: clamp(26px, 4vw, 48px); }
.eyebrow { display: flex; align-items: center; gap: 8px; margin-bottom: 15px; color: var(--cyan); font-size: 10px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; }
.eyebrow:before { width: 18px; height: 2px; content: ""; background: currentColor; }
.hero p { max-width: 610px; margin-bottom: 24px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-visual { position: relative; display: grid; place-items: center; }
.orb { position: absolute; width: 196px; height: 196px; border: 1px solid var(--line-strong); border-radius: 50%; }
.wave-logo { position: relative; display: grid; width: 136px; height: 136px; place-items: center; border-radius: 50%; background: var(--cyan); }
.wave-logo svg { width: 76px; color: var(--cyan-dark); }

.button { display: inline-flex; height: 38px; align-items: center; justify-content: center; gap: 7px; border: 1px solid var(--line-strong); border-radius: 999px; padding: 0 16px; color: var(--text); background: transparent; font-size: 11px; font-weight: 800; letter-spacing: .1px; transition: .16s ease; }
.button:hover { border-color: #52606d; background: var(--surface-hover); }
.button.primary { border-color: var(--cyan); color: var(--cyan-dark); background: var(--cyan); }
.button.primary:hover { border-color: #1fdf64; background: #1fdf64; transform: scale(1.02); }
.button.ghost { background: transparent; }
.button .icon { width: 14px; height: 14px; }
.button.small { height: 32px; padding: 0 11px; font-size: 10px; }
.button:disabled { cursor: not-allowed; opacity: .45; }

.section { margin: 0 0 42px; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.section-head h2 { margin-bottom: 0; font-size: 21px; font-weight: 800; letter-spacing: -.5px; }
.section-head p { margin: 5px 0 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.section-link { color: var(--cyan); font-size: 11px; font-weight: 800; }
.panel, .form-card, .stat-card, .price-card, .playlist-card, .partner-card { border-radius: var(--radius); background: var(--surface); }
.panel-pad { padding: 18px; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(185px, 1fr)); gap: 16px; }
.discover-public-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }

@media (min-width: 1400px) {
	.card-grid { grid-template-columns: repeat(5, 1fr); }
}
.music-card { position: relative; min-width: 0; padding: 9px; border-radius: 7px; background: var(--surface); transition: .16s ease; }
.music-card:hover { background: var(--surface-3); }
.cover { position: relative; display: grid; aspect-ratio: 1; overflow: hidden; place-items: center; border-radius: 8px; background: var(--cover, #2b3440); background-size: cover; background-position: center; background-repeat: no-repeat; }
.cover-letter { position: relative; z-index: 1; color: rgba(255,255,255,.9); font-size: 30px; font-weight: 800; letter-spacing: -4px; }
.play-fab { position: absolute; z-index: 2; right: 9px; bottom: 9px; display: grid; width: 42px; height: 42px; place-items: center; border: 0; border-radius: 50%; color: var(--cyan-dark); background: var(--cyan); opacity: 0; transform: translateY(4px); transition: .16s ease; }
.music-card:hover .play-fab, .play-fab.visible, .banner-slideshow:hover .play-fab { opacity: 1; transform: none; }
.play-fab .icon { width: 15px; height: 15px; fill: currentColor; }
.banner-nav-btn { width:36px;height:36px;border-radius:50%;border:1px solid rgba(255,255,255,.25);background:rgba(0,0,0,.55);color:#fff;font-size:15px;cursor:pointer;display:grid;place-items:center;transition:.2s ease;line-height:1 }
.banner-nav-btn:hover { background:rgba(255,255,255,.15);border-color:rgba(255,255,255,.5) }
.music-card-copy { min-width: 0; padding: 11px 2px 3px; }
.music-card-copy strong, .music-card-copy span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.music-card-copy strong { padding-right: 24px; font-size: 12px; }
.music-card-copy span { margin-top: 6px; color: var(--muted); font-size: 11px; }
.playlist-add-btn { position: absolute; right: 36px; bottom: 13px; width: 20px; height: 20px; border-radius: 50%; color: var(--muted); }
.playlist-add-btn:hover, .playlist-row-add:hover { color: var(--cyan); background: var(--cyan-soft); }

.split { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(240px, .8fr); gap: 24px; }
.track-table { overflow: hidden; }
.track-row { display: grid; min-height: 62px; grid-template-columns: 34px minmax(0, 1fr) 90px 72px repeat(3, 28px); gap: 12px; align-items: center; padding: 7px 14px; border-bottom: 1px solid var(--line); transition: .14s ease; }
.track-row:last-child { border-bottom: 0; }
.track-row:hover { background: var(--surface-2); }
.music-row { display: flex; align-items: center; gap: 12px; padding: 8px 14px; border-bottom: 1px solid var(--line); transition: .14s ease; cursor: pointer; }
.music-row:last-child { border-bottom: 0; }
.music-row:hover { background: var(--surface-2); }
.music-row .cover { flex-shrink: 0; border-radius: 6px; }
.music-row-copy { flex: 1; min-width: 0; }
.music-row-copy strong { display: block; font-size: 13px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.music-row-copy span { display: block; margin-top: 2px; color: var(--muted); font-size: 11px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.music-row .icon-btn { flex-shrink: 0; }

.help-layout { display: grid; grid-template-columns: 1fr; gap: 20px; min-height: 50vh; }
.help-side { display: none; }
.help-panel { display: none; }
.help-accordion { display: block; border-radius: var(--radius); background: var(--surface); overflow: hidden; }
.help-accordion-body p { margin-bottom: 12px; }
.help-accordion-body h3 { margin: 16px 0 8px; font-size: 16px; }
.help-accordion-body ul, .help-accordion-body ol { padding-left: 20px; margin-bottom: 12px; }
.help-accordion-body li { margin-bottom: 4px; }

@media (max-width: 820px) {
	.help-layout { grid-template-columns: 1fr; }
	.help-side { display: none; }
	.help-panel { display: none; }
	.help-accordion { display: block; border-radius: var(--radius); background: var(--surface); overflow: hidden; }
}


.rank { color: var(--muted-2); font-size: 11px; font-weight: 800; text-align: center; }
.track-main { display: flex; min-width: 0; align-items: center; gap: 11px; }
.mini-cover { display: grid; flex: 0 0 auto; width: 42px; height: 42px; place-items: center; border: 0; border-radius: 3px; color: rgba(255,255,255,.9); background: var(--cover); background-size: cover; background-position: center; background-repeat: no-repeat; font-size: 11px; font-weight: 800; }
.track-copy { min-width: 0; }
.track-copy strong, .track-copy span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.track-copy strong { color: var(--text); font-size: 12px; }
.track-copy span { margin-top: 5px; color: var(--muted); font-size: 11px; }
.track-meta, .track-like { color: var(--muted); font-size: 11px; text-align: right; }
.label-badge:hover { opacity: .8; }
.label-badge { transition: opacity .15s; }
.like-btn.liked { color: var(--red); }
.like-btn .icon { width: 16px; height: 16px; }
.trend.up { color: var(--lime); }
.trend.down { color: var(--red); }

.genre-chips, .filters { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { padding: 7px 11px; border: 1px solid var(--line); border-radius: 7px; color: var(--muted); background: var(--surface); font-size: 10px; font-weight: 700; transition: .14s ease; }
.chip:hover { border-color: var(--line-strong); color: var(--text); }
.chip.active { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-soft); }

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat-card { padding: 18px; text-align: center; }
.stat-card span { display: block; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; }
.stat-card strong { display: block; margin-top: 11px; font-size: 28px; font-weight: 800; letter-spacing: -1.2px; }
.stat-card strong.compact { font-size: 16px; letter-spacing: -.4px; }
.stat-card small { display: block; margin-top: 7px; color: var(--lime); font-size: 10px; }
.page-intro { display: flex; align-items: end; justify-content: space-between; gap: 18px; padding: 34px 0 24px; }
.page-intro h1 { margin-bottom: 7px; font-size: clamp(31px, 4vw, 44px); letter-spacing: -2px; }
.page-intro p { margin-bottom: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
@media (min-width:1025px) { .page-intro p { font-size: 15px; } }
@media (min-width:1025px) {
	#page .page { font-size: 17px; line-height: 1.62; }
	#page .page p,
	#page .page li,
	#page .page .muted-copy,
	#page .page .field-help,
	#page .page .help-accordion-body,
	#page .page .help-accordion-body p,
	#page .page .help-accordion-body li { font-size: 15px !important; line-height: 1.72 !important; }
	#page .page small { font-size: 12px !important; line-height: 1.55 !important; }
	#page .page .page-intro p,
	#page .page .section-head p { font-size: 16px !important; line-height: 1.65 !important; }
	#page .page .form-card h3,
	#page .page .section-head h2 { font-size: 20px; }
	#page .page .field label,
	#page .page .network-filter span { font-size: 12px; }
	#page .page .field input,
	#page .page .field textarea,
	#page .page .field select,
	#page .page .search-box input,
	#page .page .network-filter select { font-size: 15px !important; }
	#page .page .button { font-size: 13px; }
	#page .page .button.small { font-size: 12px; }
}
.search-box { display: flex; min-height: 52px; align-items: center; padding: 0 15px; border: 1px solid var(--line); border-radius: 9px; background: var(--surface); }
.search-box:focus-within { border-color: var(--cyan); }
.search-box input { width: 100%; border: 0; outline: 0; padding: 0 11px; color: var(--text); background: transparent; font-size: 13px; }
.search-box .icon { color: var(--cyan); }
.search-results { margin-top: 22px; }

.artist-card { overflow: hidden; border: 1px solid var(--line); border-radius: 11px; background: var(--surface); text-align: center; transition: .16s ease; }
.artist-card:hover { border-color: var(--line-strong); background: var(--surface-2); }
.artist-cover { height: 82px; background: var(--cover, #374151); opacity: .9; }
.lifuza-round-avatar,
.artist-avatar { display: grid; width: var(--avatar-size, 72px); height: var(--avatar-size, 72px); aspect-ratio: 1 / 1; place-items: center; flex: 0 0 var(--avatar-size, 72px); border: var(--avatar-border, 4px solid var(--surface)); border-radius: 50%; overflow: hidden; color: #fff; background: var(--cover, #1e293b) center / cover no-repeat; background-clip: padding-box; font-size: var(--avatar-font-size, 22px); font-weight: 800; line-height: 1; box-sizing: border-box; text-shadow: 0 2px 6px rgba(0,0,0,.5); clip-path: circle(50% at 50% 50%); isolation: isolate; }
.lifuza-round-avatar img,
.artist-avatar img { display: block !important; width: 100% !important; height: 100% !important; max-width: none !important; aspect-ratio: 1 / 1; border-radius: 50% !important; object-fit: cover !important; object-position: center !important; clip-path: circle(50% at 50% 50%); }
.artist-card .artist-avatar { margin: -36px auto 0; }
.artist-card-copy { padding: 11px 10px 16px; }
.artist-card strong { display: block; font-size: 12px; }
.artist-card span { display: block; margin: 5px 0 12px; color: var(--muted); font-size: 10px; }
.verified { display:inline-flex;align-items:center;justify-content:center;width:20px;height:20px;border-radius:50%;background:#1877F2;color:#fff;font-size:11px;font-weight:800;margin-left:4px;vertical-align:middle;flex-shrink:0; }

.artist-hero { position: relative; display: flex; min-height: 230px; align-items: end; gap: 20px; overflow: hidden; padding: 26px; border-radius: 14px; background: var(--surface); background-size: cover; background-repeat: no-repeat; background-position: center; }
.artist-hero h1 { margin-bottom: 9px; letter-spacing: -1px; }
.artist-hero p { max-width: 680px; color: var(--muted); font-size: 12px; line-height: 1.65; }
.artist-hero .artist-avatar { --avatar-size: 112px; --avatar-border: 4px solid rgba(255,255,255,.18); --avatar-font-size: 34px; margin: 0; }
.artist-hero h1 { margin-bottom: 4px; font-size: 38px; }
.account-media-hero .account-hero-content { position: absolute; z-index: 1; right: 24px; bottom: 24px; left: 24px; display: flex; align-items: flex-end; gap: 16px; }

@media (min-width: 541px) and (max-width: 1180px) {
	.artist-hero.account-media-hero {
		display: block !important;
		min-height: 350px !important;
		padding: 0 !important;
	}
	.artist-hero.account-media-hero .account-hero-content {
		position: absolute !important;
		top: auto !important;
		right: 22px !important;
		bottom: 22px !important;
		left: 22px !important;
		width: auto !important;
		margin: 0 !important;
		align-items: flex-end !important;
		flex-direction: row !important;
		transform: none !important;
	}
}

.playlist-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 15px; }
.user-playlist-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.playlist-card { padding: 15px; cursor: pointer; transition: .2s ease; }
.playlist-card:hover { background: var(--surface-3); transform: translateY(-2px); }
.playlist-mosaic { display: grid; overflow: hidden; aspect-ratio: 1.65; grid-template-columns: 1fr 1fr; gap: 2px; border-radius: 7px; background: #182224; }
.playlist-mosaic i { background: var(--cover) center / cover no-repeat; min-height: 40px; }
.playlist-mosaic:only-child { grid-template-columns: 1fr; }
.playlist-mosaic i:only-child { grid-column: 1 / -1; }
.empty-playlist-cover { position: relative; display: grid; isolation: isolate; place-items: center; background: #182224; }
.empty-playlist-cover:before, .empty-playlist-cover:after { position: absolute; z-index: -1; width: 76%; height: 110%; border-radius: 48% 52% 60% 40%; content: ""; filter: blur(26px); opacity: .9; }
.empty-playlist-cover:before { top: -42%; left: -8%; background: var(--eg1, rgba(29,185,84,.74)); transform: rotate(-19deg); }
.empty-playlist-cover:after { right: -13%; bottom: -49%; background: var(--eg2, rgba(76,118,255,.7)); transform: rotate(24deg); }
.empty-playlist-mark { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: rgba(255,255,255,.82); background: rgba(255,255,255,.1);  }
.empty-playlist-mark .icon { width: 19px; height: 19px; }
.playlist-card h3 { margin: 13px 0 6px; font-size: 14px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.playlist-card p { margin-bottom: 11px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.playlist-card .collab { font-size: 10px; color: var(--muted); }
.collab { color: var(--cyan); font-size: 10px; font-weight: 700; }
.partner-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(245px, 1fr)); gap: 15px; }
.partner-card { display: grid; grid-template-columns: 50px 1fr; gap: 12px; padding: 16px; transition: .14s ease; }
.partner-avatar { display: grid; width: 50px; height: 50px; aspect-ratio: 1 / 1; place-items: center; overflow: hidden; border-radius: 50%; color: rgba(255,255,255,.92); background: var(--cover) center / cover no-repeat; background-clip: padding-box; font-size: 13px; font-weight: 800; box-sizing: border-box; clip-path: circle(50% at 50% 50%); isolation: isolate; }
.partner-avatar img { display: block !important; width: 100% !important; height: 100% !important; max-width: none !important; aspect-ratio: 1 / 1; border-radius: 50% !important; object-fit: cover !important; object-position: center !important; clip-path: circle(50% at 50% 50%); }
.partner-card h3 { margin: 4px 0 6px; font-size: 13px; }
.partner-card p { margin-bottom: 9px; color: var(--muted); font-size: 11px; line-height: 1.55; }
.partner-card small { color: var(--cyan); font-size: 10px; }
.partner-card .button { grid-column: 1 / -1; margin-top: 3px; }
.partner-type { color: var(--muted-2); font-size: 9px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; }
.partner-hero { display: flex; align-items: end; gap: 22px; min-height: 248px; margin-top: 24px; padding: 28px; border-radius: 12px; background: linear-gradient(145deg, #2d2d2d, #181818); }
.partner-hero h1 { margin: 8px 0 10px; font-size: clamp(38px, 5vw, 64px); }
.partner-hero p { max-width: 680px; margin-bottom: 18px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.partner-avatar.large { width: 132px; height: 132px; flex: 0 0 auto; font-size: 30px; box-shadow: 0 10px 24px rgba(0,0,0,.32); }
.muted-copy { color: var(--muted); font-size: 12px; line-height: 1.65; }
.profile-state { display: grid; gap: 5px; margin-top: 18px; padding: 14px; border-radius: 8px; background: var(--surface-2); }
.profile-state strong { font-size: 12px; }
.profile-state span { color: var(--muted); font-size: 10px; }
.profile-state.approved strong { color: var(--cyan); }
.profile-state.pending strong { color: var(--gold); }

.form-grid { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 18px; }
.form-grid.multi-artist-grid, .form-grid.publish-single-grid { grid-template-columns: minmax(0, 1fr); }
.form-card { padding: 20px; }
.form-card h3 { margin-bottom: 17px; font-size: 17px; font-weight: 800; letter-spacing: -.3px; }
.fields { display: grid; gap: 14px; }
.field { display: grid; gap: 7px; }
.field label { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .7px; text-transform: uppercase; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--line); border-radius: 7px; outline: 0; padding: 11px 12px; color: var(--text); background: var(--surface-2); font-size: 12px; line-height: 1.5; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--cyan); }
#banner-title,
#banner-link-type,
#banner-track,
#banner-track-search,
#banner-type-select {
	box-sizing: border-box;
	outline: none !important;
	background-clip: padding-box;
	box-shadow: none !important;
}
#banner-title:hover,
#banner-link-type:hover,
#banner-track:hover,
#banner-track-search:hover,
#banner-type-select:hover {
	border-color: var(--line) !important;
	box-shadow: none !important;
}
#banner-title:focus,
#banner-title:focus-visible,
#banner-link-type:focus,
#banner-link-type:focus-visible,
#banner-track:focus,
#banner-track:focus-visible,
#banner-track-search:focus,
#banner-track-search:focus-visible,
#banner-type-select:focus,
#banner-type-select:focus-visible {
	border-color: var(--cyan) !important;
	outline: none !important;
	box-shadow: inset 0 0 0 1px var(--cyan) !important;
}
.banner-publication-form input:not([type="checkbox"]):not([type="file"]),
.banner-publication-form select,
.banner-publication-form textarea,
.banner-publication-form .cover-upload-zone {
	box-sizing: border-box;
	outline: none !important;
	outline-offset: 0 !important;
	-webkit-tap-highlight-color: transparent;
}
.banner-publication-form select {
	-webkit-appearance: none;
	appearance: none;
	padding-right: 34px !important;
	background-image: linear-gradient(45deg,transparent 50%,var(--muted) 50%),linear-gradient(135deg,var(--muted) 50%,transparent 50%);
	background-position: calc(100% - 16px) 50%,calc(100% - 11px) 50%;
	background-size: 5px 5px,5px 5px;
	background-repeat: no-repeat;
}
.banner-publication-form input:not([type="checkbox"]):not([type="file"]):focus,
.banner-publication-form input:not([type="checkbox"]):not([type="file"]):focus-visible,
.banner-publication-form select:focus,
.banner-publication-form select:focus-visible,
.banner-publication-form textarea:focus,
.banner-publication-form textarea:focus-visible,
.banner-publication-form .cover-upload-zone:focus,
.banner-publication-form .cover-upload-zone:focus-visible {
	border-color: var(--cyan) !important;
	outline: 0 !important;
	outline-offset: 0 !important;
	box-shadow: inset 0 0 0 2px var(--cyan) !important;
}
.banner-publication-form input::-moz-focus-inner,
.banner-publication-form select::-moz-focus-inner,
.banner-publication-form button::-moz-focus-inner {
	border: 0 !important;
}
.banner-publication-form select:-moz-focusring {
	color: transparent;
	text-shadow: 0 0 0 var(--text);
}

/* Formulaire de publication de bannière : aucun halo natif ou personnalisé. */
.banner-publication-form input:not([type="checkbox"]):not([type="file"]):hover,
.banner-publication-form input:not([type="checkbox"]):not([type="file"]):focus,
.banner-publication-form input:not([type="checkbox"]):not([type="file"]):focus-visible,
.banner-publication-form input:not([type="checkbox"]):not([type="file"]):active,
.banner-publication-form select:hover,
.banner-publication-form select:focus,
.banner-publication-form select:focus-visible,
.banner-publication-form select:active,
.banner-publication-form textarea:hover,
.banner-publication-form textarea:focus,
.banner-publication-form textarea:focus-visible,
.banner-publication-form textarea:active,
.banner-publication-form .cover-upload-zone:hover,
.banner-publication-form .cover-upload-zone:focus,
.banner-publication-form .cover-upload-zone:focus-visible,
.banner-publication-form .cover-upload-zone:active,
#banner-title:hover,
#banner-title:focus,
#banner-title:focus-visible,
#banner-link-type:hover,
#banner-link-type:focus,
#banner-link-type:focus-visible,
#banner-track:hover,
#banner-track:focus,
#banner-track:focus-visible,
#banner-track-search:hover,
#banner-track-search:focus,
#banner-track-search:focus-visible,
#banner-type-select:hover,
#banner-type-select:focus,
#banner-type-select:focus-visible {
	border-color: var(--line) !important;
	outline: none !important;
	outline-width: 0 !important;
	outline-offset: 0 !important;
	box-shadow: none !important;
	filter: none !important;
	transform: none !important;
}
.banner-publication-form .cover-upload-zone:hover,
.banner-publication-form .cover-upload-zone:focus,
.banner-publication-form .cover-upload-zone:focus-visible,
.banner-publication-form .cover-upload-zone:active {
	border-color: var(--line-strong) !important;
	background: var(--surface-2) !important;
}
.banner-publication-form input[type="file"],
.banner-publication-form input[type="file"]:hover,
.banner-publication-form input[type="file"]:focus,
.banner-publication-form input[type="file"]:focus-visible,
.banner-publication-form input[type="file"]:active,
.banner-publication-form input[type="checkbox"],
.banner-publication-form input[type="checkbox"]:hover,
.banner-publication-form input[type="checkbox"]:focus,
.banner-publication-form input[type="checkbox"]:focus-visible,
.banner-publication-form input[type="checkbox"]:active {
	outline: none !important;
	outline-width: 0 !important;
	outline-offset: 0 !important;
	box-shadow: none !important;
	filter: none !important;
}
.publish-single-grid .field input:not([type="checkbox"]):not([type="file"]),
.publish-single-grid .field textarea,
.publish-single-grid .field select {
	box-sizing: border-box;
	border-radius: 8px;
	outline: none !important;
	background-clip: padding-box;
	transition: border-color .16s ease, box-shadow .16s ease, background-color .16s ease;
}
.publish-single-grid .field input:not([type="checkbox"]):not([type="file"]):hover,
.publish-single-grid .field textarea:hover,
.publish-single-grid .field select:hover {
	border-color: var(--line-strong);
	box-shadow: none;
}
.publish-single-grid .field input:not([type="checkbox"]):not([type="file"]):focus,
.publish-single-grid .field input:not([type="checkbox"]):not([type="file"]):focus-visible,
.publish-single-grid .field textarea:focus,
.publish-single-grid .field textarea:focus-visible,
.publish-single-grid .field select:focus,
.publish-single-grid .field select:focus-visible {
	border-color: var(--cyan) !important;
	outline: none !important;
	box-shadow: inset 0 0 0 1px var(--cyan) !important;
}
.field :disabled { cursor: not-allowed; opacity: .48; }
.field-help { color: var(--gold); font-size: 10px; line-height: 1.5; }
.publish-upload-progress { display: grid; gap: 10px; padding: 16px 18px; border: 1px solid rgba(29,185,84,.2); border-radius: 14px; background: linear-gradient(135deg,rgba(29,185,84,.05),rgba(29,185,84,.01));  }
.publish-upload-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.publish-upload-head strong { font-size: 12px; font-weight: 700; }
.publish-upload-head span { font-size: 13px; font-weight: 800; color: var(--cyan); font-variant-numeric: tabular-nums; }
.publish-upload-track { position: relative; height: 6px; overflow: hidden; border-radius: 999px; background: var(--surface-3); }
.publish-upload-track i { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg,var(--cyan),#1fdf64,var(--lime)); background-size: 200% 100%; transition: width .2s cubic-bezier(.4,0,.2,1); }
.publish-upload-track.is-indeterminate i { width: 30%; animation: indeterminateSlide 1.4s ease-in-out infinite; }
@keyframes indeterminateSlide { 0% { transform: translateX(-100%); } 100% { transform: translateX(400%); } }
.publish-upload-track.is-determinate i { animation: progressPulse 1.5s ease infinite; }
@keyframes progressPulse { 0%,100% { background-position: 0 50%; } 50% { background-position: 100% 50%; } }
.publish-upload-progress small { color: var(--muted); font-size: 10px; font-weight: 500; }
.publish-upload-progress.has-error { border-color: rgba(255,115,137,.4); background: rgba(255,115,137,.06); }
.publish-upload-progress.has-error .publish-upload-head span, .publish-upload-progress.has-error small { color: var(--red); }
.publish-upload-progress.has-error .publish-upload-track i { background: var(--red); animation: none; width: 100%; }
.publish-upload-progress.is-complete { border-color: rgba(169,230,111,.3); }
.publish-upload-progress.is-complete .publish-upload-track i { background: var(--lime); animation: none; width: 100%; border-radius: 999px; }
.publish-upload-progress.is-complete small { color: var(--lime); }

.upload-zone { position: relative; display: grid; min-height: 142px; place-items: center; padding: 16px; border: 1px dashed var(--line-strong); border-radius: 16px; color: var(--muted); background: var(--surface-2); text-align: center; transition: all .25s cubic-bezier(.4,0,.2,1); cursor: pointer; overflow: hidden; }
.upload-zone::before { content: ''; position: absolute; inset: -2px; border-radius: 18px; background: transparent; transition: opacity .25s ease; opacity: 0; pointer-events: none; }
.upload-zone:hover, .upload-zone:focus-visible { border-color: var(--cyan); outline: 0; background: var(--cyan-soft); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(29,185,84,.12); }
.upload-zone.is-dragging { border-color: var(--cyan); background: var(--cyan-soft); box-shadow: inset 0 0 0 1px var(--cyan), 0 0 30px rgba(29,185,84,.18); transform: scale(1.015); }
.upload-zone.has-file { border-style: solid; border-color: rgba(169,230,111,.5); background: linear-gradient(135deg,rgba(169,230,111,.06),rgba(29,185,84,.04)); }
.upload-zone.has-file .icon { color: var(--lime); }
.upload-zone .icon { width: 28px; height: 28px; margin-bottom: 10px; color: var(--cyan); opacity: .8; transition: transform .25s ease; }
.upload-zone:hover .icon { transform: scale(1.1) translateY(-2px); }
.upload-zone strong, .upload-zone span { display: block; }
.upload-zone strong { color: var(--text); font-size: 13px; font-weight: 700; }
.upload-zone span { margin-top: 6px; font-size: 11px; opacity: .7; }
.upload-zone input[type="file"] { max-width: 100%; margin-top: 14px; color: var(--muted); font-size: 11px; }
.audio-file-error { min-height: 16px; margin: 4px 0 0; color: var(--red); font-size: 11px; font-weight: 600; }
.multi-field-error { border-color: var(--red) !important; box-shadow: 0 0 0 1.5px var(--red); outline: none; }
.multi-field-error ~ .multi-field-error-msg { display: block; }
.multi-field-error-msg { display: none; color: var(--red); font-size: 9px; font-weight: 700; margin-top: 2px; text-align: left; }
.publish-field-error { border-color: var(--red) !important; box-shadow: 0 0 0 1.5px var(--red); outline: none; }
.publish-field-error ~ .publish-field-error-msg { display: block; }
.publish-field-error-msg { display: none; color: var(--red); font-size: 9px; font-weight: 700; margin-top: 2px; text-align: left; }
.audio-preview { display: grid; gap: 12px; padding: 16px; border: 1px solid rgba(29,185,84,.25); border-radius: 14px; background: linear-gradient(135deg,rgba(29,185,84,.06),rgba(29,185,84,.02));  }
.audio-preview[hidden], .publish-upload-progress[hidden] { display: none; }
.audio-preview.loading { opacity: .6; pointer-events: none; }
.audio-preview strong { display: block; color: var(--lime); font-size: 12px; }
.audio-preview span { display: block; margin-top: 5px; color: var(--muted); font-size: 10px; line-height: 1.5; }
.audio-preview audio { width: 100%; height: 40px; border-radius: 8px; }
.audio-preview audio::-webkit-media-controls-panel { background: var(--surface-3); }
.audio-preview audio::-webkit-media-controls-current-time-display, .audio-preview audio::-webkit-media-controls-time-remaining-display { color: var(--muted); font-size: 11px; }
.audio-preview .preview-loading { display: flex; align-items: center; gap: 10px; padding: 6px 0; color: var(--muted); font-size: 10px; }
.audio-preview .preview-loading i { width: 18px; height: 18px; border: 2px solid var(--line-strong); border-top-color: var(--cyan); border-radius: 50%; animation: notif-spin .7s linear infinite; flex-shrink: 0; }

.cover-upload-zone { position: relative; display: flex; min-height: 80px; align-items: center; gap: 14px; padding: 12px 16px; border: 1px dashed var(--line-strong); border-radius: 12px; color: var(--muted); background: var(--surface-2); cursor: pointer; transition: all .25s cubic-bezier(.4,0,.2,1); overflow: hidden; }
.cover-upload-zone:hover, .cover-upload-zone:focus-visible { border-color: var(--cyan); outline: 0; background: var(--cyan-soft); }
.cover-upload-zone.is-dragging { border-color: var(--cyan); background: var(--cyan-soft); box-shadow: inset 0 0 0 1px var(--cyan), 0 0 24px rgba(29,185,84,.14); transform: scale(1.008); }
.cover-upload-zone.has-file { border-style: solid; border-color: rgba(169,230,111,.4); }
.cover-upload-zone .icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--cyan); opacity: .7; }
.cover-upload-zone strong, .cover-upload-zone span { display: block; }
.cover-upload-zone strong { color: var(--text); font-size: 12px; font-weight: 700; }
.cover-upload-zone span { margin-top: 3px; font-size: 10px; opacity: .6; }
.cover-upload-zone input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.cover-upload-preview { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.publish-rules-top { margin: 0 0 16px; }
.publish-rules-top details { overflow: hidden; border-radius: 12px; }
.publish-rules-top summary { display: flex; align-items: center; justify-content: space-between; gap: 12px; cursor: pointer; list-style: none; color: var(--text); font-size: 13px; font-weight: 800; }
.publish-rules-top summary::-webkit-details-marker { display: none; }
.publish-rules-top summary .icon { width: 16px; height: 16px; color: var(--muted); transition: transform .18s ease; }
.publish-rules-top details[open] summary .icon { transform: rotate(180deg); }
.publish-rules-body { display: grid; gap: 8px; margin-top: 12px; }
.multi-publish-table th, .multi-publish-table td { vertical-align: top; }
.multi-publish-table tr.has-name-warning td { background: rgba(245,158,11,.06); }
.multi-name-warning { display: grid; gap: 8px; margin-top: 9px; padding: 10px; border: 1px solid rgba(245,158,11,.34); border-radius: 10px; background: rgba(245,158,11,.1); color: var(--text); }
.multi-name-warning div { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; }
.multi-name-warning strong, .multi-name-warning span { flex-basis: 100%; }
.multi-name-warning strong { color: #f59e0b; font-size: 11px; }
.multi-name-warning span { color: var(--muted); font-size: 10px; line-height: 1.45; }
.multi-cover-cell { display: grid; min-width: 150px; gap: 7px; }
.multi-cover-preview { display: grid; width: 56px; height: 56px; place-items: center; border-radius: 8px; background: var(--surface-2) center / cover no-repeat; color: var(--muted); }
.multi-cover-preview.empty .icon { width: 20px; height: 20px; opacity: .7; }
.multi-cover-upload { position: relative; overflow: hidden; width: fit-content; }
.multi-cover-upload input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.multi-cover-cell small { color: var(--muted); font-size: 10px; line-height: 1.3; }
.progress { height: 7px; overflow: hidden; border-radius: 7px; background: var(--surface-3); }
.progress i { display: block; width: var(--progress); height: 100%; border-radius: inherit; background: var(--cyan); }
.progress.danger i { background: var(--red); }
.quota { display: flex; justify-content: space-between; margin: 9px 0 13px; color: var(--muted); font-size: 11px; }
.policy-notice { margin: 0 0 18px; padding: 16px 18px; border: 1px solid rgba(255,115,137,.36); border-radius: 10px; background: var(--red-soft); }
.policy-notice strong { display: block; color: #ff9aaa; font-size: 13px; }
.policy-notice p { margin: 7px 0 0; color: #ddc1c6; font-size: 11px; line-height: 1.65; }
.policy-check { display: flex; align-items: start; gap: 9px; color: #d3c4c7; font-size: 11px; line-height: 1.55; }
.policy-check input { width: auto; margin-top: 2px; accent-color: var(--cyan); }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }
.price-card { position: relative; padding: 24px; }
.price-card.featured { border-color: var(--cyan); }
.price-card .popular { position: absolute; top: -10px; right: 14px; padding: 5px 9px; border-radius: 6px; color: var(--cyan-dark); background: var(--cyan); font-size: 8px; font-weight: 800; }
.price-card h3 { margin-bottom: 16px; font-size: 22px; font-weight: 800; }
.price { margin-bottom: 18px; font-size: 34px; font-weight: 800; letter-spacing: -1.5px; }
.price small { color: var(--muted); font-size: 11px; letter-spacing: 0; }
.features { display: grid; min-height: 176px; gap: 10px; margin: 0 0 19px; padding: 0; list-style: none; }
.features li { display: flex; gap: 8px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.features .icon { flex: 0 0 auto; width: 14px; height: 14px; color: var(--cyan); }

.admin-wrap { min-height: calc(100vh - var(--player)); padding-bottom: 32px; }
.admin-banner { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin: 24px 0 17px; padding: 17px 18px; border: 1px solid var(--line); border-radius: 11px; background: var(--surface); }
.admin-banner strong { display: block; font-size: 16px; font-weight: 800; }
.admin-banner span { display: block; margin-top: 5px; color: var(--muted); font-size: 11px; }
.admin-tabs { display: flex; overflow-x: auto; gap: 7px; margin-bottom: 17px; padding-bottom: 2px; }
.admin-tab { flex: 0 0 auto; padding: 9px 12px; border: 1px solid var(--line); border-radius: 7px; color: var(--muted); background: var(--surface); font-size: 10px; font-weight: 700; }
.admin-tab.active { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-soft); }
.admin-grid { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 17px; }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { padding: 12px 10px; border-bottom: 1px solid var(--line); font-size: 11px; text-align: left; }
.table th { color: var(--muted-2); font-size: 9px; letter-spacing: .7px; text-transform: uppercase; }
.table td { color: #d5dbe1; }
.status { display: inline-flex; padding: 5px 7px; border-radius: 5px; color: var(--lime); background: rgba(169,230,111,.1); font-size: 8px; font-weight: 800; }
.status.paused { color: var(--gold); background: rgba(242,198,109,.1); }
.status.pending { color: var(--cyan); background: var(--cyan-soft); }
.circuit-breaker { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; gap: 13px; align-items: center; margin: 0 0 14px; padding: 14px; border: 1px solid rgba(169,230,111,.28); border-radius: 9px; background: rgba(169,230,111,.06); }
.circuit-breaker.off { border-color: rgba(255,115,137,.38); background: var(--red-soft); }
.circuit-breaker strong { display: block; font-size: 12px; }
.circuit-breaker p { margin: 6px 0 0; color: var(--muted); font-size: 10px; line-height: 1.5; }
.circuit-breaker span { color: var(--lime); font-size: 9px; font-weight: 800; letter-spacing: .7px; }
.circuit-breaker.off span { color: var(--red); }
.switch { position: relative; width: 44px; height: 24px; border: 1px solid rgba(255,115,137,.42); border-radius: 24px; background: rgba(255,115,137,.18); transition: .16s ease; }
.switch i { position: absolute; top: 4px; left: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--red); transition: .16s ease; }
.switch.on { border-color: rgba(169,230,111,.48); background: rgba(169,230,111,.18); }
.switch.on i { left: 24px; background: var(--lime); }
.bar-chart { display: flex; min-height: 190px; align-items: end; gap: 13px; padding: 20px 13px 8px; }
.bar-item { display: flex; flex: 1; height: 100%; flex-direction: column; justify-content: end; gap: 7px; text-align: center; }
.bar-item i { display: block; min-height: 8px; border-radius: 4px 4px 0 0; background: var(--cyan); }
.bar-item span { color: var(--muted); font-size: 9px; }

.player { position: fixed; z-index: 50; right: 0; bottom: 0; left: 0; display: grid; height: var(--player); box-sizing: border-box; grid-template-columns: minmax(260px, 1fr) minmax(370px, 1.15fr) minmax(210px, 1fr); align-items: center; gap: 16px; overflow: hidden; padding: 8px 20px 10px; background: var(--player-bg); }
.now-playing, .ad-banner { display: flex; min-width: 0; max-width: 100%; align-items: center; gap: 9px; overflow: hidden; }
.now-playing .mini-cover { width: 56px; height: 56px; border-radius: 8px; box-shadow: 0 3px 14px rgba(0,0,0,.28); }
.player-copy { min-width: 0; flex: 1 1 auto; overflow: hidden; }
.player-copy strong, .player-copy span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.player-copy strong { font-size: 12px; }
.player-copy span { margin-top: 5px; color: var(--muted); font-size: 11px; }
.player-center { display: grid; min-width: 0; gap: 7px; padding-bottom: 2px; }
#listen-circle-wrap { position: relative; z-index: 70; }
#listen-popover {
	position: fixed !important;
	z-index: 2147482990 !important;
	right: max(20px, env(safe-area-inset-right, 0px)) !important;
	bottom: calc(var(--player) + var(--vv-bottom, 0px) + env(safe-area-inset-bottom, 0px) + 14px) !important;
	left: auto !important;
	width: min(300px, calc(100vw - 40px)) !important;
	min-width: 0 !important;
	max-width: calc(100vw - 40px) !important;
	max-height: calc(100dvh - var(--player) - var(--vv-bottom, 0px) - env(safe-area-inset-bottom, 0px) - 40px);
	box-sizing: border-box;
	overflow: auto;
}
.player-controls { display: flex; align-items: center; justify-content: center; gap: 15px; }
.player-play-count { flex: 0 0 auto; min-width: 62px; color: var(--muted); font-size: 9px; font-weight: 700; text-align: right; white-space: nowrap; }
.player-play-count[hidden] { display: none; }
.player-controls .play-main { display: grid; width: 36px; height: 36px; place-items: center; border: 0; border-radius: 50%; color: #000; background: #fff; transition: .14s ease; }
.player-controls .play-main:hover { background: #fff; transform: scale(1.07); }
.player-controls .active { color: var(--cyan); }
.scrub { display: grid; grid-template-columns: 34px 1fr 34px; gap: 8px; align-items: center; color: var(--muted); font-size: 9px; }
.scrub input, .volume input { width: 100%; height: 3px; accent-color: var(--cyan); cursor: pointer; }
.player-right { display: flex; align-items: center; justify-content: end; gap: 10px; }
.player-lfz { display: inline-flex; flex: 0 0 auto; align-items: center; justify-content: center; min-width: 29px; height: 20px; padding: 0 6px; border-radius: 6px; color: #a5b4fc; background: rgba(99,102,241,.14); font-size: 9px; font-weight: 800; letter-spacing: .3px; }
.now-playing > .icon-btn, .now-playing > #listen-circle-wrap { flex: 0 0 auto; }
.like-btn { transition: color .15s ease; }
.like-btn.liked .icon { fill: currentColor; }
.player .like-btn, .player .like-btn:active, .player .like-btn .icon, .player .like-btn.liked .icon { transform: none; animation: none; }
@keyframes like-pop { 0% { transform: scale(.72); } 70% { transform: scale(1.18); } 100% { transform: scale(1); } }
.volume { display: flex; width: 110px; align-items: center; gap: 8px; }
.ad-banner { display: none; }
.player.is-ad .now-playing { display: none; }
.player.is-ad .ad-banner { display: flex; }
.ad-badge { padding: 5px 7px; border-radius: 5px; color: #211700; background: var(--gold); font-size: 8px; font-weight: 800; }

.toast { position: fixed; z-index: 2147483000 !important; right: max(20px, env(safe-area-inset-right, 0px)); bottom: calc(var(--player) + var(--vv-bottom, 0px) + env(safe-area-inset-bottom, 0px) + 18px); max-width: min(380px, calc(100vw - 40px)); box-sizing: border-box; padding: 16px 20px; border-radius: 12px; color: #fff; font-size: 13px; font-weight: 700; box-shadow: 0 6px 28px rgba(0,0,0,.35); animation: toast-in .2s ease both; display:flex;align-items:center;gap:12px;line-height:1.4 }
.toast-success { background: #16a34a; border:1px solid #15803d; }
.toast-error { background: #dc2626; border:1px solid #b91c1c; }
.toast-info { background: #0284c7; border:1px solid #0369a1; }
.toast .toast-btn { display:inline-flex;align-items:center;gap:5px;padding:6px 14px;border:1px solid rgba(255,255,255,.35);border-radius:8px;background:rgba(255,255,255,.12);color:#fff;font-size:11px;font-weight:700;cursor:pointer;white-space:nowrap;flex-shrink:0;transition:.12s ease }
.toast .toast-btn:hover { background:rgba(255,255,255,.22) }
@keyframes toast-in { from { opacity: 0; transform: translateY(4px); } }
.empty { padding: 34px 16px; color: var(--muted); font-size: 12px; text-align: center; }

html[data-theme="light"] .topbar { background: var(--bg); }
html[data-theme="light"] .circle-btn { background: rgba(0,0,0,.08); }
html[data-theme="light"] .partner-hero { background: linear-gradient(145deg, #fff, #e8e8e8); }
html[data-theme="light"] .policy-notice strong { color: #b02d45; }
html[data-theme="light"] .policy-notice p, html[data-theme="light"] .policy-check { color: #6e3a44; }
html[data-theme="light"] .table td { color: #333; }
html[data-theme="light"] .player { background: #fff; }
html[data-theme="light"] .notif-lightbox { background: rgba(255,255,255,.92); }
html[data-theme="light"] .notif-modal { border-color: #d0d0d0; box-shadow: 0 26px 80px rgba(0,0,0,.12); }
html[data-theme="light"] .sidebar { background: #f7f7f7; border-right-color: rgba(0,0,0,.08); }

.sidebar-close { display: none; }

@media (max-width: 1200px) {
	:root { --sidebar: 230px; }
	.main { padding-inline: 24px; }
	.hero { grid-template-columns: minmax(0, 1fr) 210px; }
	.split, .admin-grid { grid-template-columns: 1fr; }
	.price-grid { grid-template-columns: 1fr; }
	.features { min-height: 0; }
	.mobile-toggle { display: flex !important; }
	.sidebar-close { display: flex; }
	.sidebar { width: 250px; transform: translateX(-105%); }
	.sidebar.open { transform: none; box-shadow: 12px 0 30px rgba(0,0,0,.28); }
	.app-grid { display: block; }
	.main { padding: 0 16px calc(var(--player) + 44px); }
	.theme-switch { display: none !important; }
	.theme-switch.sidebar-theme-switch { display: inline-flex !important; }
	.track-row { grid-template-columns: 28px minmax(0,1fr) repeat(3,26px); gap: 8px; padding-inline: 9px; }
	.track-row .track-meta, .track-row [data-download] { display: none; }
	.track-row .playlist-row-add { grid-column: 3; }
	.track-row .version-indicator { grid-column: 4; }
	.track-row .like-btn { grid-column: 5; }
}
@media (min-width: 1201px) {
	.sidebar-theme-switch { display: none !important; }
}

@media (max-width: 820px) {
	:root { --player: 72px; }
	.app-grid { display: block; }
	.sidebar { width: 250px; transform: translateX(-105%); }
	.sidebar.open { transform: none; box-shadow: 12px 0 30px rgba(0,0,0,.28); }
	.main { padding: 0 16px calc(var(--player) + 24px); }
	.history-controls { display: none; }
	.global-search { width: min(380px, 62vw); }
	.top-actions .pro-pill { display: none; }
	.hero { display: block; min-height: auto; margin: 18px 0 34px; }
	.sidebar-version { display: none; }
	.discover-public-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.user-playlist-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.hero-copy { padding: 26px 20px; }
	.hero-visual { display: none; }
	h1 { font-size: clamp(36px, 9vw, 48px); letter-spacing: -2.4px; }
	.page-intro { align-items: start; flex-direction: column; padding: 26px 0 20px; }
	.page-intro h1 { font-size: 34px; }
	.stat-grid { grid-template-columns: repeat(2, 1fr); }
	.form-grid { grid-template-columns: 1fr; }
	:root { --player: 82px; }
	.player { right: auto; bottom: var(--vv-bottom, 0px); left: var(--vv-left, 0px); width: var(--vv-width, 100%); height: var(--player); overflow: visible; grid-template-columns: minmax(0,1fr) auto; gap: 8px; padding: 6px 12px 18px; transform: none !important; -webkit-transform: none !important; }
	.player::after { content: ""; position: absolute; right: 0; top: 100%; left: 0; height: calc(var(--vv-bottom, 0px) + env(safe-area-inset-bottom, 0px) + var(--mobile-player-gap-mask, 180px)); pointer-events: none; background: var(--player-bg); }
	.now-playing { gap: 8px; overflow: hidden; }
	.now-playing .mini-cover { width: 48px; height: 48px; border-radius: 7px; }
	.player-center { display: flex; grid-column: 2; grid-row: 1; }
	.player-controls { gap: 9px; }
	.player-controls .player-download, .player-right { display: none; }
	.scrub { position: absolute; right: 12px; bottom: 7px; left: 12px; display: grid; grid-template-columns: 28px minmax(0,1fr) 28px; gap: 6px; }
	.scrub input { min-width: 0; }
	.track-row { grid-template-columns: 28px minmax(0,1fr) repeat(3,26px); gap: 8px; padding-inline: 9px; }
	.track-row .track-meta:nth-of-type(2) { display: none; }
	.artist-hero { min-height: auto; align-items: center; padding: 18px; }
	.artist-hero .artist-avatar { --avatar-size: 76px; --avatar-font-size: 24px; }
	.artist-hero h1 { font-size: 28px; }
	.circuit-breaker { grid-template-columns: 1fr auto; }
	.circuit-breaker span { grid-column: 1 / -1; }
	.partner-hero { min-height: auto; align-items: start; flex-direction: column; padding: 20px; }
	.partner-avatar.large { width: 92px; height: 92px; font-size: 23px; }
	.table { min-width: 620px; }
	.form-card { overflow-x: auto; }
	.link-stats-chart { min-width: 620px; }
}

@media (max-width: 540px) {
	.topbar { gap: 9px; min-height: 64px; }
	.global-search { width: auto; min-width: 0; flex: 1; height: 38px; }
	.top-actions { gap: 8px; }
	.top-actions .icon-btn { display: none; }
	.top-actions .top-account { display: block; }
	.top-actions [data-route="premium"] { display: none; }
	.top-actions .button[data-route="premium"] { display: none; }
	.top-actions .theme-switch { display: none !important; }
	.player-play-count, .player-shuffle { display: none !important; }
	.notif-button { display: inline-grid !important; }
	.notif-lightbox { padding: 10px; }
	.notif-modal { max-height: calc(100vh - 20px); border-radius: 14px; }
	.notif-modal-head { padding: 17px 16px 12px; }
	.notif-modal-head h2 { font-size: 23px; }
	.notif-toolbar { padding: 0 16px 12px; }
	.notif-item { grid-template-columns: 34px minmax(0, 1fr); gap: 10px; padding: 13px 16px; }
	.notif-kind { width: 34px; height: 34px; }
	.hero p { font-size: 12px; }
	.hero-actions .button { width: 100%; }
	.section { margin-bottom: 34px; }
	.section-head { align-items: start; }
	.section-head h2 { font-size: 18px; }
	.card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
	.discover-public-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
	.music-card { padding: 7px; }
	.music-card-copy strong { font-size: 11px; }
	.music-card-copy span { font-size: 10px; }
	.playlist-grid { grid-template-columns: 1fr; }
	.track-row { min-height: 58px; grid-template-columns: 24px minmax(0, 1fr) repeat(3, 24px); }
	.track-row .track-meta { display: none; }
	.track-row [data-download] { display: none; }
	.track-row .playlist-row-add { grid-column: 3; }
	.track-row .version-indicator { grid-column: 4; }
	.track-row .like-btn { grid-column: 5; }
	.scrub span { font-size: 8px; }
	.mini-cover { width: 38px; height: 38px; }
	.artist-hero { align-items: start; flex-direction: column; }
	.artist-hero.account-media-hero { display:block;min-height:300px !important;padding:0 !important }
	.artist-hero.account-media-hero .account-hero-content { position:absolute;top:auto;right:16px;bottom:16px;left:16px;display:flex;align-items:flex-end;flex-direction:row;gap:10px;width:auto;margin:0;transform:none }
	.artist-hero.account-media-hero .account-hero-content #upload-banner-btn { padding:6px 8px;font-size:10px }
	.price-card, .form-card { padding: 16px; }
	.admin-banner { align-items: start; flex-direction: column; }
	#listen-popover {
		right: max(12px, env(safe-area-inset-right, 0px)) !important;
		left: max(12px, env(safe-area-inset-left, 0px)) !important;
		width: auto !important;
		max-width: none !important;
		bottom: calc(var(--player) + var(--vv-bottom, 0px) + env(safe-area-inset-bottom, 0px) + 12px) !important;
	}
	.toast {
		right: max(12px, env(safe-area-inset-right, 0px));
		bottom: calc(var(--player) + var(--vv-bottom, 0px) + env(safe-area-inset-bottom, 0px) + 12px);
		left: max(12px, env(safe-area-inset-left, 0px));
		max-width: none;
	}
	.toast .toast-btn { white-space: normal; text-align: center; }
}
@media (max-width: 600px) {
	#auth-host input,
	#auth-host select,
	#app-login-username,
	#app-login-password,
	#app-reg-username,
	#app-reg-email,
	#app-reg-password,
	#app-reg-type {
		font-size: 16px !important;
	}
	.banner-slideshow { min-height: auto !important; aspect-ratio: 16 / 10; border-radius: 12px; }
	.banner-slide img { object-fit: contain !important; background: #050505; }
	.banner-slide > div[style*="bottom:20px"][style*="left:30px"] { right: 14px !important; bottom: 14px !important; left: 14px !important; max-width: none !important; }
	.banner-track-info { display: none !important; }
	.banner-track-cover { display: block !important; }
	.banner-track-card { gap: 0 !important; padding: 4px !important; max-width: none !important; background: none !important;  border: none !important; }
	.now-play-btn { background: var(--cyan) !important; }
	@-moz-document url-prefix() {
		.banner-track-card { display: flex !important; }
		.now-play-btn { opacity: 1 !important; transform: none !important; }
	}
	.banner-track-card button { width: 40px !important; height: 40px !important; }
}

@media (min-width: 1800px) {
	.main { max-width: 1600px; margin: 0 auto; }
	.price-grid { max-width: 1400px; margin-inline: auto; }
	.admin-grid { max-width: 1400px; margin-inline: auto; }
}

/* ── Comblage (filler) badge ── */
.filler-badge {
	display: inline-block;
	padding: 1px 6px;
	border-radius: 4px;
	background: rgba(251,191,36,.18);
	color: #f59e0b;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: -.2px;
	line-height: 1.5;
	cursor: help;
	vertical-align: middle;
}
.filler-badge-row {
	position: absolute;
	top: 2px;
	right: 2px;
	z-index: 2;
	padding: 0 4px;
	font-size: 7px;
}
/* ── Versions selector ── */
.player-versions {
	display: flex;
	gap: 4px;
	margin-top: 4px;
	flex-wrap: wrap;
}
.version-btn {
	font-size: 9px;
	padding: 2px 6px;
	background: var(--surface-2);
	color: var(--text);
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background .15s, color .15s;
}
.version-btn:hover {
	filter: brightness(1.2);
}
.version-btn.active {
	background: var(--accent);
	color: #fff;
}

.filler-badge-player {
	position: absolute;
	bottom: 1px;
	right: 1px;
	z-index: 2;
	padding: 0 4px;
	font-size: 7px;
	background: rgba(0,0,0,.6);
	color: #f59e0b;
}
.cover .filler-badge,
.mini-cover .filler-badge {
	position: absolute;
	top: 4px;
	right: 4px;
	z-index: 2;
}
.mini-cover .filler-badge {
	padding: 0 5px;
	font-size: 8px;
	top: auto;
	bottom: 2px;
	right: 2px;
}

/* ── Bannière publicitaire / slideshow ── */
.banner-slideshow {
	position: relative;
	min-height: 520px;
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 24px;
}
.banner-slide {
	position: absolute;
	inset: 0;
	transition: opacity .6s ease;
	opacity: 0;
}
.banner-slide.active {
	opacity: 1;
}
.banner-slide:not(.active) {
	pointer-events: none;
}
.banner-slide img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


@supports (backdrop-filter: blur(1px)) {
	.topbar { backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
	.notif-lightbox { backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px); }
}

/* Firefox fallback */
@-moz-document url-prefix() {
	.topbar { background: var(--bg) !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
	.notif-lightbox { background: rgba(0,0,0,.85) !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
}
@-moz-document url-prefix() {
	.topbar { background: var(--bg) !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
	.notif-lightbox { background: rgba(15,15,25,.92) !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
	.banner-track-card { background: rgba(0,0,0,.6) !important; }
}
html[data-theme="light"] .topbar { border-bottom-color: rgba(0,0,0,.08); }
@-moz-document url-prefix() {
	html[data-theme="light"] .topbar { border-bottom-color: rgba(0,0,0,.08) !important; }
}
/* LiNk Premium */
.link-management-tabs{display:flex;gap:0;margin-bottom:16px;border-bottom:1px solid var(--line);overflow-x:auto}
.link-management-tabs .button{flex:1;min-width:max-content;border:0;border-bottom:2px solid transparent;border-radius:0;background:none;padding:10px 14px;color:var(--muted);font-weight:700}
.link-management-tabs .button[data-active="1"]{border-bottom-color:var(--accent);color:var(--text)}
.link-settings-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
.link-faq-row{display:grid;grid-template-columns:minmax(180px,.8fr) minmax(240px,1.4fr) auto;gap:10px;align-items:end;padding:12px;margin-top:10px;border:1px solid var(--line);border-radius:12px;background:var(--surface-2)}
.link-faq-row input,.link-faq-row textarea{width:100%;padding:10px 11px;border:1px solid var(--line);border-radius:9px;background:var(--bg);color:var(--text);font:inherit;font-size:12px;box-sizing:border-box}.link-faq-row textarea{min-height:72px;resize:vertical}.link-faq-remove{color:#ef4444}
.link-faq-counter{display:block;margin-top:5px;color:var(--muted);font-size:9px;text-align:right;transition:color .18s ease}.link-faq-counter b{color:var(--text);font-variant-numeric:tabular-nums}.link-faq-counter.is-low,.link-faq-counter.is-low b{color:#f59e0b}
.link-event-types-grid{display:flex;flex-direction:column;align-items:flex-start;gap:7px;margin-top:8px}.link-event-type-option{display:inline-flex;align-items:center;gap:7px;padding:0;border:0;background:none;color:var(--text);font-size:12px;font-weight:400;cursor:pointer}.link-event-type-option:has(input:checked){border:0;background:none}.link-event-type-option input{width:14px;height:14px;flex:0 0 auto;margin:0;accent-color:#ec4899}.link-event-type-option span{line-height:1.35;white-space:normal}
.link-photo-manage-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:14px}.link-photo-manage-card{overflow:hidden;border:1px solid var(--line);border-radius:14px;background:var(--surface-2)}.link-photo-manage-card img{display:block;width:100%;aspect-ratio:1;object-fit:cover;background:var(--bg)}.link-photo-manage-card>div{display:flex;gap:6px;padding:9px}.link-photo-manage-card .button{flex:1}
.link-photo-dropzone{margin-top:12px}.link-photo-dropzone.is-dragging{border-color:var(--cyan);background:var(--cyan-soft);box-shadow:inset 0 0 0 1px var(--cyan)}
.link-booking-filters{display:grid;grid-template-columns:minmax(180px,2fr) repeat(4,minmax(130px,1fr));gap:8px;margin:16px 0}
.link-booking-filters input,.link-booking-filters select,.link-booking-detail select,.link-booking-detail textarea,.link-settings-grid input,#link-booking-email,#link-booking-intro,#link-professional-info,#link-description{padding:10px 11px;border:1px solid var(--line);border-radius:9px;background:var(--surface-2);color:var(--text);font:inherit;font-size:12px;box-sizing:border-box}
.link-page-switcher{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-bottom:14px;padding:12px 14px;background:linear-gradient(135deg,var(--surface),var(--surface-2));border-color:var(--line-strong)}
.link-page-switcher>label{display:flex;align-items:center;gap:8px;flex:0 0 auto;color:var(--muted)}
.link-page-switcher>label>span{display:grid;width:28px;height:28px;place-items:center;border-radius:9px;background:rgba(236,72,153,.12);color:#ec4899}
.link-page-switcher>label .icon{width:14px;height:14px}
.link-page-switcher>label small{font-size:10px;font-weight:850;letter-spacing:.06em;text-transform:uppercase}
.link-page-select-wrap{position:relative;flex:0 1 50%;width:50%;max-width:360px;min-width:210px}
.link-page-select-wrap select{display:block;width:100%;min-width:0;appearance:none;-webkit-appearance:none;padding:10px 38px 10px 13px;border:1px solid var(--line-strong);border-radius:11px;background:var(--surface-2);color:var(--text);font:inherit;font-size:12px;font-weight:750;box-shadow:inset 0 1px 0 rgba(255,255,255,.04),0 5px 16px rgba(0,0,0,.08);cursor:pointer;transition:border-color .18s ease,box-shadow .18s ease}
.link-page-select-wrap select:hover,.link-page-select-wrap select:focus{border-color:#ec4899;outline:0;box-shadow:0 0 0 3px rgba(236,72,153,.12)}
.link-page-select-wrap>.icon{position:absolute;top:50%;right:12px;width:15px;height:15px;transform:translateY(-50%);color:#ec4899;pointer-events:none}
@media(max-width:700px){.link-page-switcher{align-items:stretch}.link-page-select-wrap{flex:1 1 100%;width:100%;max-width:none;min-width:0}.link-page-switcher>#link-create-another{width:100%}}
.link-booking-list{display:grid;gap:8px}
.link-booking-view-switch{display:flex;gap:6px;margin:14px 0 4px;padding-bottom:10px;border-bottom:1px solid var(--line)}.link-booking-view-switch .button[data-active="1"]{background:var(--accent);border-color:var(--accent);color:#fff}.link-booking-view-switch small{display:inline-flex;align-items:center;justify-content:center;min-width:19px;height:19px;margin-left:4px;padding:0 5px;border-radius:999px;background:rgba(255,255,255,.15);font-size:9px}
.link-booking-quota{margin:14px 0;padding:12px 14px;border:1px solid rgba(245,158,11,.28);border-radius:12px;background:rgba(245,158,11,.08)}
.link-booking-quota>div{display:flex;justify-content:space-between;gap:10px;align-items:center}.link-booking-quota strong{font-size:12px;color:#f59e0b}.link-booking-quota span{font-size:10px;color:var(--muted)}
.link-booking-quota i{display:block;height:7px;margin-top:9px;border-radius:999px;background:var(--surface-3);overflow:hidden}.link-booking-quota i b{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,#f59e0b,#ef4444)}
.link-booking-quota.unlimited{border-color:rgba(34,197,94,.28);background:rgba(34,197,94,.08)}.link-booking-quota.unlimited strong{color:#22c55e}.link-booking-quota.unlimited span{display:block;margin-top:3px}
.link-booking-card{display:grid;grid-template-columns:minmax(180px,1.3fr) minmax(130px,.8fr) auto minmax(130px,.7fr);gap:12px;align-items:center;width:100%;padding:13px 14px;border:1px solid var(--line);border-radius:12px;background:var(--surface-2);color:var(--text);text-align:left;cursor:pointer}
.link-booking-card:hover{border-color:var(--accent);transform:translateY(-1px)}
.link-booking-card span strong,.link-booking-card span b{display:block;font-size:12px}
.link-booking-card span small,.link-booking-card time{display:block;margin-top:3px;color:var(--muted);font-size:10px;font-style:normal}
.link-booking-card em{padding:5px 8px;border-radius:999px;background:rgba(245,158,11,.12);color:#f59e0b;font-size:10px;font-weight:800;font-style:normal;text-align:center}
.link-booking-card em[data-status="accepted"]{background:rgba(34,197,94,.12);color:#22c55e}
.link-booking-card em[data-status="refused"]{background:rgba(239,68,68,.12);color:#ef4444}
.link-booking-card em[data-status="progress"]{background:rgba(59,130,246,.12);color:#3b82f6}
.link-booking-card em[data-status="archived"]{background:rgba(107,114,128,.14);color:#9ca3af}
.link-booking-detail-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px}
.link-booking-detail-grid>div{padding:10px;border:1px solid var(--line);border-radius:10px;background:var(--surface-2)}
.link-booking-detail-grid small{display:block;color:var(--muted);font-size:9px;text-transform:uppercase;letter-spacing:.04em}
.link-booking-detail-grid strong{display:block;margin-top:4px;font-size:12px;word-break:break-word}
@media(max-width:900px){
	.link-booking-filters{grid-template-columns:repeat(2,minmax(0,1fr))}
	.link-booking-filters input:first-child{grid-column:1/-1}
	.link-booking-detail-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:620px){
	.landing-link-hero{min-height:420px!important;background-position:62% center!important}
	.landing-link-hero>div:first-child{background:linear-gradient(180deg,rgba(4,4,4,.48) 0%,rgba(4,4,4,.93) 64%,rgba(4,4,4,.98) 100%)!important}
	.landing-link-hero>div:last-child{padding:110px 22px 32px!important}
	.link-performance-kpis{grid-template-columns:1fr}
	.link-management-tabs .button{flex:0 0 auto}
	.link-settings-grid,.link-booking-filters,.link-booking-detail-grid{grid-template-columns:1fr}
	.link-faq-row{grid-template-columns:1fr;align-items:stretch}
	.link-photo-manage-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
	.link-booking-filters input:first-child{grid-column:auto}
	.link-booking-card{grid-template-columns:1fr auto}
	.link-booking-card time{display:none}
	.link-booking-card em{justify-self:end}
	.link-dj-track{grid-template-columns:1fr!important}
}
