:root {
	--vl-bg: #08131f;
	--vl-bg-2: #0b1722;
	--vl-panel: #0b1722;
	--vl-panel-2: #101b27;
	--vl-text: #f8fafc;
	--vl-muted: rgba(203, 213, 225, 0.78);
	--vl-line: rgba(255, 255, 255, 0.1);
	--vl-accent: #67e8f9;
	--vl-accent-2: #a78bfa;
	--vl-hot: #f87171;
	--vl-top: #4ade80;
	--vl-font: "DM Sans", system-ui, sans-serif;
	--vl-display: "Space Grotesk", system-ui, sans-serif;
	--vl-header: 4.2rem;
	--vl-radius: 20px;
	--vl-radius-lg: 28px;
	--vl-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--vl-bg); }
body {
	margin: 0;
	min-height: 100vh;
	background:
		radial-gradient(circle at 78% 22%, rgba(36, 210, 255, 0.14), transparent 32%),
		radial-gradient(circle at 22% 72%, rgba(167, 139, 250, 0.11), transparent 30%),
		var(--vl-bg);
	color: var(--vl-text);
	font-family: var(--vl-font);
	line-height: 1.6;
	font-size: 1rem;
}
img { display: block; max-width: 100%; }
a { color: var(--vl-accent); text-decoration: none; }
a:hover { color: #a5f3fc; }

.vl-skip { position: absolute; left: -9999px; top: 0; z-index: 999; padding: .6rem 1rem; background: var(--vl-accent); color: #06111c; }
.vl-skip:focus { left: 1rem; top: 1rem; }
.vl-wrap { width: min(1120px, calc(100% - 1.5rem)); margin-inline: auto; }
.vl-wrap--wide { width: min(1180px, calc(100% - 1.25rem)); }
.vl-wrap--xl { width: min(1440px, calc(100% - 1rem)); }
.vl-play-top .vl-wrap--xl { width: min(1440px, calc(100% - .75rem)); }

/* Header */
.vl-header {
	position: sticky; top: 0; z-index: 50; height: var(--vl-header);
	border-bottom: 1px solid var(--vl-line);
	background: rgba(8, 19, 31, 0.92); backdrop-filter: blur(18px);
}
.vl-header__inner {
	display: flex; align-items: center; gap: .65rem;
	width: min(1440px, calc(100% - 2rem)); height: 100%; margin-inline: auto;
}
.vl-brand {
	display: inline-flex; align-items: center; gap: .55rem;
	color: var(--vl-text); font-family: var(--vl-display);
	font-weight: 600; flex-shrink: 0; max-width: 12rem;
}
.vl-brand__stack { display: grid; gap: .08rem; line-height: 1.05; }
.vl-brand__name { font-size: .95rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.vl-brand__tag {
	font-size: .58rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
	color: rgba(148, 163, 184, 0.85);
}
.vl-nav { display: flex; gap: .15rem; flex: 1; justify-content: center; flex-wrap: wrap; }
.vl-nav__link {
	padding: .38rem .7rem; border-radius: 999px;
	color: var(--vl-muted); font-size: .84rem; font-weight: 500;
}
.vl-nav__link:hover, .vl-nav__link.is-current { color: var(--vl-text); background: rgba(255,255,255,.06); }
.vl-header__cta {
	padding: .48rem 1rem; border-radius: 999px;
	background: var(--vl-accent); color: #06111c; font-weight: 800; font-size: .82rem; flex-shrink: 0;
}
.vl-header__cta:hover { background: #a5f3fc; color: #06111c; }
.vl-nav-toggle { display: none; width: 2.5rem; height: 2.5rem; border: 1px solid var(--vl-line); border-radius: 10px; background: transparent; }
.vl-nav-toggle span, .vl-nav-toggle span::before, .vl-nav-toggle span::after { display: block; width: 1.1rem; height: 2px; margin: 0 auto; background: var(--vl-text); content: ""; }
.vl-nav-toggle span::before { transform: translateY(-6px); }
.vl-nav-toggle span::after { transform: translateY(4px); }
.vl-drawer { padding: 1rem; background: var(--vl-panel); border-bottom: 1px solid var(--vl-line); }
.vl-drawer[hidden] { display: none; }
.vl-drawer nav { display: grid; gap: .5rem; }
.vl-drawer a { color: var(--vl-text); }

/* Shared UI */
.vl-kicker {
	display: inline-flex; align-items: center; gap: .45rem;
	margin: 0; color: var(--vl-muted);
	font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}
.vl-kicker--compact { font-size: .66rem; }
.vl-kicker__dot {
	width: .45rem; height: .45rem; border-radius: 999px;
	background: #4ade80; box-shadow: 0 0 12px rgba(74, 222, 128, 0.65);
}
.vl-btn {
	display: inline-flex; align-items: center; justify-content: center;
	padding: .72rem 1.35rem; border: 0; border-radius: 999px;
	font: inherit; font-weight: 800; font-size: .88rem; cursor: pointer;
}
.vl-btn--play { background: var(--vl-accent); color: #06111c; }
.vl-btn--play:hover { transform: translateY(-1px); background: #a5f3fc; color: #06111c; }
.vl-btn--launch {
	min-width: 240px; padding: 1.05rem 2.75rem;
	font-size: clamp(1.05rem, 2.4vw, 1.35rem);
	background: linear-gradient(135deg, #818cf8, #a78bfa);
	box-shadow: 0 16px 40px rgba(129, 140, 248, 0.38);
}
.vl-btn--launch:hover { background: linear-gradient(135deg, #a5b4fc, #c4b5fd); color: #06111c; }
.vl-btn--link { text-decoration: none; transition: transform .15s, background .15s; }
.vl-btn--ghost {
	background: transparent; border: 1px solid var(--vl-line);
	color: var(--vl-text); text-decoration: none;
}
.vl-btn--ghost:hover { color: var(--vl-text); background: rgba(255,255,255,.05); border-color: rgba(103,232,249,.25); }
.vl-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .85rem 1rem; margin-bottom: 1.75rem; }
.vl-text-link { display: inline-flex; align-items: center; gap: .35rem; font-size: .88rem; font-weight: 700; color: var(--vl-accent); }
.vl-text-link:hover { color: #a5f3fc; }
.vl-text-link--cta { font-size: .92rem; }

.vl-block--videos { padding-top: 2.5rem; }
.vl-block { padding: 2.75rem 0; border-top: 1px solid var(--vl-line); }
.vl-block__title {
	margin: .75rem 0 0; font-family: var(--vl-display);
	font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: .95; letter-spacing: .02em;
}
.vl-block__lead { margin: 1rem 0 0; max-width: 28rem; color: var(--vl-muted); line-height: 1.65; }
.vl-block__head {
	display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem;
	margin-bottom: 1.5rem;
}
.vl-block__meta { color: var(--vl-muted); font-size: .85rem; font-weight: 600; }

/* Hero band */
.vl-hero-band {
	position: relative; overflow: hidden;
	border-bottom: 1px solid var(--vl-line);
}
.vl-hero-band__glow {
	position: absolute; inset: 0; pointer-events: none;
	background:
		radial-gradient(circle at 78% 22%, rgba(36, 210, 255, 0.14), transparent 32%),
		radial-gradient(circle at 22% 72%, rgba(167, 139, 250, 0.11), transparent 30%);
}
.vl-hero-band__grid {
	position: relative; z-index: 1;
	display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
	gap: 2.5rem; align-items: center;
	min-height: min(670px, calc(100vh - var(--vl-header) - 2rem));
	padding: 3.5rem 0 3rem;
}
.vl-hero-band__title {
	margin: 1.25rem 0 0; max-width: 12ch;
	font-family: var(--vl-display);
	font-size: clamp(4rem, 12vw, 8.5rem);
	line-height: .82; letter-spacing: .015em;
	color: var(--vl-accent);
}
.vl-hero-showcase {
	position: relative; overflow: hidden;
	border-radius: var(--vl-radius-lg);
	border: 1px solid var(--vl-line);
	background: linear-gradient(160deg, #0b1722 0%, #02060a 100%);
	box-shadow: var(--vl-shadow);
	aspect-ratio: 16 / 11;
	min-height: 320px;
}
.vl-hero-showcase__art {
	width: 100%; height: 100%; object-fit: cover;
	filter: saturate(1.05) contrast(1.02);
}
.vl-hero-showcase__hud {
	position: absolute; left: 1rem; right: 1rem; bottom: 1rem;
	display: flex; align-items: center; gap: .65rem;
	padding: .65rem .85rem; border-radius: 14px;
	border: 1px solid rgba(255,255,255,.12);
	background: rgba(2, 6, 10, .78); backdrop-filter: blur(8px);
}
.vl-hero-showcase__mic {
	width: 2rem; height: 2rem; display: grid; place-items: center;
	border-radius: 999px; background: rgba(248, 113, 113, .18);
	font-size: .95rem;
}
.vl-hero-showcase__bars {
	flex: 1; height: 1.35rem;
	background:
		repeating-linear-gradient(90deg, rgba(103,232,249,.15) 0 3px, transparent 3px 7px),
		linear-gradient(90deg, rgba(103,232,249,.55), rgba(167,139,250,.45));
	background-size: auto 100%, 100% 100%;
	border-radius: 999px; opacity: .85;
}
.vl-hero-showcase__label {
	font-size: .62rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
	color: rgba(148, 163, 184, 0.9); white-space: nowrap;
}

/* Play-first home */
.vl-play-top {
	padding: 1.25rem 0 1.75rem;
	border-bottom: 1px solid var(--vl-line);
}
.vl-play-top__head { margin-bottom: 1rem; }
.vl-play-top__title {
	margin: .35rem 0 0; font-family: var(--vl-display);
	font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; line-height: 1.05;
}
.vl-play-top__hint { margin: .55rem 0 0; max-width: 42rem; color: var(--vl-muted); font-size: .95rem; line-height: 1.55; }

.vl-player-shell {
	width: 100%; padding: .85rem;
	border-radius: var(--vl-radius-lg);
	background: var(--vl-panel); border: 1px solid rgba(103, 232, 249, 0.22);
	box-shadow: var(--vl-shadow);
}
.vl-player-shell__toolbar {
	display: flex; flex-wrap: wrap; align-items: center; gap: .55rem .85rem;
	margin-bottom: .75rem; padding-bottom: .65rem; border-bottom: 1px solid var(--vl-line);
}
.vl-player-shell__badge {
	padding: .28rem .65rem; border-radius: 999px;
	border: 1px solid rgba(103, 232, 249, 0.25);
	font-size: .62rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
	color: var(--vl-accent);
}
.vl-player-shell__status {
	flex: 1; min-width: 8rem;
	font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
	color: rgba(148, 163, 184, 0.85);
}
.vl-player-shell__open {
	padding: .42rem .85rem; border-radius: 999px;
	background: var(--vl-accent); color: #06111c;
	font-size: .78rem; font-weight: 800;
}
.vl-player-shell__open:hover { background: #a5f3fc; color: #06111c; }
.vl-player-shell__note {
	margin: .65rem 0 0; text-align: center;
	font-size: .76rem; color: rgba(148, 163, 184, 0.85);
}
.vl-player-shell .vl-player__note { display: none; }

.vl-player--full { width: 100%; }
.vl-player--full .vl-player__stage {
	min-height: clamp(380px, 62vw, 680px);
	border-radius: calc(var(--vl-radius) + 2px);
	border-color: rgba(103, 232, 249, 0.28);
}
.vl-player--full .vl-player__ready {
	max-width: none; padding: 1.5rem;
}
.vl-player--full .vl-player__ready-logo {
	width: clamp(96px, 14vw, 140px); height: auto; margin: 0 auto 1rem;
	border-radius: 12px; border: 1px solid var(--vl-line);
}
.vl-player--full .vl-player__ready-title {
	margin: 0 0 1.25rem; font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.vl-player-card {
	padding: 1.15rem; border-radius: var(--vl-radius-lg);
	background: var(--vl-panel); border: 1px solid var(--vl-line);
	box-shadow: var(--vl-shadow);
}
.vl-player-card__head { margin-bottom: .85rem; }
.vl-player-card__title {
	margin: .45rem 0 0; font-family: var(--vl-display);
	font-size: 1.15rem; font-weight: 700;
}
.vl-player-card__hint { margin: .35rem 0 0; color: var(--vl-muted); font-size: .78rem; }

/* Player */
.vl-player__stage {
	position: relative; border-radius: var(--vl-radius); overflow: hidden;
	background: #02060a; min-height: clamp(280px, 42vw, 420px);
	border: 1px solid var(--vl-line);
}
.vl-player__frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vl-player__launch { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,.58); }
.vl-player.is-playing .vl-player__launch { display: none; }
.vl-player__poster { position: absolute; inset: 0; background-size: cover; background-position: center; filter: blur(3px) brightness(.45); }
.vl-player__poster-img { display: none; }
.vl-player__ready { position: relative; z-index: 2; text-align: center; padding: 1rem; max-width: 360px; }
.vl-player__ready-title { margin: 0 0 .75rem; font-family: var(--vl-display); font-size: 1.35rem; font-weight: 700; }
.vl-player__bar {
	display: flex; align-items: center; justify-content: space-between; gap: .5rem;
	padding: .55rem .75rem; background: rgba(0,0,0,.35);
	border: 1px solid var(--vl-line); border-top: 0;
	border-radius: 0 0 var(--vl-radius) var(--vl-radius);
}
.vl-player__label { font-weight: 600; font-size: .86rem; }
.vl-player__tools { display: flex; gap: .35rem; }
.vl-tool {
	padding: .32rem .6rem; border: 1px solid var(--vl-line); border-radius: 8px;
	background: rgba(255,255,255,.04); color: var(--vl-text); font: inherit; font-size: .76rem; cursor: pointer;
}
.vl-player__note { margin: .45rem 0 0; color: var(--vl-muted); font-size: .72rem; text-align: center; }
.vl-player.is-theater .vl-player__stage { min-height: min(78vh, 720px); }
body.vl-theater-on { overflow: hidden; }

/* YouTube embeds */
.vl-youtube {
	position: relative; overflow: hidden;
	border-radius: var(--vl-radius);
	background: #000; border: 1px solid var(--vl-line);
	aspect-ratio: 16 / 9;
}
.vl-youtube iframe {
	position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.vl-youtube-grid {
	display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem;
}
.vl-youtube-card {
	border-radius: var(--vl-radius-lg);
	background: rgba(255,255,255,.025); border: 1px solid var(--vl-line);
	overflow: hidden;
}
.vl-youtube-card__body { padding: 1rem 1.15rem 1.15rem; }
.vl-youtube-card h3 { margin: 0 0 .35rem; font-size: 1rem; font-weight: 700; line-height: 1.3; }
.vl-youtube-card p { margin: 0 0 .65rem; color: var(--vl-muted); font-size: .86rem; line-height: 1.45; }

/* Compact steps */
.vl-steps-band {
	display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
	gap: 1.5rem; align-items: start;
}
.vl-steps-compact {
	display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .75rem;
}
.vl-steps-compact__item {
	padding: 1rem .9rem; border-radius: var(--vl-radius);
	background: rgba(255,255,255,.035); border: 1px solid var(--vl-line);
}
.vl-steps-compact__num {
	display: inline-block; margin-bottom: .45rem;
	font-family: var(--vl-display); font-size: .72rem; font-weight: 700; color: var(--vl-accent);
}
.vl-steps-compact__item h3 { margin: 0 0 .25rem; font-size: .92rem; font-weight: 700; }
.vl-steps-compact__item p { margin: 0; color: var(--vl-muted); font-size: .8rem; line-height: 1.4; }

/* About split with image */
.vl-about-split {
	display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
	gap: 1.5rem; align-items: center;
	padding: 1.5rem; border-radius: var(--vl-radius-lg);
	background: rgba(255,255,255,.025); border: 1px solid var(--vl-line);
}
.vl-about-split__media {
	overflow: hidden; border-radius: var(--vl-radius);
	border: 1px solid var(--vl-line);
}
.vl-about-split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 10; }
.vl-about-split__copy p { margin: .75rem 0 0; color: var(--vl-muted); font-size: .95rem; line-height: 1.55; }
.vl-feature-grid--compact { margin-top: 1rem; gap: .55rem; }
.vl-feature-grid--compact .vl-feature-grid__item { padding: .75rem .85rem; }
.vl-feature-grid--compact .vl-feature-grid__item h3 { font-size: .82rem; margin-bottom: .2rem; }
.vl-feature-grid--compact .vl-feature-grid__item p { font-size: .78rem; }

/* Steps split */
.vl-split {
	display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
	gap: 2rem; align-items: start;
}
.vl-split__intro { position: sticky; top: calc(var(--vl-header) + 1.5rem); }
.vl-steps-list {
	display: grid; gap: .85rem; margin: 0; padding: 0; list-style: none;
}
.vl-steps-list__item {
	display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 1rem;
	padding: 1.15rem 1.2rem; border-radius: var(--vl-radius);
	background: rgba(255,255,255,.035); border: 1px solid var(--vl-line);
}
.vl-steps-list__num {
	font-family: var(--vl-display); font-size: .78rem; font-weight: 700;
	color: var(--vl-accent); letter-spacing: .06em;
}
.vl-steps-list__item h3 { margin: 0 0 .3rem; font-size: 1rem; font-weight: 700; }
.vl-steps-list__item p { margin: 0; color: var(--vl-muted); font-size: .88rem; line-height: 1.5; }

/* Guide desk */
.vl-guide-desk {
	display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem;
}
.vl-guide-desk__card {
	display: block; height: 100%; color: var(--vl-text);
}
.vl-guide-desk__card article {
	display: flex; flex-direction: column; height: 100%;
	padding: 1.25rem 1.35rem; border-radius: var(--vl-radius);
	background: rgba(255,255,255,.035); border: 1px solid var(--vl-line);
	transition: transform .2s, border-color .2s, background .2s;
}
.vl-guide-desk__card:hover article {
	transform: translateY(-3px); border-color: rgba(103,232,249,.25); background: rgba(255,255,255,.055); color: var(--vl-text);
}
.vl-guide-desk__top {
	display: flex; align-items: flex-start; justify-content: space-between; gap: .75rem;
	margin-bottom: 1.75rem;
}
.vl-guide-desk__tag {
	padding: .25rem .7rem; border-radius: 999px;
	border: 1px solid rgba(196, 181, 253, 0.2); background: rgba(196, 181, 253, 0.1);
	font-family: ui-monospace, monospace; font-size: .62rem; font-weight: 700;
	letter-spacing: .16em; text-transform: uppercase; color: #ddd6fe;
}
.vl-guide-desk__arrow { color: rgba(148, 163, 184, 0.7); transition: transform .2s, color .2s; }
.vl-guide-desk__card:hover .vl-guide-desk__arrow { transform: translateX(3px); color: var(--vl-accent); }
.vl-guide-desk__card h3 {
	margin: 0; font-family: var(--vl-display);
	font-size: clamp(1.35rem, 2vw, 1.75rem); line-height: .98; letter-spacing: .02em;
}
.vl-guide-desk__card p {
	flex: 1; margin: .85rem 0 0; color: var(--vl-muted); font-size: .88rem; line-height: 1.55;
}
.vl-guide-desk__meta {
	display: flex; flex-wrap: wrap; gap: .75rem 1rem;
	margin-top: 1.25rem; padding-top: .85rem; border-top: 1px solid var(--vl-line);
	font-size: .75rem; color: rgba(148, 163, 184, 0.85);
}

/* About panel */
.vl-about-panel {
	padding: 2rem; border-radius: var(--vl-radius-lg);
	background: rgba(255,255,255,.025); border: 1px solid var(--vl-line);
}
.vl-about-panel__text {
	margin: 1rem 0 0; max-width: 42rem; color: rgba(203, 213, 225, 0.92);
	font-size: 1rem; line-height: 1.75;
}
.vl-feature-grid {
	display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem;
	margin-top: 1.75rem;
}
.vl-feature-grid__item {
	padding: 1rem; border-radius: 16px;
	background: rgba(0,0,0,.15); border: 1px solid var(--vl-line);
}
.vl-feature-grid__item h3 { margin: 0 0 .35rem; font-size: .92rem; font-weight: 700; color: var(--vl-accent); }
.vl-feature-grid__item p { margin: 0; color: var(--vl-muted); font-size: .84rem; line-height: 1.45; }

/* Video cards */
.vl-video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.vl-video-card {
	display: grid; grid-template-columns: 140px minmax(0, 1fr); gap: 1rem;
	padding: 1rem; border-radius: var(--vl-radius);
	background: rgba(255,255,255,.035); border: 1px solid var(--vl-line);
	color: var(--vl-text); transition: border-color .2s, transform .2s;
}
.vl-video-card:hover { border-color: rgba(103,232,249,.25); transform: translateY(-2px); color: var(--vl-text); }
.vl-video-card__thumb {
	display: grid; place-items: center; border-radius: 14px;
	background: var(--vl-panel-2); aspect-ratio: 16 / 10;
}
.vl-video-card__thumb span {
	width: 2.25rem; height: 2.25rem; display: grid; place-items: center;
	border-radius: 999px; border: 1px solid var(--vl-line);
	background: rgba(0,0,0,.55); font-size: .75rem;
}
.vl-video-card h3 { margin: 0 0 .35rem; font-size: 1rem; font-weight: 700; }
.vl-video-card p { margin: 0; color: var(--vl-muted); font-size: .86rem; line-height: 1.45; }

/* FAQ stack */
.vl-faq-stack { display: grid; gap: .65rem; max-width: 52rem; margin-top: 1.5rem; }
.vl-faq-item {
	border-radius: var(--vl-radius); background: rgba(255,255,255,.035); border: 1px solid var(--vl-line);
	overflow: hidden;
}
.vl-faq-item__trigger {
	display: flex; align-items: center; justify-content: space-between; gap: 1rem;
	width: 100%; padding: 1rem 1.15rem; border: 0; background: transparent;
	color: var(--vl-text); font: inherit; font-size: .92rem; font-weight: 600;
	text-align: left; cursor: pointer;
}
.vl-faq-item__icon {
	width: 1.25rem; height: 1.25rem; position: relative; flex-shrink: 0;
}
.vl-faq-item__icon::before,
.vl-faq-item__icon::after {
	position: absolute; inset: 0; margin: auto; width: .85rem; height: 2px;
	background: var(--vl-muted); content: ""; transition: transform .2s;
}
.vl-faq-item__icon::after { transform: rotate(90deg); }
.vl-faq-item__trigger[aria-expanded="true"] .vl-faq-item__icon::after { transform: rotate(0deg); opacity: 0; }
.vl-faq-item__panel { padding: 0 1.15rem 1rem; }
.vl-faq-item__panel[hidden] { display: none; }
.vl-faq-item__panel p { margin: 0; color: var(--vl-muted); font-size: .88rem; line-height: 1.55; }

/* Tips */
.vl-tips-panel {
	display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: 2rem;
	padding: 2rem; border-radius: var(--vl-radius-lg);
	background: rgba(255,255,255,.025); border: 1px solid var(--vl-line);
}
.vl-tips-list {
	margin: 0; padding: 0; list-style: none;
	display: grid; gap: .75rem;
}
.vl-tips-list li {
	position: relative; padding-left: 1.1rem; color: var(--vl-muted); font-size: .9rem; line-height: 1.5;
}
.vl-tips-list li::before {
	position: absolute; left: 0; top: .55rem; width: .35rem; height: .35rem;
	border-radius: 999px; background: var(--vl-accent); content: "";
}

/* Game tiles */
.vl-game-tiles {
	display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem;
}
.vl-game-tile { display: block; height: 100%; color: var(--vl-text); }
.vl-game-tile article {
	height: 100%; overflow: hidden; border-radius: 18px;
	background: rgba(255,255,255,.035); border: 1px solid var(--vl-line);
	transition: transform .2s, border-color .2s, background .2s;
}
.vl-game-tile:hover article { transform: translateY(-3px); border-color: rgba(103,232,249,.25); background: rgba(255,255,255,.055); color: var(--vl-text); }
.vl-game-tile__media {
	position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--vl-panel-2);
}
.vl-game-tile__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.vl-game-tile:hover .vl-game-tile__media img { transform: scale(1.04); }
.vl-game-tile__play {
	position: absolute; right: .75rem; top: .75rem;
	width: 2.2rem; height: 2.2rem; display: grid; place-items: center;
	border-radius: 999px; border: 1px solid rgba(255,255,255,.2);
	background: rgba(0,0,0,.55); font-size: .72rem;
}
.vl-game-tile__badge {
	position: absolute; left: .75rem; top: .75rem;
	padding: .15rem .45rem; border-radius: 4px;
	font-size: .58rem; font-weight: 800; text-transform: uppercase;
}
.badge-hot .vl-game-tile__badge, .vl-game-tile__badge.badge-hot { background: var(--vl-hot); color: #fff; }
.badge-top .vl-game-tile__badge, .vl-game-tile__badge.badge-top { background: var(--vl-top); color: #052e16; }
.badge-trending .vl-game-tile__badge, .vl-game-tile__badge.badge-trending { background: #fbbf24; color: #111; }
.vl-game-tile__body { padding: .95rem 1rem 1.1rem; }
.vl-game-tile__body h3 { margin: 0 0 .35rem; font-size: .98rem; font-weight: 700; }
.vl-game-tile__body p { margin: 0; color: var(--vl-muted); font-size: .82rem; line-height: 1.45; }

/* Legacy game cards (inner pages) */
.vl-game-card {
	position: relative; display: flex; flex-direction: column; align-items: center; gap: .3rem;
	padding: .45rem; border-radius: 12px;
	background: var(--vl-panel); border: 1px solid var(--vl-line);
	color: var(--vl-text); text-align: center; transition: border-color .15s, transform .15s;
}
.vl-game-card:hover { border-color: rgba(103,232,249,.4); transform: translateY(-2px); }
.vl-game-card.is-active { border-color: var(--vl-accent); }
.vl-game-card img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 10px; }
.vl-game-card__name { font-size: .68rem; line-height: 1.25; font-weight: 600; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.vl-game-card__badge { position: absolute; top: .4rem; left: .4rem; padding: .1rem .35rem; border-radius: 4px; font-size: .55rem; font-weight: 800; text-transform: uppercase; z-index: 1; }
.badge-hot .vl-game-card__badge { background: var(--vl-hot); color: #fff; }
.badge-top .vl-game-card__badge { background: var(--vl-top); color: #052e16; }
.badge-trending .vl-game-card__badge { background: #fbbf24; color: #111; }

/* Game inner page portal */
.vl-hero { padding: 1rem 0; }
.vl-portal { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 1rem; align-items: start; }
.vl-sidebar {
	background: var(--vl-panel); border: 1px solid var(--vl-line);
	border-radius: var(--vl-radius); padding: .75rem;
	max-height: calc(100vh - var(--vl-header) - 2rem); overflow: auto;
}
.vl-sidebar__title { margin: 0 0 .55rem; font-family: var(--vl-display); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--vl-accent); }
.vl-sidebar__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .45rem; }
.vl-hero__title { margin: 0 0 .65rem; font-family: var(--vl-display); font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 700; }
.vl-crumb { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: .75rem; font-size: .82rem; color: var(--vl-muted); }
.vl-crumb a { color: var(--vl-muted); }
.vl-lead { color: var(--vl-muted); margin: .5rem 0 0; font-size: .92rem; }

.vl-embed__stage { position: relative; padding-top: 56.25%; background: #000; border-radius: var(--vl-radius); overflow: hidden; }
.vl-embed__stage iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vl-embed__bar { display: flex; justify-content: space-between; align-items: center; padding: .5rem 0; }

.vl-main--page { padding: 2rem 0 3rem; }
.vl-main--page .vl-wrap--wide { width: min(980px, calc(100% - 1.25rem)); }
.vl-article__title {
	margin: 0 0 1rem; font-family: var(--vl-display);
	font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; line-height: 1.05;
}
.vl-article__content { color: var(--vl-muted); font-size: .96rem; line-height: 1.65; }
.vl-article__content h2 {
	margin: 2rem 0 .65rem; color: var(--vl-text);
	font-family: var(--vl-display); font-size: 1.25rem; font-weight: 700;
}
.vl-article__content h3 { margin: 1.25rem 0 .45rem; color: var(--vl-text); font-size: 1rem; font-weight: 700; }
.vl-article__content p { margin: 0 0 .85rem; }
.vl-article__content ul, .vl-article__content ol { margin: 0 0 1rem; padding-left: 1.25rem; }
.vl-article__content li { margin-bottom: .35rem; }
.vl-article__content a { color: var(--vl-accent); font-weight: 600; }
.vl-article__content .vl-lead { font-size: 1.05rem; color: rgba(203, 213, 225, 0.92); }
.vl-inline-cta { display: flex; flex-wrap: wrap; align-items: center; gap: .85rem 1rem; margin: 1rem 0 1.5rem; }
.vl-youtube-grid--page { margin: 1.25rem 0 1.75rem; }

.vl-guide-layout {
	display: grid; grid-template-columns: 200px minmax(0, 1fr); gap: 1.5rem; align-items: start;
}
.vl-guide-nav {
	position: sticky; top: calc(var(--vl-header) + 1rem);
	padding: 1rem; border-radius: var(--vl-radius);
	background: var(--vl-panel); border: 1px solid var(--vl-line);
}
.vl-guide-nav__title {
	margin: 0 0 .65rem; font-size: .68rem; font-weight: 800;
	letter-spacing: .14em; text-transform: uppercase; color: var(--vl-accent);
}
.vl-guide-nav__link {
	display: block; padding: .45rem .55rem; border-radius: 8px;
	color: var(--vl-muted); font-size: .86rem; font-weight: 600;
}
.vl-guide-nav__link:hover, .vl-guide-nav__link.is-current {
	color: var(--vl-text); background: rgba(255,255,255,.06);
}

.vl-main--simple .vl-wrap { padding: 2rem 0 3rem; }
.vl-article__title { font-family: var(--vl-display); margin-top: 0; }
.vl-article__content h2 { margin-top: 1.5rem; }

.vl-footer { margin-top: 0; border-top: 1px solid var(--vl-line); background: rgba(0,0,0,.28); padding: 2rem 0; }
.vl-footer__inner { width: min(1440px, calc(100% - 2rem)); margin-inline: auto; }
.vl-footer__title { font-family: var(--vl-display); font-weight: 700; margin: 0; font-size: .95rem; }
.vl-footer__note { color: var(--vl-muted); font-size: .82rem; }
.vl-footer__list { display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; list-style: none; padding: 0; margin: 1rem 0; }
.vl-footer__list a { color: var(--vl-muted); font-size: .88rem; }
.vl-footer__bar { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem; padding-top: 1rem; border-top: 1px solid var(--vl-line); font-size: .8rem; color: var(--vl-muted); }
.vl-footer__legal { display: flex; gap: 1rem; list-style: none; padding: 0; margin: 0; }
.vl-top { position: fixed; right: 1rem; bottom: 1rem; width: 2.5rem; height: 2.5rem; border: 0; border-radius: 999px; background: var(--vl-accent); color: #06111c; opacity: 0; pointer-events: none; transition: opacity .2s; cursor: pointer; z-index: 40; }
.vl-top.is-visible { opacity: 1; pointer-events: auto; }

@media (max-width: 1100px) {
	.vl-nav { display: none; }
	.vl-nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
	.vl-hero-band__grid { grid-template-columns: 1fr; min-height: auto; padding: 2rem 0 1.5rem; }
	.vl-hero-band__visual { max-width: 520px; margin-inline: auto; width: 100%; }
	.vl-split { grid-template-columns: 1fr; }
	.vl-split__intro { position: static; }
	.vl-youtube-grid { grid-template-columns: 1fr; }
	.vl-steps-band { grid-template-columns: 1fr; }
	.vl-steps-compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.vl-about-split { grid-template-columns: 1fr; }
	.vl-tips-panel { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
	.vl-player-shell__toolbar { flex-direction: column; align-items: stretch; }
	.vl-player-shell__status { text-align: center; }
	.vl-player-shell__open { text-align: center; }
	.vl-player--full .vl-player__stage { min-height: clamp(300px, 68vw, 420px); }
	.vl-steps-compact { grid-template-columns: 1fr; }
	.vl-guide-desk { grid-template-columns: 1fr; }
	.vl-video-grid { grid-template-columns: 1fr; }
	.vl-video-card { grid-template-columns: 1fr; }
	.vl-feature-grid { grid-template-columns: 1fr; }
	.vl-guide-layout { grid-template-columns: 1fr; }
	.vl-guide-nav { position: static; display: flex; flex-wrap: wrap; gap: .35rem; }
	.vl-guide-nav__title { width: 100%; }
	.vl-guide-nav__link { padding: .35rem .65rem; }
	.vl-portal { display: flex; flex-direction: column; gap: .85rem; }
	.vl-portal__main { order: 1; }
	.vl-sidebar { order: 2; max-height: none; }
	.vl-sidebar__grid { display: flex; flex-wrap: nowrap; overflow-x: auto; gap: .5rem; padding-bottom: .25rem; -webkit-overflow-scrolling: touch; }
	.vl-sidebar .vl-game-card { flex: 0 0 5.5rem; width: 5.5rem; }
	.vl-player__stage { min-height: clamp(240px, 52vw, 380px); }
}

@media (max-width: 640px) {
	.vl-header__cta { display: none; }
	.vl-brand { max-width: 10rem; }
	.vl-play-top { padding: .85rem 0 1.25rem; }
	.vl-play-top .vl-wrap--xl { width: calc(100% - .5rem); }
	.vl-player-shell { padding: .65rem; border-radius: 18px; }
	.vl-game-tiles { grid-template-columns: 1fr; }
}
