/* =========================================================
   LXtream Modern Theme – Main Stylesheet
   Brand colors kept from the original lxtream.com:
     - Primary gold:  #f7b551
     - Soft blue:     #6fa6d4
     - Accent red:    #ed1c24
     - Deep navy:     #0f1a2c
     - Cream:         #fff5e1
   ========================================================= */

:root {
	--lx-primary: #f7b551;
	--lx-primary-dark: #e09f33;
	--lx-primary-light: #ffd57a;
	--lx-secondary: #6fa6d4;
	--lx-secondary-dark: #3f7eb0;
	--lx-accent: #ed1c24;
	--lx-dark: #0f1a2c;
	--lx-dark-2: #1a2540;
	--lx-cream: #fff5e1;
	--lx-bg: #f6f8fc;
	--lx-text: #1f2937;
	--lx-muted: #6b7280;
	--lx-border: #e5e7eb;
	--lx-white: #ffffff;

	--lx-radius: 14px;
	--lx-radius-lg: 22px;
	--lx-shadow-sm: 0 4px 12px rgba(15, 26, 44, 0.06);
	--lx-shadow: 0 10px 30px rgba(15, 26, 44, 0.08);
	--lx-shadow-lg: 0 24px 60px rgba(15, 26, 44, 0.14);

	--lx-gradient: linear-gradient(135deg, #f7b551 0%, #ffcd75 50%, #6fa6d4 100%);
	--lx-gradient-dark: linear-gradient(135deg, #0f1a2c 0%, #1a2540 60%, #2c3e6a 100%);
	--lx-gradient-warm: linear-gradient(135deg, #f7b551 0%, #ed8f24 100%);
	--lx-gradient-cool: linear-gradient(135deg, #6fa6d4 0%, #3f7eb0 100%);

	--lx-font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	--lx-display: 'Poppins', var(--lx-font);
}

/* ----------  Reset / base  ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--lx-font);
	font-size: 16px;
	line-height: 1.6;
	color: var(--lx-text);
	background: var(--lx-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--lx-secondary-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--lx-primary-dark); }
h1, h2, h3, h4, h5, h6 {
	font-family: var(--lx-display);
	color: var(--lx-dark);
	line-height: 1.2;
	margin: 0 0 .6em;
	font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.2em; }

.container {
	width: 100%;
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: 20px;
}
.container-sm { max-width: 820px; }
.container-lg { max-width: 1320px; }

.section { padding: 90px 0; position: relative; }
.section-sm { padding: 60px 0; }
.section-tight { padding: 40px 0; }

.eyebrow {
	display: inline-block;
	font-family: var(--lx-font);
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--lx-primary-dark);
	background: rgba(247, 181, 81, .14);
	padding: 8px 14px;
	border-radius: 999px;
	margin-bottom: 18px;
}
.eyebrow.is-blue { color: var(--lx-secondary-dark); background: rgba(111, 166, 212, .15); }
.eyebrow.is-red  { color: var(--lx-accent);         background: rgba(237, 28, 36, .12); }

.section-title { margin-bottom: 14px; }
.section-subtitle { color: var(--lx-muted); max-width: 720px; margin: 0 auto 50px; font-size: 1.05rem; }
.text-center { text-align: center; }

/* ----------  Buttons  ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 26px;
	border-radius: 999px;
	font-weight: 700;
	font-size: .95rem;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	border: 2px solid transparent;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
	line-height: 1;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--lx-shadow); }
.btn-primary  { background: var(--lx-gradient-warm); color: #fff; }
.btn-primary:hover { color: #fff; }
.btn-secondary { background: var(--lx-dark); color: #fff; }
.btn-secondary:hover { color: #fff; background: var(--lx-dark-2); }
.btn-ghost    { background: transparent; color: var(--lx-dark); border-color: var(--lx-border); }
.btn-ghost:hover { border-color: var(--lx-primary); color: var(--lx-primary-dark); }
.btn-outline  { background: transparent; color: var(--lx-primary-dark); border-color: var(--lx-primary); }
.btn-outline:hover { background: var(--lx-primary); color: #fff; }
.btn-sm { padding: 10px 18px; font-size: .82rem; }
.btn-lg { padding: 18px 32px; font-size: 1rem; }

/* ----------  Header  ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, .92);
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid rgba(15, 26, 44, .06);
}
.header-bar {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 20px;
	min-height: 78px;
}
.mobile-nav-head,
.mobile-nav-cart { display: none; }
.nav-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .55);
	z-index: 199;
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s ease, visibility .3s ease;
}
.nav-backdrop.is-visible {
	opacity: 1;
	visibility: visible;
}
body.nav-open { overflow: hidden; }
.site-branding { display: flex; align-items: center; gap: 12px; min-width: 0; }
.site-branding a { display: flex; align-items: center; gap: 12px; color: var(--lx-dark); }
.site-branding img { max-height: 54px; width: auto; }
.site-title {
	font-family: var(--lx-display);
	font-weight: 800;
	font-size: 1.35rem;
	letter-spacing: .02em;
	color: var(--lx-dark);
	margin: 0;
	line-height: 1;
}
.site-title .accent { color: var(--lx-primary-dark); }

.primary-nav { display: flex; align-items: center; justify-content: center; min-width: 0; }
.primary-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 4px;
	align-items: center;
}
.primary-menu li a {
	display: inline-block;
	padding: 10px 12px;
	font-size: .78rem;
	font-weight: 700;
	color: var(--lx-dark);
	text-transform: uppercase;
	letter-spacing: .06em;
	border-radius: 10px;
	transition: background .2s ease, color .2s ease;
	white-space: nowrap;
}
.primary-menu li a:hover,
.primary-menu li.current-menu-item > a { background: rgba(247, 181, 81, .15); color: var(--lx-primary-dark); }
.primary-menu .sub-menu {
	list-style: none;
	margin: 0;
	padding: 8px;
	position: absolute;
	background: #fff;
	border-radius: 12px;
	box-shadow: var(--lx-shadow);
	display: none;
	min-width: 220px;
}
.primary-menu li:hover > .sub-menu { display: block; }
.primary-menu .sub-menu li a { display: block; padding: 8px 12px; text-transform: none; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-cart {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	background: var(--lx-dark);
	color: #fff !important;
	border-radius: 999px;
	font-weight: 700;
	font-size: .85rem;
}
.header-cart:hover { background: var(--lx-dark-2); }
.header-cart .cart-count {
	background: var(--lx-primary);
	color: var(--lx-dark);
	padding: 2px 8px;
	border-radius: 999px;
	font-size: .72rem;
	font-weight: 800;
	min-width: 22px;
	text-align: center;
}

.nav-toggle {
	display: none;
	background: transparent;
	color: var(--lx-dark);
	border: 0;
	padding: 8px;
	border-radius: 8px;
	cursor: pointer;
	flex-shrink: 0;
}
.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--lx-dark);
	margin: 5px 0;
	border-radius: 2px;
	transition: transform .2s ease, opacity .2s ease;
}
.header-my-lxtream--desktop { display: inline-flex; }

@media (max-width: 1024px) {
	.header-bar {
		display: grid;
		grid-template-columns: 48px 1fr auto;
		grid-template-areas: "toggle logo actions";
		gap: 8px;
		min-height: 68px;
	}
	.nav-toggle {
		grid-area: toggle;
		display: inline-flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.site-branding {
		grid-area: logo;
		justify-self: center;
	}
	.header-actions {
		grid-area: actions;
		display: flex;
		align-items: center;
		justify-self: end;
	}
	.primary-nav { grid-area: unset; }
	.header-my-lxtream--desktop { display: none; }
	.header-cart .header-cart-total { display: none; }
	.header-cart {
		padding: 10px 12px;
		min-width: 44px;
		justify-content: center;
	}
	.primary-nav {
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		width: min(320px, 86vw);
		height: 100vh;
		height: 100dvh;
		background: #0f1a2c;
		padding: 0;
		margin: 0;
		transform: translateX(-105%);
		visibility: hidden;
		pointer-events: none;
		transition: transform .32s cubic-bezier(.4, 0, .2, 1), visibility .32s ease;
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		box-shadow: 8px 0 40px rgba(0, 0, 0, .35);
		justify-content: flex-start;
		flex-direction: column;
		align-items: stretch;
		z-index: 200;
	}
	.primary-nav.is-open {
		transform: translateX(0);
		visibility: visible;
		pointer-events: auto;
	}
	.mobile-nav-head {
		display: block;
		padding: max(20px, env(safe-area-inset-top)) 24px 20px;
		border-bottom: 1px solid rgba(255, 255, 255, .08);
		flex-shrink: 0;
	}
	.mobile-nav-login {
		width: 100%;
		justify-content: center;
		text-transform: uppercase;
		letter-spacing: .06em;
	}
	.primary-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		width: 100%;
		flex: 1;
	}
	.primary-menu li { border-bottom: 1px solid rgba(255, 255, 255, .08); }
	.primary-menu li a {
		display: block;
		padding: 18px 24px;
		border-radius: 0;
		color: #fff;
		font-size: .84rem;
		background: transparent;
		white-space: normal;
	}
	.primary-menu li a:hover,
	.primary-menu li.current-menu-item > a {
		background: rgba(255, 255, 255, .05);
		color: var(--lx-primary);
	}
	.primary-menu .sub-menu {
		position: static;
		box-shadow: none;
		padding: 0 0 0 14px;
		display: block;
		background: rgba(255, 255, 255, .03);
	}
	.primary-menu .sub-menu li a {
		font-size: .8rem;
		padding: 14px 24px;
	}
	.mobile-nav-cart { display: none; }
}

/* ----------  Hero  ---------- */
.hero {
	position: relative;
	overflow: hidden;
	background: var(--lx-gradient-dark);
	color: #fff;
	padding: 120px 0 110px;
}
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(700px 380px at 12% 18%, rgba(247, 181, 81, .35), transparent 60%),
		radial-gradient(700px 380px at 88% 78%, rgba(111, 166, 212, .35), transparent 60%);
	z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
	display: grid;
	grid-template-columns: .95fr 1.05fr;
	gap: 48px;
	align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.hero h1 {
	color: #fff;
	font-size: clamp(2.2rem, 4.4vw, 3.8rem);
	line-height: 1.1;
	margin-bottom: 20px;
}
.hero h1 .gradient-text {
	color: var(--lx-primary-light);
}
.hero p.lead {
	font-size: 1.1rem;
	max-width: 560px;
	color: rgba(255, 255, 255, .82);
	margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	max-width: 540px;
}
.hero-stat {
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: var(--lx-radius);
	padding: 16px 18px;
	backdrop-filter: blur(8px);
}
.hero-stat .num {
	display: block;
	font-family: var(--lx-display);
	font-weight: 800;
	font-size: 1.8rem;
	color: var(--lx-primary);
	line-height: 1;
}
.hero-stat .label { font-size: .8rem; color: rgba(255, 255, 255, .7); margin-top: 6px; display: block; }

.hero-visual {
	position: relative;
	height: 480px;
}
.hero-visual .card-stack {
	position: absolute;
	border-radius: 22px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
	overflow: hidden;
	background: #0b1224;
	border: 1px solid rgba(255, 255, 255, .08);
}
.hero-card-1 {
	top: 0; right: 0; width: 78%; height: 65%;
	background: linear-gradient(135deg, #1a2540, #0f1a2c);
	display: flex; flex-direction: column; justify-content: space-between;
	padding: 22px;
}
.hero-card-1 .row { display: flex; gap: 8px; }
.hero-card-1 .chip {
	background: rgba(247, 181, 81, .15);
	color: var(--lx-primary);
	border: 1px solid rgba(247, 181, 81, .3);
	padding: 5px 10px;
	font-size: .72rem;
	font-weight: 700;
	border-radius: 999px;
	letter-spacing: .06em;
	text-transform: uppercase;
}
.hero-card-1 .chip.blue { color: var(--lx-secondary); background: rgba(111, 166, 212, .15); border-color: rgba(111, 166, 212, .3); }
.hero-card-1 .grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-top: 16px;
}
.hero-card-1 .tile {
	aspect-ratio: 16/10;
	background: linear-gradient(135deg, rgba(247, 181, 81, .22), rgba(111, 166, 212, .22));
	border-radius: 10px;
	display: grid;
	place-items: center;
	color: #fff;
	font-size: .78rem;
	font-weight: 600;
	border: 1px solid rgba(255, 255, 255, .06);
}
.hero-card-2 {
	bottom: 0; left: 0; width: 60%; height: 55%;
	background: linear-gradient(135deg, var(--lx-primary), var(--lx-primary-dark));
	color: #fff;
	padding: 22px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.hero-card-2 strong { font-size: 1.4rem; }
.hero-card-2 .price {
	font-family: var(--lx-display);
	font-size: 2.2rem;
	font-weight: 800;
	line-height: 1;
}
.hero-card-2 .price small { font-size: 1rem; opacity: .8; }
.hero-card-2 a {
	color: #fff;
	background: rgba(0, 0, 0, .25);
	padding: 10px 16px;
	border-radius: 999px;
	font-weight: 700;
	font-size: .85rem;
	text-transform: uppercase;
	align-self: flex-start;
}

.hero-marquee {
	margin-top: 60px;
	background: rgba(255, 255, 255, .05);
	border-top: 1px solid rgba(255, 255, 255, .08);
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	padding: 16px 0;
	overflow: hidden;
}
.hero-marquee .track { display: flex; gap: 50px; white-space: nowrap; animation: marquee 24s linear infinite; }
.hero-marquee .item { font-weight: 700; color: rgba(255, 255, 255, .65); letter-spacing: .08em; font-size: .9rem; text-transform: uppercase; }
.hero-marquee .item .dot { color: var(--lx-primary); margin: 0 18px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ----------  Features  ---------- */
.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
@media (max-width: 1024px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
	background: #fff;
	border-radius: var(--lx-radius-lg);
	padding: 30px 28px;
	box-shadow: var(--lx-shadow-sm);
	transition: transform .25s ease, box-shadow .25s ease;
	border: 1px solid var(--lx-border);
	position: relative;
	overflow: hidden;
}
.feature-card::after {
	content: "";
	position: absolute;
	inset: -1px;
	border-radius: var(--lx-radius-lg);
	padding: 1px;
	background: linear-gradient(135deg, transparent, rgba(247, 181, 81, .55));
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	        mask-composite: exclude;
	opacity: 0;
	transition: opacity .25s ease;
	pointer-events: none;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--lx-shadow); }
.feature-card:hover::after { opacity: 1; }
.feature-icon {
	width: 56px; height: 56px;
	border-radius: 16px;
	display: grid;
	place-items: center;
	background: var(--lx-gradient-warm);
	color: #fff;
	margin-bottom: 18px;
	font-size: 1.5rem;
}
.feature-icon.cool { background: var(--lx-gradient-cool); }
.feature-icon.dark { background: var(--lx-gradient-dark); }
.feature-icon.red { background: linear-gradient(135deg, #ff6363, var(--lx-accent)); }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature-card p { font-size: .95rem; color: var(--lx-muted); margin: 0; }

/* ----------  Pricing  ---------- */
.pricing { background: linear-gradient(180deg, #ffffff, #f6f8fc); }
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
	align-items: stretch;
}
@media (max-width: 920px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
	background: #fff;
	border-radius: var(--lx-radius-lg);
	padding: 36px 30px;
	box-shadow: var(--lx-shadow-sm);
	border: 1px solid var(--lx-border);
	position: relative;
	display: flex;
	flex-direction: column;
	transition: transform .25s ease, box-shadow .25s ease;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--lx-shadow-lg); }
.price-card.is-featured {
	background: linear-gradient(180deg, var(--lx-cream), #fff);
	border-color: var(--lx-primary);
	box-shadow: 0 30px 60px rgba(247, 181, 81, .22);
	transform: scale(1.02);
}
.price-card .badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--lx-gradient-warm);
	color: #fff;
	padding: 8px 18px;
	border-radius: 999px;
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	box-shadow: 0 10px 24px rgba(247, 181, 81, .4);
}
.price-card .tag-new { background: linear-gradient(135deg, #6fa6d4, var(--lx-secondary-dark)); }
.price-card .plan-name {
	font-family: var(--lx-display);
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--lx-primary-dark);
	letter-spacing: .12em;
	text-transform: uppercase;
	margin-bottom: 6px;
}
.price-card .plan-desc { color: var(--lx-muted); font-size: .9rem; margin-bottom: 24px; }
.price-card .price {
	font-family: var(--lx-display);
	font-weight: 800;
	font-size: 3rem;
	line-height: 1;
	color: var(--lx-dark);
	margin-bottom: 4px;
}
.price-card .price small {
	font-size: 1rem;
	font-weight: 600;
	color: var(--lx-muted);
	letter-spacing: 0;
}
.price-card .period { color: var(--lx-muted); font-size: .9rem; margin-bottom: 22px; }
.price-card hr {
	border: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--lx-secondary), transparent);
	margin: 0 0 22px;
}
.price-card ul {
	list-style: none;
	padding: 0;
	margin: 0 0 30px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}
.price-card ul li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: .95rem;
}
.price-card ul li::before {
	content: "";
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	background-color: var(--lx-primary);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
	        mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
	margin-top: 3px;
}
.price-card .small-note {
	font-size: .78rem;
	color: var(--lx-accent);
	font-weight: 700;
	margin-top: -10px;
	margin-bottom: 14px;
}
.price-card .btn { justify-content: center; }

/* ----------  Compatibility  ---------- */
.compat {
	background: var(--lx-dark);
	color: #fff;
	background-image:
		radial-gradient(600px 300px at 80% 0%, rgba(247, 181, 81, .2), transparent 60%),
		radial-gradient(600px 300px at 0% 100%, rgba(111, 166, 212, .2), transparent 60%);
}
.compat h2 { color: #fff; }
.compat .section-subtitle { color: rgba(255, 255, 255, .7); }

.compat-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
}
@media (max-width: 900px) { .compat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .compat-grid { grid-template-columns: repeat(2, 1fr); } }
.compat-card {
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: var(--lx-radius);
	padding: 26px 16px;
	text-align: center;
	transition: transform .2s ease, background .2s ease;
}
.compat-card:hover { transform: translateY(-4px); background: rgba(255, 255, 255, .1); }
.compat-card .icon {
	font-size: 2rem;
	margin-bottom: 10px;
	color: var(--lx-primary);
}
.compat-card span { display: block; font-weight: 700; font-size: .92rem; letter-spacing: .04em; }

/* ----------  Updates / news  ---------- */
.updates-list { display: grid; gap: 16px; max-width: 920px; margin: 0 auto; }
.update-item {
	background: #fff;
	border-radius: var(--lx-radius);
	padding: 22px 24px;
	border: 1px solid var(--lx-border);
	box-shadow: var(--lx-shadow-sm);
	display: flex;
	gap: 18px;
	align-items: flex-start;
}
.update-item .date {
	flex-shrink: 0;
	width: 90px;
	font-family: var(--lx-display);
	font-weight: 800;
	color: var(--lx-primary-dark);
	font-size: .9rem;
	letter-spacing: .04em;
}
.update-item .body { color: var(--lx-text); font-size: .98rem; }
.update-item.is-hot {
	border-color: rgba(237, 28, 36, .28);
	background: linear-gradient(180deg, #ffffff, #fff8f8);
}
.update-item.is-hot .date { color: var(--lx-accent); }

/* ----------  CTA strip  ---------- */
.cta-strip {
	background: var(--lx-gradient-warm);
	color: #fff;
	border-radius: var(--lx-radius-lg);
	padding: 44px 40px;
	display: flex;
	gap: 30px;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	box-shadow: 0 30px 60px rgba(247, 181, 81, .25);
}
.cta-strip h2 { color: #fff; margin: 0; max-width: 720px; font-size: clamp(1.4rem, 2.4vw, 2rem); }
.cta-strip .btn-secondary { background: var(--lx-dark); }

/* ----------  Generic page styling  ---------- */
.page-hero {
	padding: 80px 0 50px;
	background:
		radial-gradient(600px 300px at 80% 20%, rgba(247, 181, 81, .25), transparent 60%),
		radial-gradient(600px 300px at 10% 80%, rgba(111, 166, 212, .25), transparent 60%),
		var(--lx-cream);
	text-align: center;
}
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { color: var(--lx-muted); max-width: 720px; margin: 0 auto; }
.page-hero .breadcrumb { font-size: .82rem; color: var(--lx-muted); margin-top: 16px; text-transform: uppercase; letter-spacing: .12em; }
.page-hero .breadcrumb a { color: var(--lx-primary-dark); }

.page-content { padding: 60px 0 90px; }
.page-content .container-sm h2,
.page-content .container-sm h3 { margin-top: 1.4em; }
.page-content .container-sm ul li { margin-bottom: 6px; }

.entry-content > * { margin-bottom: 1em; }
.entry-content a { color: var(--lx-primary-dark); text-decoration: underline; text-underline-offset: 3px; }
.entry-content a:hover { color: var(--lx-secondary-dark); }
.entry-content blockquote {
	border: 1px solid rgba(247, 181, 81, .36);
	background: var(--lx-cream);
	padding: 16px 20px;
	border-radius: 12px;
	margin: 1.4em 0;
}

/* ----------  Steps  ---------- */
.steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}
.step {
	background: #fff;
	border-radius: var(--lx-radius);
	padding: 26px 22px;
	border: 1px solid var(--lx-border);
	box-shadow: var(--lx-shadow-sm);
	position: relative;
}
.step .num {
	width: 42px; height: 42px;
	display: grid;
	place-items: center;
	background: var(--lx-gradient-warm);
	color: #fff;
	font-family: var(--lx-display);
	font-weight: 800;
	border-radius: 12px;
	margin-bottom: 14px;
}
.step h4 { margin-bottom: 6px; font-size: 1rem; }
.step p { margin: 0; color: var(--lx-muted); font-size: .92rem; }

/* ----------  Channels / bouquets  ---------- */
.bouquet-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
@media (max-width: 800px) { .bouquet-grid { grid-template-columns: 1fr; } }
.bouquet {
	background: #fff;
	border-radius: var(--lx-radius-lg);
	padding: 34px 28px;
	border: 1px solid var(--lx-border);
	box-shadow: var(--lx-shadow-sm);
	text-align: center;
}
.bouquet .icon {
	width: 64px; height: 64px;
	border-radius: 18px;
	background: var(--lx-gradient-warm);
	margin: 0 auto 16px;
	display: grid;
	place-items: center;
	color: #fff;
	font-size: 1.8rem;
}
.bouquet:nth-child(2) .icon { background: var(--lx-gradient-cool); }
.bouquet:nth-child(3) .icon { background: var(--lx-gradient-dark); }
.bouquet h3 { font-size: 1.2rem; }
.bouquet .count {
	display: inline-block;
	background: var(--lx-cream);
	color: var(--lx-primary-dark);
	font-weight: 800;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: .85rem;
	margin-top: 10px;
}

/* ----------  FAQ accordion  ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
	background: #fff;
	border-radius: var(--lx-radius);
	border: 1px solid var(--lx-border);
	box-shadow: var(--lx-shadow-sm);
	overflow: hidden;
}
.faq-item summary {
	list-style: none;
	padding: 22px 24px;
	cursor: pointer;
	font-weight: 700;
	color: var(--lx-dark);
	font-family: var(--lx-display);
	font-size: 1.05rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
	content: "+";
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--lx-primary-dark);
	transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--lx-text); }
.faq-item .faq-body p { margin: 0 0 .8em; }

/* ----------  Contact  ---------- */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	max-width: 1000px;
	margin: 0 auto;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
	background: #fff;
	border-radius: var(--lx-radius-lg);
	padding: 36px;
	border: 1px solid var(--lx-border);
	box-shadow: var(--lx-shadow-sm);
}
.contact-card .icon {
	width: 56px; height: 56px;
	border-radius: 16px;
	background: var(--lx-gradient-warm);
	color: #fff;
	display: grid; place-items: center;
	font-size: 1.6rem;
	margin-bottom: 16px;
}
.contact-card.cool .icon { background: var(--lx-gradient-cool); }
.contact-card h3 { margin-bottom: 6px; }

/* ----------  WooCommerce shop / products  ---------- */
.woocommerce ul.products {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}
@media (max-width: 900px) { .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .woocommerce ul.products { grid-template-columns: 1fr; } }
.woocommerce ul.products li.product {
	width: auto !important;
	float: none !important;
	margin: 0 !important;
	background: #fff;
	border-radius: var(--lx-radius-lg);
	padding: 24px;
	border: 1px solid var(--lx-border);
	box-shadow: var(--lx-shadow-sm);
	transition: transform .2s ease, box-shadow .2s ease;
}
.woocommerce ul.products li.product:hover { transform: translateY(-4px); box-shadow: var(--lx-shadow); }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-family: var(--lx-display);
	font-weight: 700;
	font-size: 1.05rem !important;
	color: var(--lx-dark);
	padding: 6px 0 !important;
}
.woocommerce ul.products li.product .price {
	color: var(--lx-primary-dark) !important;
	font-weight: 800 !important;
	font-size: 1.4rem !important;
}
.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce #content input.button,
.woocommerce-page #content input.button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
	background: var(--lx-gradient-warm) !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 999px !important;
	padding: 12px 22px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: .05em !important;
	font-size: .85rem !important;
	box-shadow: 0 10px 24px rgba(247, 181, 81, .25);
	transition: transform .2s ease, box-shadow .2s ease;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover { transform: translateY(-2px); }
.woocommerce span.onsale {
	background: var(--lx-accent) !important;
	color: #fff !important;
	border-radius: 999px !important;
	padding: 6px 12px !important;
	font-size: .72rem !important;
	font-weight: 800 !important;
	letter-spacing: .06em;
	box-shadow: 0 8px 20px rgba(237, 28, 36, .25);
	min-height: 0 !important;
	line-height: 1 !important;
}
.woocommerce div.product div.summary h1.product_title {
	font-family: var(--lx-display);
	color: var(--lx-dark);
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--lx-primary-dark) !important;
	font-weight: 800;
}

/* ----------  Footer  ---------- */
.site-footer {
	background: var(--lx-dark);
	color: rgba(255, 255, 255, .8);
	padding: 70px 0 30px;
	position: relative;
}
.site-footer::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 4px;
	background: var(--lx-gradient);
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 40px;
	margin-bottom: 50px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .site-title { color: #fff; margin-bottom: 14px; }
.footer-brand p { color: rgba(255, 255, 255, .6); font-size: .92rem; }
.footer-widget-title,
.footer-col h4 {
	color: #fff;
	font-family: var(--lx-display);
	font-size: 1rem;
	margin-bottom: 16px;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.footer-col ul, .footer-widget ul { list-style: none; padding: 0; margin: 0; }
.footer-col li, .footer-widget li { margin-bottom: 10px; }
.footer-col a, .footer-widget a { color: rgba(255, 255, 255, .7); font-size: .92rem; }
.footer-col a:hover, .footer-widget a:hover { color: var(--lx-primary); }
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .08);
	padding-top: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	font-size: .85rem;
	color: rgba(255, 255, 255, .55);
}
.footer-bottom a { color: rgba(255, 255, 255, .8); }
.footer-pay { display: flex; gap: 10px; align-items: center; }
.footer-pay .pay {
	background: rgba(255, 255, 255, .08);
	border-radius: 8px;
	padding: 6px 12px;
	font-weight: 700;
	font-size: .72rem;
	letter-spacing: .08em;
	color: rgba(255, 255, 255, .8);
}

/* ----------  Floating chat hint  ---------- */
.chat-hint {
	position: fixed;
	bottom: 24px;
	left: 24px;
	right: auto;
	background: var(--lx-gradient-warm);
	color: #fff;
	padding: 14px 18px;
	border-radius: 999px;
	font-weight: 700;
	box-shadow: var(--lx-shadow-lg);
	z-index: 99;
	display: inline-flex;
	gap: 10px;
	align-items: center;
	font-size: .9rem;
}
.chat-hint:hover { color: #fff; transform: translateY(-3px); }

/* ----------  Misc helpers  ---------- */
.alert {
	background: var(--lx-cream);
	border: 1px solid rgba(247, 181, 81, .42);
	padding: 16px 18px;
	border-radius: 12px;
	color: var(--lx-text);
	margin: 1.2em 0;
}
.alert.red { background: #fee2e2; border-color: rgba(237, 28, 36, .42); color: #7f1d1d; }
.alert.blue { background: #dbeafe; border-color: rgba(63, 126, 176, .42); color: #1e3a8a; }

.tabs {
	display: flex;
	gap: 8px;
	margin-bottom: 22px;
	flex-wrap: wrap;
	justify-content: center;
}
.tabs button {
	background: #fff;
	border: 1px solid var(--lx-border);
	padding: 10px 18px;
	border-radius: 999px;
	font-weight: 700;
	font-size: .82rem;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--lx-dark);
	cursor: pointer;
	transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.tabs button.is-active { background: var(--lx-gradient-warm); color: #fff; border-color: transparent; }

/* ----------  Brand imagery  ---------- */
.brand-logo-link { display: inline-flex; align-items: center; gap: 10px; }
.brand-logo-img {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	box-shadow: 0 8px 22px rgba(15, 26, 44, .12);
}
.footer-brand-mark {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}
.footer-logo-img {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: rgba(255, 255, 255, .08);
}
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ----------  Hero showcase  ---------- */
.hero-showcase {
	position: relative;
	overflow: hidden;
	background: var(--lx-dark);
	color: #fefcf8;
	padding: 88px 0 72px;
}
.hero-showcase::before { display: none; }
.hero-showcase-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(900px 520px at 78% 22%, rgba(247, 181, 81, .28), transparent 62%),
		radial-gradient(700px 420px at 12% 82%, rgba(111, 166, 212, .22), transparent 58%),
		linear-gradient(160deg, #0f1a2c 0%, #162238 48%, #1f2f4f 100%);
}
.hero-showcase .container { position: relative; z-index: 1; }
.hero-showcase-grid {
	display: grid;
	grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
	gap: clamp(24px, 3vw, 48px);
	align-items: center;
}
.hero-showcase-copy { max-width: 520px; }
.hero-showcase-logo {
	width: 64px;
	height: 64px;
	border-radius: 18px;
	margin-bottom: 22px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
}
.hero-kicker {
	margin: 0 0 14px;
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--lx-primary-light);
}
.hero-showcase h1 {
	color: #fefcf8;
	font-size: clamp(2.3rem, 4.8vw, 4rem);
	line-height: 1.05;
	margin-bottom: 18px;
	max-width: 12ch;
}
.hero-showcase h1 .hero-highlight { color: var(--lx-primary-light); }
.hero-showcase p.lead {
	font-size: 1.08rem;
	max-width: 46ch;
	color: rgba(254, 252, 248, .78);
	margin-bottom: 28px;
}
.hero-showcase .hero-actions { margin-bottom: 28px; }
.hero-btn-ghost {
	color: #fefcf8 !important;
	border-color: rgba(254, 252, 248, .28) !important;
}
.hero-btn-ghost:hover {
	border-color: var(--lx-primary) !important;
	color: var(--lx-primary-light) !important;
	background: rgba(247, 181, 81, .08);
}
.hero-proof-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}
.hero-proof-list li {
	position: relative;
	padding-left: 22px;
	color: rgba(254, 252, 248, .72);
	font-size: .92rem;
}
.hero-proof-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .55em;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--lx-primary);
}
.hero-showcase-stage {
	position: relative;
	min-height: clamp(520px, 50vw, 720px);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero-stage-glow {
	position: absolute;
	inset: 10% 5% 12% 5%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(247, 181, 81, .28), transparent 68%);
	filter: blur(22px);
	pointer-events: none;
}
.hero-play-cards {
	position: relative;
	width: min(100%, 760px);
	min-height: clamp(420px, 42vw, 620px);
}
.hero-play-card {
	position: absolute;
	width: min(100%, 620px);
	border-radius: 24px;
	overflow: hidden;
	background: #fefcf8;
	border: 1px solid rgba(15, 26, 44, .08);
	box-shadow: 0 28px 70px rgba(0, 0, 0, .38);
	transition: transform .35s cubic-bezier(.165, .84, .44, 1), box-shadow .35s ease;
}
.hero-play-card--v4.is-front {
	top: 0;
	right: 0;
	z-index: 2;
	transform: rotate(1.5deg);
}
.hero-play-card--v2.is-back {
	left: 0;
	bottom: 0;
	width: min(78%, 480px);
	z-index: 1;
	transform: rotate(-8deg);
	opacity: .94;
}
.hero-play-card:hover {
	transform: translateY(-6px) rotate(0deg);
	box-shadow: 0 36px 90px rgba(0, 0, 0, .45);
	z-index: 3;
}
.hero-play-card-head {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 14px;
	padding: 16px 18px;
	background: linear-gradient(180deg, #fff, #f8fafc);
	border-bottom: 1px solid rgba(15, 26, 44, .06);
}
.hero-play-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	box-shadow: 0 8px 20px rgba(15, 26, 44, .12);
}
.hero-play-meta h3 {
	margin: 0;
	font-size: 1.02rem;
	color: var(--lx-dark);
	line-height: 1.2;
}
.hero-play-meta p {
	margin: 2px 0 0;
	font-size: .82rem;
	color: var(--lx-muted);
}
.hero-play-badge {
	padding: 6px 12px;
	border-radius: 999px;
	font-size: .68rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .06em;
	background: rgba(15, 26, 44, .08);
	color: var(--lx-dark);
	white-space: nowrap;
}
.hero-play-badge.is-exclusive {
	background: linear-gradient(135deg, #f7b551, #ed8f24);
	color: var(--lx-dark);
	box-shadow: 0 8px 20px rgba(247, 181, 81, .35);
}
.hero-play-card-screen {
	background: #0f1a2c;
	padding: 0;
	line-height: 0;
}
.hero-play-shot {
	display: block;
	width: 100%;
	height: auto;
}
.hero-play-card-foot {
	padding: 12px 18px;
	font-size: .78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: var(--lx-secondary-dark);
	background: #fff;
	border-top: 1px solid rgba(15, 26, 44, .06);
}

@media (max-width: 980px) {
	.hero-showcase { padding-top: 72px; }
	.hero-showcase-grid { grid-template-columns: 1fr; }
	.hero-showcase-copy { max-width: none; }
	.hero-showcase h1 { max-width: none; }
	.hero-showcase-stage {
		min-height: 380px;
		margin-top: 12px;
	}
	.hero-play-cards {
		width: 100%;
		min-height: 360px;
	}
	.hero-play-card--v4.is-front {
		width: 92%;
		right: 0;
		left: auto;
	}
	.hero-play-card--v2.is-back {
		width: 62%;
		left: 0;
		bottom: 0;
	}
}
@media (max-width: 560px) {
	.hero-showcase-stage { min-height: 320px; }
	.hero-play-cards { min-height: 300px; }
	.hero-play-card--v4.is-front { width: 96%; }
	.hero-play-card--v2.is-back { width: 68%; }
	.hero-play-icon { width: 44px; height: 44px; }
}

/* ----------  Legacy hero helpers (other pages)  ---------- */

/* ----------  Shared app guide  ---------- */
.guide-page-hero {
	text-align: left;
	padding: 76px 0 64px;
}
.guide-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 260px;
	align-items: center;
	gap: 44px;
}
.guide-hero-copy p { margin-inline: 0; }
.guide-actions { margin-bottom: 0; }
.guide-hero-media {
	position: relative;
	min-height: 240px;
	display: grid;
	place-items: center;
}
.guide-logo-mark {
	width: 150px;
	height: 150px;
	border-radius: 34px;
	box-shadow: var(--lx-shadow-lg);
	background: #fff;
}
.guide-v4-badge {
	position: absolute;
	right: 4px;
	bottom: 0;
	width: 128px;
	height: 128px;
	filter: drop-shadow(0 18px 28px rgba(15, 26, 44, .24));
}
.guide-overview { padding: 52px 0; }
.guide-alert-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.guide-alert {
	background: #fff;
	border: 1px solid var(--lx-border);
	border-radius: var(--lx-radius-lg);
	padding: 26px;
	box-shadow: var(--lx-shadow-sm);
	display: grid;
	gap: 8px;
}
.guide-alert strong {
	color: var(--lx-dark);
	font-family: var(--lx-display);
	font-size: 1.05rem;
}
.guide-alert span { color: var(--lx-muted); }
.guide-alert a { font-weight: 800; color: var(--lx-primary-dark); }
.guide-alert.is-blue a { color: var(--lx-secondary-dark); }
.guide-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.guide-steps.is-five { grid-template-columns: repeat(5, 1fr); }
.guide-step {
	background: #fff;
	border: 1px solid var(--lx-border);
	border-radius: var(--lx-radius-lg);
	box-shadow: var(--lx-shadow-sm);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.guide-step-media {
	background: var(--lx-bg);
	aspect-ratio: 16 / 9;
	overflow: hidden;
}
.guide-step-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.guide-step-body {
	padding: 22px;
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: 14px;
	align-items: start;
}
.guide-step-body .num {
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	background: var(--lx-gradient-warm);
	color: #fff;
	font-family: var(--lx-display);
	font-weight: 800;
	border-radius: 12px;
	grid-row: span 2;
}
.guide-step h3 {
	font-size: 1rem;
	margin: 0 0 6px;
}
.guide-step p {
	margin: 0;
	color: var(--lx-muted);
	font-size: .93rem;
}
.guide-split {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	gap: 42px;
	align-items: center;
}
.section-subtitle.align-left {
	margin-left: 0;
	margin-right: 0;
}
.guide-list {
	background: #fff;
	border: 1px solid var(--lx-border);
	border-radius: var(--lx-radius);
	padding: 24px 28px 24px 46px;
	box-shadow: var(--lx-shadow-sm);
	margin-bottom: 24px;
}
.guide-list li { margin-bottom: 8px; }
.guide-mini-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.guide-mini-image {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 22px;
	background: #fff;
	box-shadow: var(--lx-shadow);
}
.guide-mini-image.is-wide {
	aspect-ratio: 16 / 9;
	grid-column: 1 / -1;
}
.guide-device-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
.guide-device-card {
	background: #fff;
	border: 1px solid var(--lx-border);
	border-radius: var(--lx-radius-lg);
	padding: 28px;
	box-shadow: var(--lx-shadow-sm);
}
.device-app-icon {
	width: 64px;
	height: 64px;
	object-fit: contain;
	margin-bottom: 18px;
}
.device-app-photo {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 16px;
	margin-bottom: 18px;
}
.guide-device-card h3 { font-size: 1.08rem; }
.guide-device-card p {
	color: var(--lx-muted);
	font-size: .94rem;
	margin: 0;
}

@media (max-width: 1024px) {
	.guide-steps,
	.guide-steps.is-five,
	.guide-device-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
	.guide-page-hero { text-align: center; }
	.guide-hero-grid,
	.guide-alert-grid,
	.guide-split,
	.guide-mini-gallery { grid-template-columns: 1fr; }
	.guide-hero-copy p,
	.section-subtitle.align-left { margin-inline: auto; }
	.guide-actions { justify-content: center; }
	.guide-hero-media { min-height: 180px; }
	.guide-logo-mark { width: 118px; height: 118px; }
	.guide-v4-badge { width: 102px; height: 102px; right: 22%; }
}
@media (max-width: 560px) {
	.guide-steps,
	.guide-steps.is-five,
	.guide-device-grid { grid-template-columns: 1fr; }
	.guide-step-body { padding: 18px; }
}

/* ----------  Channel browser  ---------- */
.channels-page-hero { background: var(--lx-cream); }
.channels-directory { background: linear-gradient(180deg, #fff, var(--lx-bg)); }
.channels-summary {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 22px;
	margin-bottom: 30px;
}
.channel-browser {
	display: grid;
	grid-template-columns: 330px minmax(0, 1fr);
	gap: 24px;
	align-items: start;
}
.channel-groups {
	background: #fff;
	border: 1px solid var(--lx-border);
	border-radius: var(--lx-radius-lg);
	box-shadow: var(--lx-shadow-sm);
	padding: 12px;
	max-height: 760px;
	overflow: auto;
	position: sticky;
	top: 100px;
}
.channel-group-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 14px;
	border-radius: 12px;
	color: var(--lx-dark);
	font-weight: 700;
	font-size: .9rem;
}
.channel-group-link:hover,
.channel-group-link.is-active {
	background: rgba(247, 181, 81, .16);
	color: var(--lx-primary-dark);
}
.channel-group-link strong {
	background: var(--lx-bg);
	color: var(--lx-muted);
	border-radius: 999px;
	padding: 3px 9px;
	font-size: .78rem;
	min-width: 34px;
	text-align: center;
}
.channel-group-link.is-active strong {
	background: var(--lx-primary);
	color: var(--lx-dark);
}
.channel-results {
	background: #fff;
	border: 1px solid var(--lx-border);
	border-radius: var(--lx-radius-lg);
	box-shadow: var(--lx-shadow-sm);
	padding: 26px;
	min-width: 0;
}
.channel-results-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 22px;
}
.channel-results-head h2 {
	margin-bottom: 4px;
	font-size: clamp(1.35rem, 2vw, 2rem);
}
.channel-results-head p {
	margin: 0;
	color: var(--lx-muted);
}
.channel-search input {
	width: min(280px, 100%);
	border: 1px solid var(--lx-border);
	border-radius: 999px;
	padding: 13px 18px;
	font: inherit;
	color: var(--lx-text);
	background: var(--lx-bg);
	outline: none;
}
.channel-search input:focus {
	border-color: var(--lx-primary);
	box-shadow: 0 0 0 4px rgba(247, 181, 81, .16);
}
.channel-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
}
.channel-card {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	min-height: 74px;
	border: 1px solid var(--lx-border);
	border-radius: 14px;
	padding: 12px;
	background: #fff;
	transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.channel-card:hover {
	border-color: rgba(247, 181, 81, .55);
	transform: translateY(-2px);
	box-shadow: var(--lx-shadow-sm);
}
.channel-logo {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(247,181,81,.2), rgba(111,166,212,.2));
	display: grid;
	place-items: center;
	overflow: hidden;
	color: var(--lx-dark);
	font-weight: 800;
	font-size: .82rem;
}
.channel-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 4px;
}
.channel-card h3 {
	font-size: .94rem;
	line-height: 1.25;
	margin: 0 0 4px;
	overflow-wrap: anywhere;
}
.channel-card p {
	color: var(--lx-muted);
	font-size: .78rem;
	line-height: 1.3;
	margin: 0;
	overflow-wrap: anywhere;
}
.channel-empty {
	grid-column: 1 / -1;
	text-align: center;
	color: var(--lx-muted);
	padding: 40px 20px;
}

@media (max-width: 980px) {
	.channels-summary,
	.channel-results-head { align-items: stretch; flex-direction: column; }
	.channel-browser { grid-template-columns: 1fr; }
	.channel-groups {
		position: static;
		max-height: 340px;
	}
	.channel-search input { width: 100%; }
}

/* ----------  Minimal header + My Lxtream  ---------- */
.header-my-lxtream {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border-radius: 999px;
	background: var(--lx-dark);
	color: #fff !important;
	font-weight: 700;
	font-size: .88rem;
	transition: background .2s ease;
}
.header-my-lxtream:hover { background: var(--lx-dark-2); }
.header-my-lxtream-icon { flex-shrink: 0; }

/* ----------  Apps download page  ---------- */
.apps-page-hero {
	background: linear-gradient(180deg, #fff, var(--lx-bg));
	padding: 72px 0 48px;
	text-align: left;
}
.apps-page-hero p { margin-inline: 0; max-width: 560px; }
.apps-hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}
.apps-hero-visual {
	border-radius: 24px;
	overflow: hidden;
	box-shadow: var(--lx-shadow-lg);
	border: 1px solid rgba(15, 26, 44, .08);
}
.apps-hero-img { display: block; width: 100%; height: auto; }
.apps-download-section { background: #fff; }
.apps-download-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-top: 36px;
}
.apps-download-card {
	position: relative;
	background: var(--lx-bg);
	border: 1px solid rgba(15, 26, 44, .08);
	border-radius: var(--lx-radius);
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.apps-download-card.is-featured {
	background: linear-gradient(180deg, rgba(247,181,81,.12), #fff);
	border-color: rgba(247, 181, 81, .35);
	box-shadow: var(--lx-shadow);
}
.apps-download-badge {
	align-self: flex-start;
	padding: 5px 10px;
	border-radius: 999px;
	font-size: .72rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .05em;
	background: rgba(15, 26, 44, .08);
	color: var(--lx-dark);
}
.apps-download-badge.is-latest { background: var(--lx-primary); color: var(--lx-dark); }
.apps-download-badge.is-legacy { background: rgba(111, 166, 212, .2); color: var(--lx-secondary-dark); }
.apps-download-badge.is-compatible { background: rgba(15, 26, 44, .08); }
.apps-download-media {
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
	min-height: 140px;
	display: grid;
	place-items: center;
	padding: 12px;
}
.apps-download-img {
	display: block;
	max-width: 100%;
	height: auto;
}
.apps-download-card h3 { font-size: 1.15rem; margin: 0; }
.apps-download-card p {
	margin: 0;
	color: var(--lx-muted);
	font-size: .92rem;
	line-height: 1.5;
	flex: 1;
}
.apps-download-note { margin-top: 34px; color: var(--lx-muted); }

/* ----------  Guide VPN alert  ---------- */
.guide-alert.is-vpn {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 18px;
	align-items: center;
	background: linear-gradient(135deg, rgba(111,166,212,.12), rgba(247,181,81,.08));
	border-color: rgba(111, 166, 212, .25);
}
.guide-vpn-copy { display: grid; gap: 8px; }
.guide-vpn-image {
	width: 120px;
	height: auto;
	border-radius: 14px;
}

/* ----------  YouTube video modal  ---------- */
body.video-modal-open { overflow: hidden; }
.video-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: none;
	place-items: center;
	padding: 24px;
}
.video-modal.is-open {
	display: grid;
}
.video-modal[hidden]:not(.is-open) { display: none !important; }
.video-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 26, 44, .82);
}
.video-modal-dialog {
	position: relative;
	width: min(960px, 100%);
	background: #000;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: var(--lx-shadow-lg);
}
.video-modal-close {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, .16);
	color: #fff;
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
}
.video-modal-frame {
	position: relative;
	padding-top: 56.25%;
}
.video-modal-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

@media (max-width: 900px) {
	.apps-hero-grid,
	.apps-download-grid { grid-template-columns: 1fr; }
	.guide-alert.is-vpn { grid-template-columns: 1fr; }
	.guide-vpn-image { width: 100%; max-width: 220px; }
}

/* ----------  Animations  ---------- */
@media (prefers-reduced-motion: no-preference) {
	.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
	.fade-up.visible { opacity: 1; transform: none; }
}

/* ----------  Print  ---------- */
@media print {
	.site-header, .site-footer, .chat-hint { display: none !important; }
	body { background: #fff; }
}
