:root {
	--emby: #52b54b;
	--emby-dark: #3c8f36;
	--glow: rgba(82, 181, 75, 0.16);
	--glow2: rgba(82, 181, 75, 0.06);
	--bg: #060608;
	--s1: #0a0a0f;
	--s2: #101017;
	--card: #111118;
	--card2: #171720;
	--t1: #f2f4f8;
	--t2: #a3a7b8;
	--t3: #6d7184;
	--hub-font: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
	--hub-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--t1);
}

.wp-site-blocks,
.wp-site-blocks > *,
.wp-block-shortcode {
	margin: 0;
	padding: 0;
}

.emby-hub-site,
.emby-hub-site *,
.emby-hub-site *::before,
.emby-hub-site *::after {
	box-sizing: border-box;
}

.emby-hub-site {
	min-height: 100vh;
	margin: 0;
	background: var(--bg);
	color: var(--t1);
	font-family: var(--hub-font);
	font-size: 16px;
	line-height: 1.5;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

.emby-hub-site h1,
.emby-hub-site h2,
.emby-hub-site h3,
.emby-hub-site p,
.emby-hub-site figure {
	margin: 0;
}

.emby-hub-site a {
	color: inherit;
	text-decoration: none;
}

.emby-hub-site img {
	display: block;
	max-width: 100%;
}

.emby-hub-site button {
	border: 0;
	background: none;
	color: inherit;
	font: inherit;
	cursor: pointer;
}

.emby-hub-site .wrap {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 28px;
}

::-webkit-scrollbar {
	width: 6px;
}

::-webkit-scrollbar-track {
	background: var(--bg);
}

::-webkit-scrollbar-thumb {
	border-radius: 999px;
	background: #20202d;
}

.emby-hub-site .nav {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1000;
	display: flex;
	height: 70px;
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	background: rgba(6, 6, 8, 0.72);
	backdrop-filter: blur(20px) saturate(160%);
	transition: background 0.25s, box-shadow 0.25s;
}

.emby-hub-site .nav.is-scrolled {
	background: rgba(6, 6, 8, 0.92);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.emby-hub-site .nav-inner {
	display: flex;
	width: 100%;
	max-width: 1180px;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin: 0 auto;
	padding: 0 28px;
}

.emby-hub-site .brand,
.emby-hub-site .footer-brand {
	display: flex;
	align-items: center;
	gap: 12px;
}

.emby-hub-site .brand-logo {
	display: flex;
	height: 32px;
	align-items: center;
}

.emby-hub-site .brand-logo img,
.emby-hub-site .footer-brand img {
	width: auto;
	height: 100%;
	object-fit: contain;
}

.emby-hub-site .brand-name {
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.8px;
}

.emby-hub-site .nav-links {
	display: flex;
	align-items: center;
	gap: 6px;
}

.emby-hub-site .nav-links a {
	padding: 10px 14px;
	border-radius: 10px;
	color: var(--t2);
	font-size: 14px;
	font-weight: 600;
	transition: 0.2s;
}

.emby-hub-site .nav-links a:hover {
	background: rgba(255, 255, 255, 0.05);
	color: var(--t1);
}

.emby-hub-site .nav-links .nav-cta {
	padding: 10px 18px;
	background: #fff;
	color: #060608;
	font-weight: 800;
}

.emby-hub-site .nav-links .nav-cta:hover {
	background: #e2e8f0;
	color: #060608;
}

.emby-hub-site .hero {
	position: relative;
	display: flex;
	min-height: 100vh;
	align-items: center;
	padding: 120px 0 72px;
	overflow: hidden;
}

.emby-hub-site .hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.emby-hub-site .orb1 {
	position: absolute;
	top: -180px;
	left: 50%;
	width: 1100px;
	height: 700px;
	transform: translateX(-50%);
	background: radial-gradient(ellipse, var(--glow) 0%, transparent 64%);
}

.emby-hub-site .orb2 {
	position: absolute;
	right: -100px;
	bottom: -120px;
	width: 480px;
	height: 480px;
	background: radial-gradient(circle, var(--glow2) 0%, transparent 62%);
}

.emby-hub-site .grid-mask {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
	background-size: 28px 28px;
	-webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 0%, transparent 100%);
	mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 0%, transparent 100%);
}

.emby-hub-site .hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	align-items: center;
	gap: 42px;
}

.emby-hub-site .badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 24px;
	padding: 7px 14px;
	border: 1px solid rgba(82, 181, 75, 0.24);
	border-radius: 999px;
	background: rgba(82, 181, 75, 0.08);
	color: var(--emby);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.8px;
}

.emby-hub-site .dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--emby);
	box-shadow: 0 0 0 0 rgba(82, 181, 75, 0.45);
	animation: hub-pulse 2.2s infinite;
}

@keyframes hub-pulse {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(82, 181, 75, 0.45);
	}
	60% {
		box-shadow: 0 0 0 8px rgba(82, 181, 75, 0);
	}
}

.emby-hub-site .hero h1 {
	margin-bottom: 20px;
	font-size: clamp(40px, 6vw, 78px);
	font-weight: 950;
	letter-spacing: -2.6px;
	line-height: 1.04;
}

.emby-hub-site .hero h1 .accent {
	color: var(--emby);
}

.emby-hub-site .hero-desc {
	max-width: 620px;
	margin-bottom: 30px;
	color: var(--t2);
	font-size: 17px;
	line-height: 1.85;
}

.emby-hub-site .hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 24px;
}

.emby-hub-site .btn-primary,
.emby-hub-site .btn-secondary {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 0 26px;
	border-radius: 14px;
	font-weight: 800;
	transition: all 0.25s var(--hub-ease);
}

.emby-hub-site .btn-primary {
	background: var(--emby);
	box-shadow: 0 0 36px var(--glow);
	color: #fff;
}

.emby-hub-site .btn-primary:hover {
	transform: translateY(-2px);
	background: var(--emby-dark);
}

.emby-hub-site .btn-secondary {
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.03);
	color: var(--t1);
}

.emby-hub-site .btn-secondary:hover {
	border-color: rgba(82, 181, 75, 0.3);
	background: rgba(82, 181, 75, 0.05);
	color: var(--emby);
}

.emby-hub-site .hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.emby-hub-site .meta-pill {
	padding: 10px 14px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.03);
	color: var(--t2);
	font-size: 13px;
	font-weight: 700;
}

.emby-hub-site .hero-card {
	position: relative;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 28px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
	overflow: hidden;
}

.emby-hub-site .hero-card::before {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top right, rgba(82, 181, 75, 0.12), transparent 40%);
	content: "";
	pointer-events: none;
}

.emby-hub-site .hero-shot {
	position: relative;
	aspect-ratio: 16 / 9;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 20px;
	background: #020203;
	overflow: hidden;
}

.emby-hub-site .carousel-slide {
	position: absolute;
	inset: 0;
	transform: scale(1.015);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 560ms ease, transform 760ms var(--hub-ease), visibility 560ms ease;
}

.emby-hub-site .carousel-slide.is-active {
	z-index: 1;
	transform: scale(1);
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.emby-hub-site .hero-slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.emby-hub-site .carousel-dots {
	display: flex;
	align-items: center;
	gap: 10px;
}

.emby-hub-site .carousel-dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.65);
	border-radius: 50%;
	background: rgba(6, 6, 8, 0.5);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
	transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.emby-hub-site .carousel-dot:hover,
.emby-hub-site .carousel-dot:focus-visible {
	border-color: #fff;
	transform: scale(1.15);
}

.emby-hub-site .carousel-dot.is-active {
	border-color: var(--emby);
	background: var(--emby);
	box-shadow: 0 0 0 4px rgba(82, 181, 75, 0.16);
}

.emby-hub-site .hero-dots {
	position: absolute;
	right: 34px;
	bottom: 34px;
	z-index: 3;
}

.emby-hub-site .section {
	position: relative;
	padding: 96px 0;
}

.emby-hub-site .section::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
	content: "";
}

.emby-hub-site .section-muted,
.emby-hub-site .guide {
	background: var(--s1);
}

.emby-hub-site .section-head {
	margin-bottom: 42px;
}

.emby-hub-site .eyebrow {
	margin-bottom: 14px;
	color: var(--emby);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.emby-hub-site .section h2 {
	margin-bottom: 12px;
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 900;
	letter-spacing: -1.2px;
	line-height: 1.12;
}

.emby-hub-site .section p.lead {
	max-width: 620px;
	color: var(--t2);
	font-size: 16px;
	line-height: 1.8;
}

.emby-hub-site .shots-shell {
	position: relative;
	margin-top: 28px;
}

.emby-hub-site .shots-stage {
	position: relative;
	aspect-ratio: 16 / 9;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 24px;
	background: #020203;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
	overflow: hidden;
}

.emby-hub-site .shot {
	transform: translateX(18px) scale(1.01);
}

.emby-hub-site .shot.is-active {
	transform: translateX(0) scale(1);
}

.emby-hub-site .shot img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.emby-hub-site .shot-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-top: 16px;
}

.emby-hub-site .shot-actions {
	display: flex;
	gap: 10px;
}

.emby-hub-site .shot-btn {
	width: 46px;
	height: 46px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	background: var(--card);
	color: var(--t1);
	transition: 0.2s;
}

.emby-hub-site .shot-btn:hover {
	border-color: rgba(82, 181, 75, 0.28);
	background: var(--card2);
	color: var(--emby);
}

.emby-hub-site .cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-top: 24px;
}

.emby-hub-site .card {
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 24px;
	background: var(--card);
	transition: 0.25s var(--hub-ease);
}

.emby-hub-site .card:hover {
	transform: translateY(-4px);
	border-color: rgba(82, 181, 75, 0.24);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.emby-hub-site .card-ico {
	display: flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	border-radius: 14px;
	background: rgba(82, 181, 75, 0.1);
	color: var(--emby);
	font-size: 20px;
}

.emby-hub-site .card h3 {
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: 900;
	letter-spacing: -0.4px;
}

.emby-hub-site .card p {
	color: var(--t2);
	font-size: 14px;
	line-height: 1.8;
}

.emby-hub-site .guide-grid {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 22px;
	margin-top: 28px;
}

.emby-hub-site .guide-menu {
	position: sticky;
	top: 92px;
	display: flex;
	height: max-content;
	flex-direction: column;
	gap: 10px;
}

.emby-hub-site .gbtn {
	width: 100%;
	padding: 16px 18px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 16px;
	background: var(--card);
	color: var(--t2);
	font-weight: 700;
	text-align: left;
	transition: 0.2s;
}

.emby-hub-site .gbtn:hover {
	background: var(--card2);
	color: var(--t1);
}

.emby-hub-site .gbtn.active {
	border-color: rgba(82, 181, 75, 0.26);
	background: linear-gradient(180deg, rgba(82, 181, 75, 0.1), rgba(255, 255, 255, 0.02));
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
	color: #fff;
}

.emby-hub-site .guide-panel {
	display: none;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 28px;
	background: var(--card);
	overflow: hidden;
}

.emby-hub-site .guide-panel.active {
	display: block;
}

.emby-hub-site .guide-top {
	padding: 28px 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	background: var(--s2);
}

.emby-hub-site .guide-top h3 {
	margin-bottom: 8px;
	font-size: 24px;
	font-weight: 900;
	letter-spacing: -0.6px;
}

.emby-hub-site .guide-top p {
	color: var(--t2);
	line-height: 1.75;
}

.emby-hub-site .guide-body {
	padding: 30px;
}

.emby-hub-site .guide-block + .guide-block {
	margin-top: 24px;
}

.emby-hub-site .guide-label {
	margin-bottom: 12px;
	color: var(--emby);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.emby-hub-site .recommend {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	border: 1px solid rgba(82, 181, 75, 0.18);
	border-radius: 14px;
	background: rgba(82, 181, 75, 0.08);
	color: #fff;
	font-weight: 800;
}

.emby-hub-site .recommend-row {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.emby-hub-site .tutorial-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 16px;
	border: 1px solid rgba(82, 181, 75, 0.18);
	border-radius: 14px;
	background: rgba(82, 181, 75, 0.08);
	color: #fff;
	font-weight: 800;
	transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.emby-hub-site .tutorial-trigger:hover,
.emby-hub-site .tutorial-trigger:focus-visible {
	border-color: rgba(82, 181, 75, 0.5);
	background: rgba(82, 181, 75, 0.16);
	transform: translateY(-1px);
}

.emby-hub-site .tutorial-modal[hidden] {
	display: none;
}

.emby-hub-site .tutorial-modal {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(4, 4, 7, 0.64);
	backdrop-filter: blur(8px);
}

.emby-hub-site .tutorial-player {
	position: relative;
	height: 75vh;
	height: min(75vh, calc(100dvh - 48px));
	max-width: calc(100vw - 48px);
	aspect-ratio: 9 / 16;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 20px;
	background: #000;
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.62);
	overflow: hidden;
}

.emby-hub-site .tutorial-video {
	display: block;
	width: 100%;
	height: 100%;
	background: #000;
	object-fit: contain;
}

.emby-hub-site .tutorial-close {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	display: flex;
	width: 38px;
	height: 38px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	background: rgba(5, 5, 8, 0.78);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.36);
	color: #fff;
	font-size: 26px;
	font-weight: 400;
	line-height: 1;
	backdrop-filter: blur(10px);
	transition: background 0.2s, transform 0.2s;
}

.emby-hub-site .tutorial-close:hover,
.emby-hub-site .tutorial-close:focus-visible {
	background: rgba(82, 181, 75, 0.92);
	transform: scale(1.05);
}

.emby-hub-site .tutorial-play-indicator {
	position: absolute;
	top: 50%;
	left: 50%;
	display: none;
	width: 68px;
	height: 68px;
	align-items: center;
	justify-content: center;
	padding-left: 5px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: rgba(5, 5, 8, 0.68);
	color: #fff;
	font-size: 28px;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

html.tutorial-open,
body.tutorial-open {
	overflow: hidden;
}

.emby-hub-site .guide-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 10px;
}

.emby-hub-site .guide-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	background: var(--s2);
	color: var(--t2);
	font-size: 14px;
	line-height: 1.75;
}

.emby-hub-site .guide-item a {
	color: var(--emby);
	font-weight: 700;
}

.emby-hub-site .guide-num {
	display: flex;
	width: 26px;
	height: 26px;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	margin-top: 1px;
	border: 1px solid rgba(82, 181, 75, 0.2);
	border-radius: 999px;
	background: rgba(82, 181, 75, 0.12);
	color: var(--emby);
	font-size: 12px;
	font-weight: 900;
}

.emby-hub-site .guide-tip {
	margin-top: 14px;
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.03);
	color: var(--t2);
	font-size: 14px;
	line-height: 1.75;
}

.emby-hub-site .support-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 24px;
	padding: 20px;
	border: 1px solid rgba(82, 181, 75, 0.12);
	border-radius: 20px;
	background: rgba(82, 181, 75, 0.04);
}

.emby-hub-site .support-info {
	display: flex;
	align-items: center;
	gap: 12px;
}

.emby-hub-site .support-icon {
	display: flex;
	width: 36px;
	height: 36px;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: rgba(82, 181, 75, 0.12);
	color: var(--emby);
	font-size: 16px;
}

.emby-hub-site .support-title {
	font-size: 14px;
	font-weight: 700;
}

.emby-hub-site .support-copy {
	color: var(--t2);
	font-size: 13px;
}

.emby-hub-site .support-email {
	color: var(--emby);
	font-weight: 800;
	letter-spacing: 0.3px;
}

.emby-hub-site .cta {
	text-align: center;
	overflow: hidden;
}

.emby-hub-site .cta-box {
	position: relative;
	padding: 56px 28px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 30px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
	overflow: hidden;
}

.emby-hub-site .cta-box::before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 760px;
	height: 460px;
	transform: translate(-50%, -50%);
	background: radial-gradient(ellipse, var(--glow) 0%, transparent 68%);
	content: "";
	pointer-events: none;
}

.emby-hub-site .cta-box > * {
	position: relative;
	z-index: 1;
}

.emby-hub-site .cta h2 {
	margin-bottom: 14px;
	font-size: clamp(32px, 4vw, 56px);
	font-weight: 950;
	letter-spacing: -1.5px;
	line-height: 1.08;
}

.emby-hub-site .cta p {
	max-width: 560px;
	margin: 0 auto 28px;
	color: var(--t2);
	line-height: 1.8;
}

.emby-hub-site footer {
	padding: 38px 0 48px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	background: var(--s1);
}

.emby-hub-site .footer-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}

.emby-hub-site .footer-brand {
	color: var(--t2);
	font-size: 14px;
}

.emby-hub-site .footer-brand img {
	height: 28px;
}

.emby-hub-site .footer-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 18px;
}

.emby-hub-site .footer-links a {
	color: var(--t3);
	font-size: 14px;
	font-weight: 600;
	transition: 0.2s;
}

.emby-hub-site .footer-links a:hover {
	color: var(--emby);
}

.emby-hub-site .footer-links .footer-support {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.03);
	color: var(--t2);
	font-size: 13px;
}

.emby-hub-site .footer-links .footer-support:hover {
	border-color: rgba(82, 181, 75, 0.3);
	color: var(--emby);
}

.emby-hub-site .reveal {
	transform: translateY(18px);
	opacity: 0;
	transition: opacity 0.6s var(--hub-ease), transform 0.6s var(--hub-ease);
}

.emby-hub-site .reveal.show {
	transform: translateY(0);
	opacity: 1;
}

@media (max-width: 980px) {
	.emby-hub-site .hero-grid,
	.emby-hub-site .guide-grid,
	.emby-hub-site .cards {
		grid-template-columns: 1fr;
	}

	.emby-hub-site .guide-menu {
		position: static;
		flex-direction: row;
		flex-wrap: wrap;
	}

	.emby-hub-site .gbtn {
		min-width: 140px;
		flex: 1;
	}

}

@media (max-width: 680px), (hover: none) and (pointer: coarse) {
	.emby-hub-site .tutorial-modal {
		padding: 0;
		background: #000;
		backdrop-filter: none;
	}

	.emby-hub-site .tutorial-player {
		width: 100vw;
		height: 100vh;
		height: 100dvh;
		max-width: none;
		border: 0;
		border-radius: 0;
		box-shadow: none;
	}

	.emby-hub-site .tutorial-video {
		touch-action: manipulation;
	}

	.emby-hub-site .tutorial-close {
		display: none;
	}

	.emby-hub-site .tutorial-player.is-paused .tutorial-play-indicator {
		display: flex;
	}
}

@media (max-width: 680px) {
	.emby-hub-site .wrap,
	.emby-hub-site .nav-inner {
		padding-right: 20px;
		padding-left: 20px;
	}

	.emby-hub-site .brand-name {
		font-size: 13px;
	}

	.emby-hub-site .nav-links a:not(.nav-cta) {
		display: none;
	}

	.emby-hub-site .nav-links .nav-cta {
		padding: 9px 13px;
	}

	.emby-hub-site .hero {
		min-height: auto;
		padding: 112px 0 68px;
	}

	.emby-hub-site .hero h1 {
		font-size: 43px;
		letter-spacing: -1.2px;
	}

	.emby-hub-site .hero-desc {
		font-size: 15px;
	}

	.emby-hub-site .hero-actions {
		flex-direction: column;
	}

	.emby-hub-site .btn-primary,
	.emby-hub-site .btn-secondary {
		width: 100%;
	}

	.emby-hub-site .shot-nav {
		align-items: flex-start;
	}

	.emby-hub-site .card,
	.emby-hub-site .guide-body,
	.emby-hub-site .guide-top,
	.emby-hub-site .cta-box {
		padding-right: 20px;
		padding-left: 20px;
	}

	.emby-hub-site .section {
		padding: 78px 0;
	}

	.emby-hub-site .support-box {
		align-items: flex-start;
		flex-direction: column;
	}

	.emby-hub-site .footer-row,
	.emby-hub-site .footer-links {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.emby-hub-site *,
	.emby-hub-site *::before,
	.emby-hub-site *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	.emby-hub-site .reveal {
		transform: none;
		opacity: 1;
	}
}
