/* =========================================================================
   Titan Plus TV — main theme styles
   Dark + neon-green, kilotv-inspired. Mobile-first.
   ========================================================================= */

:root {
	--bg:        #0B0F10;
	--bg-2:      #0F1417;
	--panel:     #11181B;
	--panel-2:   #161F22;
	--line:      rgba(163, 230, 53, 0.14);
	--line-soft: rgba(255, 255, 255, 0.08);
	--neon:      #A3E635;
	--neon-2:    #84CC16;
	--neon-ink:  #0B0F10;
	--text:      #F4F7F5;
	--muted:     #9AA6A1;
	--muted-2:   #6B7772;
	--whats:     #25D366;
	--radius:    18px;
	--radius-sm: 12px;
	--maxw:      1180px;
	--glow:      0 0 0 1px rgba(163,230,53,.25), 0 12px 40px -12px rgba(163,230,53,.45);
	--font-disp: 'Poppins', system-ui, sans-serif;
	--font-body: 'Inter', system-ui, sans-serif;
}

/* Reset / base ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body.tptv {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
.tptv img { max-width: 100%; display: block; }
.tptv a { color: inherit; text-decoration: none; }
.tptv h1, .tptv h2, .tptv h3, .tptv h4 { font-family: var(--font-disp); margin: 0; line-height: 1.12; letter-spacing: -0.02em; }
.tptv svg { width: 100%; height: 100%; }

.tptv-container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.tptv-container--narrow { max-width: 820px; }

/* Buttons ---------------------------------------------------------------- */
.tptv-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	font-family: var(--font-disp); font-weight: 700; font-size: 15px;
	padding: 13px 22px; border-radius: 999px; border: 1px solid transparent;
	cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
	white-space: nowrap;
}
.tptv-btn__icon { width: 19px; height: 19px; display: inline-flex; }
.tptv-btn--lg { padding: 16px 30px; font-size: 16px; }
.tptv-btn--block { width: 100%; }
.tptv-btn--primary { background: var(--neon); color: var(--neon-ink); box-shadow: 0 10px 30px -10px rgba(163,230,53,.6); }
.tptv-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(163,230,53,.8); }
.tptv-btn--ghost { background: transparent; color: var(--text); border-color: var(--line-soft); }
.tptv-btn--ghost:hover { border-color: var(--neon); color: var(--neon); }
.tptv-btn--whats { background: var(--whats); color: #fff; box-shadow: 0 10px 30px -10px rgba(37,211,102,.6); }
.tptv-btn--whats:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(37,211,102,.8); }

/* Section scaffolding ---------------------------------------------------- */
.tptv-eyebrow {
	display: inline-block; font-family: var(--font-disp); font-weight: 700;
	font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
	color: var(--neon); padding: 6px 14px; border-radius: 999px;
	background: rgba(163,230,53,.08); border: 1px solid var(--line); margin-bottom: 18px;
}
.tptv-section { padding: 84px 0; position: relative; }
.tptv-section--tight { padding: 64px 0; }
.tptv-section--alt { background: var(--bg-2); }
.tptv-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.tptv-head--left { text-align: left; margin-left: 0; margin-right: 0; padding: 0 22px; max-width: var(--maxw); }
.tptv-h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 14px; }
.tptv-lead { color: var(--muted); font-size: 17px; margin: 0; }

/* Header ----------------------------------------------------------------- */
.tptv-header {
	position: sticky; top: 0; z-index: 60;
	background: rgba(11,15,16,.72);
	backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line-soft);
	transition: background .2s ease, border-color .2s ease;
}
.tptv-header.is-scrolled { background: rgba(11,15,16,.92); border-color: var(--line); }
.tptv-header__inner { display: flex; align-items: center; gap: 22px; height: 70px; }
.tptv-nav { display: flex; gap: 6px; margin-left: 14px; flex: 1; }
.tptv-nav__link { padding: 9px 14px; border-radius: 10px; font-weight: 600; font-size: 15px; color: var(--muted); transition: color .15s, background .15s; }
.tptv-nav__link:hover { color: var(--text); background: rgba(255,255,255,.05); }
.tptv-header__actions { display: flex; align-items: center; gap: 12px; }

/* Logo (CSS wordmark) ---------------------------------------------------- */
.tptv-logo { display: inline-flex; align-items: center; gap: 11px; }
.tptv-logo__img { width: 40px; height: 40px; border-radius: 11px; flex: none; box-shadow: 0 6px 18px -8px rgba(163,230,53,.55); }
.tptv-logo__mark {
	width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
	background: linear-gradient(135deg, var(--neon), var(--neon-2));
	box-shadow: 0 6px 18px -6px rgba(163,230,53,.7); flex: none;
}
.tptv-logo__t { font-family: var(--font-disp); font-weight: 900; font-size: 22px; color: var(--neon-ink); line-height: 1; }
.tptv-logo__text { font-family: var(--font-disp); font-weight: 800; font-size: 19px; letter-spacing: .02em; color: #fff; }
.tptv-logo__plus { color: var(--neon); margin: 0 1px; }
.tptv-logo__tv { color: var(--muted); font-weight: 700; margin-left: 4px; font-size: 13px; vertical-align: super; }

/* Language switcher ------------------------------------------------------ */
.tptv-lang { position: relative; }
.tptv-lang__btn {
	display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
	background: rgba(255,255,255,.04); border: 1px solid var(--line-soft); color: var(--text);
	font-family: var(--font-disp); font-weight: 700; font-size: 13px; padding: 9px 12px; border-radius: 10px;
}
.tptv-lang__btn:hover { border-color: var(--neon); }
.tptv-lang__globe { font-size: 14px; filter: grayscale(.2); }
.tptv-lang__caret { color: var(--muted); font-size: 10px; }
.tptv-lang__menu {
	position: absolute; right: 0; top: calc(100% + 8px); min-width: 160px;
	background: var(--panel-2); border: 1px solid var(--line); border-radius: 12px; padding: 6px;
	display: none; flex-direction: column; gap: 2px; box-shadow: 0 20px 50px -16px rgba(0,0,0,.7); z-index: 80;
}
.tptv-lang.is-open .tptv-lang__menu { display: flex; }
.tptv-lang__item { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 8px; font-size: 14px; font-weight: 600; color: var(--muted); }
.tptv-lang__item:hover { background: rgba(163,230,53,.08); color: var(--text); }
.tptv-lang__item.is-active { color: var(--neon); }
.tptv-lang__cc { font-size: 13px; }
.tptv-flag { width: 20px; height: 15px; border-radius: 3px; box-shadow: 0 0 0 1px rgba(255,255,255,.12); background-size: cover; flex: none; }

/* Burger / mobile menu --------------------------------------------------- */
.tptv-burger { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; border: 1px solid var(--line-soft); border-radius: 10px; background: rgba(255,255,255,.04); cursor: pointer; align-items: center; justify-content: center; }
.tptv-burger span { width: 19px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .2s, opacity .2s; }
.tptv-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tptv-burger.is-open span:nth-child(2) { opacity: 0; }
.tptv-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.tptv-mobilemenu { display: none; flex-direction: column; gap: 4px; padding: 14px 22px 22px; background: var(--bg-2); border-bottom: 1px solid var(--line); position: sticky; top: 70px; z-index: 55; }
.tptv-mobilemenu.is-open { display: flex; }
.tptv-mobilemenu__link { padding: 13px 12px; border-radius: 10px; font-weight: 600; font-size: 16px; }
.tptv-mobilemenu__link:hover { background: rgba(255,255,255,.05); }
.tptv-mobilemenu .tptv-btn { margin-top: 8px; }

/* Hero ------------------------------------------------------------------- */
.tptv-hero { position: relative; padding: 92px 0 78px; overflow: hidden; isolation: isolate; }
.tptv-hero__bg { position: absolute; inset: 0; z-index: -2; }
.tptv-hero__wall {
	position: absolute; inset: -10% -4% 0; display: grid;
	grid-template-columns: repeat(6, 1fr); gap: 12px; opacity: .16;
	transform: perspective(900px) rotateX(34deg) scale(1.25); transform-origin: top center; filter: saturate(.85);
}
.tptv-hero__wall span { aspect-ratio: 2/3; border-radius: 8px; background-size: cover; background-position: center; }
.tptv-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background:
	radial-gradient(1200px 520px at 50% -8%, rgba(163,230,53,.16), transparent 60%),
	linear-gradient(180deg, rgba(11,15,16,.4) 0%, var(--bg) 72%); }
.tptv-hero__inner { text-align: center; max-width: 860px; margin: 0 auto; position: relative; }
.tptv-hero__title { font-size: clamp(34px, 6vw, 62px); font-weight: 900; letter-spacing: -0.03em; }
.tptv-hero__title::after { content: ""; }
.tptv-hero__sub { color: var(--muted); font-size: clamp(16px, 2.2vw, 19px); max-width: 640px; margin: 20px auto 0; }
.tptv-hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.tptv-hero__devices { display: inline-flex; align-items: center; gap: 9px; color: var(--muted-2); font-size: 13.5px; font-weight: 500; margin-top: 26px; }
.tptv-hero__deviceicon { width: 18px; height: 18px; color: var(--neon); display: inline-flex; }

/* Stats ------------------------------------------------------------------ */
.tptv-stats { margin-top: -28px; position: relative; z-index: 2; }
.tptv-stats__grid {
	display: grid; grid-template-columns: repeat(4, 1fr);
	background: linear-gradient(180deg, var(--panel-2), var(--panel)); border: 1px solid var(--line);
	border-radius: var(--radius); padding: 26px 18px; box-shadow: 0 30px 70px -30px rgba(0,0,0,.8);
}
.tptv-stat { text-align: center; padding: 8px 6px; border-right: 1px solid var(--line-soft); }
.tptv-stat:last-child { border-right: 0; }
.tptv-stat__value { display: block; font-family: var(--font-disp); font-weight: 900; font-size: clamp(26px, 3.6vw, 38px); color: var(--neon); line-height: 1; }
.tptv-stat__label { display: block; color: var(--muted); font-size: 13.5px; margin-top: 8px; font-weight: 500; }

/* Pricing ---------------------------------------------------------------- */
.tptv-plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.tptv-plan {
	position: relative; background: var(--panel); border: 1px solid var(--line-soft);
	border-radius: var(--radius); padding: 30px 24px; display: flex; flex-direction: column;
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.tptv-plan:hover { transform: translateY(-4px); border-color: var(--line); }
.tptv-plan.is-popular { border-color: var(--neon); background: linear-gradient(180deg, rgba(163,230,53,.07), var(--panel) 40%); box-shadow: var(--glow); transform: scale(1.03); }
.tptv-plan.is-popular:hover { transform: scale(1.03) translateY(-4px); }
.tptv-plan__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--neon); color: var(--neon-ink); font-family: var(--font-disp); font-weight: 800; font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; white-space: nowrap; }
.tptv-plan__name { font-size: 19px; font-weight: 700; color: var(--text); }
.tptv-plan__price { display: flex; align-items: flex-start; justify-content: center; gap: 3px; margin: 16px 0 2px; }
.tptv-plan__cur { font-family: var(--font-disp); font-weight: 700; font-size: 22px; color: var(--neon); margin-top: 8px; }
.tptv-plan__amt { font-family: var(--font-disp); font-weight: 900; font-size: 52px; line-height: 1; color: #fff; }
.tptv-plan__per { text-align: center; color: var(--muted-2); font-size: 13px; margin: 0 0 20px; }
.tptv-plan__feats { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.tptv-plan__feats li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--muted); }
.tptv-tick { width: 19px; height: 19px; flex: none; color: var(--neon); margin-top: 1px; }
.tptv-plan__ready { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--muted-2); font-size: 12.5px; margin: 14px 0 0; }
.tptv-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 0 3px rgba(163,230,53,.18); animation: tptv-pulse 1.8s infinite; }
@keyframes tptv-pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

/* Rails (posters) -------------------------------------------------------- */
.tptv-rail {
	display: flex; gap: 14px; overflow-x: auto; padding: 8px 22px 18px; scroll-snap-type: x mandatory;
	-ms-overflow-style: none; scrollbar-width: none; max-width: 100%;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
	        mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.tptv-rail::-webkit-scrollbar { display: none; }
.tptv-poster {
	flex: none; width: 171px; aspect-ratio: 2/3; border-radius: var(--radius-sm); overflow: hidden;
	scroll-snap-align: start; background: var(--panel-2); border: 1px solid var(--line-soft);
	transition: transform .2s ease, border-color .2s ease; position: relative;
}
.tptv-poster:hover { transform: translateY(-6px) scale(1.02); border-color: var(--neon); }
.tptv-poster img { width: 100%; height: 100%; object-fit: cover; }
.tptv-poster--ph { background: linear-gradient(160deg, hsl(calc(var(--h) * 1deg + 90), 30%, 26%), hsl(calc(var(--h) * 1deg + 90), 32%, 13%)); display: grid; place-items: center; }
.tptv-poster--ph::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 30%, rgba(163,230,53,.16), transparent 62%); }
.tptv-poster--sport { background: linear-gradient(160deg, hsl(calc(var(--h) * 1deg + 90), 36%, 24%), #0d1411); }
.tptv-poster__label { position: relative; z-index: 1; font-family: var(--font-disp); font-weight: 800; font-size: 15px; letter-spacing: .02em; color: #fff; text-align: center; padding: 0 12px; text-shadow: 0 2px 12px rgba(0,0,0,.5); line-height: 1.2; }
.tptv-poster--ph::before { content: ""; position: absolute; left: 14px; right: 14px; bottom: 16px; height: 3px; border-radius: 3px; background: var(--neon); opacity: .85; box-shadow: 0 0 14px rgba(163,230,53,.6); z-index: 1; }

/* Auto-scrolling marquee (movies / sports) ------------------------------- */
.tptv-marquee { overflow: hidden; position: relative; width: 100%; padding: 10px 0 20px;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
	        mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.tptv-marquee__track { display: flex; width: max-content; will-change: transform; animation: tptv-marquee 70s linear infinite; }
.tptv-marquee--reverse .tptv-marquee__track { animation-direction: reverse; }
.tptv-marquee:hover .tptv-marquee__track { animation-play-state: paused; }
.tptv-marquee .tptv-poster { width: 240px; margin-right: 20px; } /* margin (not gap) so translateX(-50%) loops seamlessly */
.tptv-marquee .tptv-poster img { width: 100%; height: 100%; }
.tptv-marquee--reviews .tptv-marquee__track { animation-duration: 60s; }
.tptv-marquee--reviews .tptv-review { margin-right: 18px; }
@media (max-width: 680px) { .tptv-marquee--reviews .tptv-marquee__track { animation-duration: 40s; } }
@keyframes tptv-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 680px) {
	.tptv-marquee .tptv-poster { width: 160px; margin-right: 14px; }
	.tptv-marquee__track { animation-duration: 48s; }
}
@media (prefers-reduced-motion: reduce) {
	.tptv-marquee { overflow-x: auto; scrollbar-width: none; }
	.tptv-marquee::-webkit-scrollbar { display: none; }
	.tptv-marquee__track { animation: none; }
}

/* Brand / league chips --------------------------------------------------- */
.tptv-brandstrip, .tptv-leagues { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px; }
.tptv-brandchip, .tptv-league {
	font-family: var(--font-disp); font-weight: 600; font-size: 14px; color: var(--muted);
	padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line-soft); background: rgba(255,255,255,.02);
}
.tptv-league { display: inline-flex; align-items: center; justify-content: center; height: 58px; padding: 10px 20px; border-radius: 14px; background: #f5f7f6; border: 1px solid rgba(255,255,255,.08); box-shadow: 0 12px 28px -16px rgba(0,0,0,.7); transition: transform .2s ease, box-shadow .2s ease; }
.tptv-league:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -14px rgba(163,230,53,.4); }
.tptv-league img { height: 100%; width: auto; max-width: 120px; object-fit: contain; display: block; }
.tptv-section--sports { background: radial-gradient(900px 400px at 80% 0%, rgba(163,230,53,.05), transparent 60%), var(--bg-2); }

/* Hero device badges strip ----------------------------------------------- */
.tptv-hero__devicestrip { width: 100%; max-width: 660px; margin: 22px auto 0; opacity: .92; border-radius: 12px; }

/* Brand logos (white) ---------------------------------------------------- */
.tptv-brandlogo { display: inline-flex; align-items: center; height: 30px; opacity: .55; transition: opacity .2s ease, transform .2s ease; }
.tptv-brandlogo img { height: 100%; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.tptv-brandlogo:hover { opacity: 1; transform: translateY(-2px); }
.tptv-brandstrip { align-items: center; gap: 30px; }

/* WhatsApp review gallery ------------------------------------------------ */
.tptv-reviews { display: flex; gap: 18px; overflow-x: auto; padding: 8px 22px 22px; scroll-snap-type: x proximity; scrollbar-width: none; cursor: grab;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
	        mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent); }
.tptv-reviews::-webkit-scrollbar { display: none; }
.tptv-reviews.is-dragging { cursor: grabbing; }
.tptv-reviews.is-dragging img { pointer-events: none; }
.tptv-review { flex: none; width: 290px; margin: 0; scroll-snap-align: center; border-radius: 18px; overflow: hidden;
	border: 1px solid var(--line-soft); background: var(--panel); box-shadow: 0 18px 40px -22px rgba(0,0,0,.7);
	transition: transform .2s ease, border-color .2s ease; }
.tptv-review:hover { transform: translateY(-5px); border-color: var(--neon); }
.tptv-review img { width: 100%; height: auto; display: block; }
@media (max-width: 680px) { .tptv-review { width: 240px; } }

/* World map in CTA band -------------------------------------------------- */
.tptv-cta__map { position: absolute; inset: 0; margin: auto; width: 78%; max-width: 760px; height: auto; opacity: .14; pointer-events: none; filter: grayscale(.2); z-index: 0; }
.tptv-cta__title, .tptv-cta__sub, .tptv-cta__inner .tptv-btn { z-index: 1; }

/* Homepage guides (links to pillar/money pages) -------------------------- */
.tptv-guides { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.tptv-guidecard { display: flex; flex-direction: column; background: var(--panel); border: 1px solid var(--line-soft); border-radius: 16px; overflow: hidden; transition: transform .2s ease, border-color .2s ease; }
.tptv-guidecard:hover { transform: translateY(-5px); border-color: var(--neon); }
.tptv-guidecard__thumb { display: block; aspect-ratio: 16/10; background: var(--panel-2) 50% / cover no-repeat; }
.tptv-guidecard__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.tptv-guidecard__title { font-family: var(--font-disp); font-weight: 800; font-size: 17px; line-height: 1.3; color: var(--text); transition: color .15s; }
.tptv-guidecard:hover .tptv-guidecard__title { color: var(--neon); }
.tptv-guidecard__excerpt { color: var(--muted); font-size: 13.5px; line-height: 1.55; flex: 1; }
.tptv-guidecard__link { display: inline-flex; align-items: center; gap: 6px; color: var(--neon); font-weight: 700; font-size: 13.5px; font-family: var(--font-disp); margin-top: 2px; }
.tptv-guidecard__link svg { width: 15px; height: 15px; transition: transform .2s ease; }
.tptv-guidecard:hover .tptv-guidecard__link svg { transform: translateX(4px); }

/* Why choose us — split layout (features · center image · features) ------ */
.tptv-why2 { display: grid; grid-template-columns: 1fr minmax(300px, 360px) 1fr; gap: 36px; align-items: center; margin-top: 8px; }
.tptv-why2__col { display: flex; flex-direction: column; gap: 32px; }
.tptv-feat { display: flex; gap: 16px; align-items: flex-start; }
.tptv-feat__icon { width: 52px; height: 52px; flex: none; border-radius: 14px; display: grid; place-items: center; color: var(--neon); background: rgba(163,230,53,.1); border: 1px solid var(--line); transition: transform .2s, box-shadow .2s; }
.tptv-feat:hover .tptv-feat__icon { transform: translateY(-3px); box-shadow: 0 10px 26px -10px rgba(163,230,53,.5); }
.tptv-feat__icon svg { width: 24px; height: 24px; }
.tptv-feat__title { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.tptv-feat__desc { color: var(--muted); font-size: 14px; line-height: 1.55; margin: 0; }
/* left column mirrors so the icons point inward toward the image */
.tptv-why2__col--left .tptv-feat { flex-direction: row-reverse; text-align: right; }
.tptv-why2__media { position: relative; }
.tptv-why2__media img { width: 100%; border-radius: 22px; border: 1px solid var(--line); box-shadow: 0 34px 80px -34px rgba(0,0,0,.85), 0 0 0 1px rgba(163,230,53,.12); }
.tptv-why2__cta { position: absolute; left: 50%; bottom: -22px; transform: translateX(-50%); white-space: nowrap; box-shadow: 0 16px 36px -10px rgba(163,230,53,.75); }
/* keep the button centered on hover (override the primary-button hover transform) */
.tptv-why2__cta:hover { transform: translateX(-50%) translateY(-3px); }
@media (max-width: 960px) {
	.tptv-why2 { grid-template-columns: 1fr; gap: 28px; max-width: 560px; margin-inline: auto; }
	.tptv-why2__media { order: -1; max-width: 420px; margin: 0 auto 30px; }
	.tptv-why2__col { gap: 26px; }
	.tptv-why2__col--left .tptv-feat { flex-direction: row; text-align: left; }
}

/* Live-sports promo (text + image) --------------------------------------- */
.tptv-promo__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.tptv-promo__title { margin-bottom: 18px; }
.tptv-promo__accent { color: var(--neon); }
.tptv-promo__p { color: var(--muted); font-size: 15.5px; line-height: 1.7; margin: 0 0 16px; }
.tptv-promo__list { list-style: none; padding: 0; margin: 22px 0 28px; display: flex; flex-direction: column; gap: 13px; }
.tptv-promo__list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; font-weight: 500; color: var(--text); }
.tptv-promo__list .tptv-tick { width: 22px; height: 22px; flex: none; color: var(--neon); margin-top: 1px; }
.tptv-promo__media { position: relative; }
.tptv-promo__media img { width: 100%; height: auto; border-radius: 22px; border: 1px solid var(--line); box-shadow: 0 34px 80px -34px rgba(0,0,0,.85), 0 0 0 1px rgba(163,230,53,.12); }
@media (max-width: 880px) {
	.tptv-promo__grid { grid-template-columns: 1fr; gap: 32px; }
	.tptv-promo__media { order: -1; max-width: 560px; margin: 0 auto; }
}

/* Testimonials ----------------------------------------------------------- */
.tptv-tests { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tptv-test { background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 26px; margin: 0; }
.tptv-test__stars { display: flex; gap: 3px; color: var(--neon); margin-bottom: 14px; }
.tptv-test__stars span { width: 17px; height: 17px; }
.tptv-test blockquote { margin: 0 0 18px; font-size: 15.5px; color: var(--text); line-height: 1.65; }
.tptv-test figcaption { display: flex; align-items: center; gap: 11px; color: var(--muted); font-weight: 600; font-size: 14px; }
.tptv-test__avatar { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--neon), var(--neon-2)); color: var(--neon-ink); font-family: var(--font-disp); font-weight: 800; }

/* FAQ -------------------------------------------------------------------- */
.tptv-faq { display: flex; flex-direction: column; gap: 12px; }
.tptv-faq__item { background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius-sm); overflow: hidden; transition: border-color .2s; }
.tptv-faq__item[open] { border-color: var(--line); }
.tptv-faq__q { list-style: none; cursor: pointer; padding: 20px 22px; font-family: var(--font-disp); font-weight: 600; font-size: 16.5px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.tptv-faq__q::-webkit-details-marker { display: none; }
.tptv-faq__plus { position: relative; width: 18px; height: 18px; flex: none; }
.tptv-faq__plus::before, .tptv-faq__plus::after { content: ""; position: absolute; background: var(--neon); border-radius: 2px; transition: transform .25s ease; }
.tptv-faq__plus::before { top: 8px; left: 0; width: 18px; height: 2px; }
.tptv-faq__plus::after { left: 8px; top: 0; width: 2px; height: 18px; }
.tptv-faq__item[open] .tptv-faq__plus::after { transform: rotate(90deg); opacity: 0; }
.tptv-faq__a { padding: 0 22px 22px; color: var(--muted); font-size: 15px; }
.tptv-faq__a p { margin: 0; }

/* CTA band --------------------------------------------------------------- */
.tptv-cta { padding: 24px 0 96px; }
.tptv-cta__inner {
	text-align: center; background: linear-gradient(135deg, rgba(163,230,53,.14), rgba(132,204,22,.06));
	border: 1px solid var(--line); border-radius: 24px; padding: 56px 28px;
	position: relative; overflow: hidden;
}
.tptv-cta__inner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 240px at 50% 0%, rgba(163,230,53,.18), transparent 70%); }
.tptv-cta__title { font-size: clamp(26px, 4vw, 40px); font-weight: 800; position: relative; }
.tptv-cta__sub { color: var(--muted); font-size: 17px; margin: 14px auto 28px; max-width: 520px; position: relative; }
.tptv-cta .tptv-btn { position: relative; }

/* Footer (modern) -------------------------------------------------------- */
.tptv-footer { position: relative; background: linear-gradient(180deg, var(--bg-2), #0a0e0f); border-top: 1px solid var(--line); overflow: hidden; }
.tptv-footer__glow { position: absolute; top: -1px; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--neon), transparent); opacity: .55; }
.tptv-footer::before { content: ""; position: absolute; top: -140px; left: 50%; transform: translateX(-50%); width: 720px; height: 260px; background: radial-gradient(ellipse, rgba(163,230,53,.10), transparent 70%); pointer-events: none; }
.tptv-footer__main { position: relative; display: grid; grid-template-columns: 1.5fr 2fr; gap: 48px; padding: 66px 22px 38px; }
.tptv-footer__about { color: var(--muted); font-size: 14.5px; line-height: 1.65; margin: 18px 0 24px; max-width: 340px; }
.tptv-footer__sociallabel { display: block; font-family: var(--font-disp); font-weight: 700; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 12px; }
.tptv-footer__socialrow { display: flex; gap: 10px; }
.tptv-social { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; color: var(--text); background: rgba(255,255,255,.04); border: 1px solid var(--line-soft); transition: transform .18s ease, color .18s, background .18s, border-color .18s; }
.tptv-social svg { width: 19px; height: 19px; }
.tptv-social:hover { transform: translateY(-3px); color: var(--neon-ink); background: var(--neon); border-color: var(--neon); }
.tptv-social--whatsapp:hover { background: var(--whats); border-color: var(--whats); color: #fff; }
.tptv-footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tptv-footer__col h4 { font-size: 15px; font-weight: 700; margin-bottom: 18px; color: var(--text); }
.tptv-footer__col a { display: block; color: var(--muted); font-size: 14.5px; padding: 7px 0; transition: color .15s ease, padding-left .15s ease; }
.tptv-footer__col a:hover { color: var(--neon); padding-left: 5px; }
.tptv-footer__devices { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; margin-top: 14px; padding-top: 30px; border-top: 1px solid var(--line-soft); }
.tptv-footer__devices span { font-size: 13px; font-weight: 600; color: var(--muted-2); }
.tptv-footer__devices img { max-width: 540px; width: 100%; opacity: .85; }
.tptv-footer__bar { position: relative; border-top: 1px solid var(--line-soft); background: rgba(0,0,0,.28); }
.tptv-footer__barinner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 22px; flex-wrap: wrap; }
.tptv-footer__copy { color: var(--muted); font-size: 13px; margin: 0; font-weight: 500; }
.tptv-footer__disclaim { color: var(--muted-2); font-size: 12px; margin: 0; max-width: 600px; text-align: right; }
@media (max-width: 860px) {
	.tptv-footer__main { grid-template-columns: 1fr; gap: 38px; padding: 50px 22px 32px; }
	.tptv-footer__barinner { flex-direction: column; align-items: flex-start; }
	.tptv-footer__disclaim { text-align: left; }
}
@media (max-width: 540px) {
	.tptv-footer__cols { grid-template-columns: 1fr 1fr; gap: 22px 16px; }
}

/* Floating WhatsApp ------------------------------------------------------ */
.tptv-fab {
	position: fixed; left: 22px; bottom: 22px; z-index: 90;
	width: 56px; height: 56px; border-radius: 50%; background: var(--whats); color: #fff;
	display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(37,211,102,.7);
	transition: transform .2s; animation: tptv-fab 2.4s ease-in-out infinite;
}
.tptv-fab svg { width: 30px; height: 30px; }
.tptv-fab:hover { transform: scale(1.08); }
@keyframes tptv-fab { 0%,100% { box-shadow: 0 12px 30px -8px rgba(37,211,102,.7); } 50% { box-shadow: 0 12px 30px -8px rgba(37,211,102,.7), 0 0 0 12px rgba(37,211,102,0); } }

/* Country popup ---------------------------------------------------------- */
.tptv-popup { position: fixed; inset: 0; z-index: 100; background: rgba(5,8,9,.72); backdrop-filter: blur(6px); display: grid; place-items: center; padding: 22px; animation: tptv-fade .25s ease; }
.tptv-popup[hidden] { display: none; } /* respect the hidden attribute (class selector would otherwise override the UA rule) */
@keyframes tptv-fade { from { opacity: 0; } to { opacity: 1; } }
.tptv-popup__card { position: relative; background: var(--panel-2); border: 1px solid var(--line); border-radius: 20px; padding: 36px 32px; max-width: 420px; width: 100%; text-align: center; box-shadow: 0 40px 90px -30px rgba(0,0,0,.85); }
.tptv-popup__card h3 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.tptv-popup__card > p { color: var(--muted); margin: 0 0 24px; font-size: 15px; }
.tptv-popup__opts { display: flex; flex-direction: column; gap: 10px; }
.tptv-popup__opt { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-radius: 12px; border: 1px solid var(--line-soft); font-weight: 600; transition: border-color .15s, background .15s; }
.tptv-popup__opt:hover { border-color: var(--neon); background: rgba(163,230,53,.06); }
.tptv-popup__flag { width: 38px; height: 28px; border-radius: 6px; display: grid; place-items: center; overflow: hidden; background: rgba(255,255,255,.04); }
.tptv-popup__flag .tptv-flag { width: 30px; height: 22px; border-radius: 4px; }
.tptv-popup__close { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line-soft); background: transparent; color: var(--muted); cursor: pointer; font-size: 14px; }
.tptv-popup__close:hover { color: var(--text); border-color: var(--neon); }

/* Reveal animation ------------------------------------------------------- */
.tptv-section, .tptv-stats { }
/* Hide only when JS is active (html.tptv-anim); never leave content invisible without JS. */
.tptv-anim [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.tptv-anim [data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	[data-reveal] { opacity: 1; transform: none; transition: none; }
	.tptv-fab, .tptv-dot { animation: none; }
	html { scroll-behavior: auto; }
}

/* Responsive ------------------------------------------------------------- */
@media (max-width: 1080px) {
	.tptv-plans { grid-template-columns: repeat(2, 1fr); }
	.tptv-plan.is-popular { transform: none; }
	.tptv-plan.is-popular:hover { transform: translateY(-4px); }
}
@media (max-width: 920px) {
	.tptv-nav { display: none; }
	.tptv-header__cta { display: none; }
	.tptv-burger { display: flex; }
	.tptv-tests { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
	.tptv-section { padding: 60px 0; }
	.tptv-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 18px 0; }
	.tptv-stat:nth-child(2) { border-right: 0; }
	.tptv-stat:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); padding-bottom: 18px; }
	.tptv-plans { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
	.tptv-tests { grid-template-columns: 1fr; }
	.tptv-hero__cta { flex-direction: column; }
	.tptv-hero__cta .tptv-btn { width: 100%; }
	.tptv-logo__text { font-size: 17px; }
}
