/* ================================================
   4Hub.app — Dark Glassmorphism + Neon Theme
   ================================================ */

/* Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--bg-primary: #0a0a0f;
	--bg-secondary: #12121a;
	--bg-card: rgba(255, 255, 255, 0.03);
	--bg-card-hover: rgba(255, 255, 255, 0.06);
	--accent-cyan: #00d4ff;
	--accent-violet: #7c3aed;
	--accent-green: #06ffa5;
	--accent-pink: #ff006e;
	--text-primary: #ffffff;
	--text-secondary: #8b8fa3;
	--text-muted: rgba(255, 255, 255, 0.45);
	--border-subtle: rgba(255, 255, 255, 0.07);
	--border-glow: rgba(0, 212, 255, 0.3);
	--gradient-main: linear-gradient(135deg, #00d4ff, #7c3aed);
	--gradient-bg: linear-gradient(160deg, #0a0a0f 0%, #0f0f1a 40%, #110d20 100%);
	--glass-bg: rgba(255, 255, 255, 0.04);
	--glass-border: rgba(255, 255, 255, 0.08);
	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 20px;
	--shadow-glow: 0 0 30px rgba(0, 212, 255, 0.08);
	--shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
	--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', sans-serif;
	line-height: 1.8;
	margin: 0 auto;
	background: var(--gradient-bg);
	color: var(--text-primary);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Background ambient blobs */
body::before {
	content: '';
	position: fixed;
	top: -20%;
	left: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
	pointer-events: none;
	z-index: -1;
}

body::after {
	content: '';
	position: fixed;
	bottom: -20%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(0, 212, 255, 0.04) 0%, transparent 70%);
	pointer-events: none;
	z-index: -1;
}

h1 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 5.5rem;
	line-height: 1.05;
	font-weight: 700;
	letter-spacing: -2.5px;
}

h2 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 3.2rem;
	line-height: 1.2;
	letter-spacing: -1px;
}

h3 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.6rem;
}

h4 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.3rem;
}

h5 {
	font-size: .85rem;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-weight: 600;
}

h1, h2, h3, h4, h5 {
	font-weight: 700;
	color: var(--text-primary);
}

p {
	font-size: 1.1rem;
	font-weight: 400;
	color: var(--text-secondary);
	line-height: 1.8;
}

p.large {
	font-size: 1.15rem;
	color: rgba(255, 255, 255, 0.7);
	margin: 0.8rem 0;
}

p.small {
	font-size: 0.95rem;
	font-weight: 400;
	color: var(--text-secondary);
}

p.visible {
	font-weight: 400;
}

a {
	text-decoration: none;
	color: var(--text-primary);
	transition: color var(--transition);
}

/* Selection highlight */
::selection {
	background: rgba(0, 212, 255, 0.2);
	color: var(--accent-cyan);
}

/* Gradient text utility */
.gradient-text {
	background: var(--gradient-main);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

img {
	max-width: 100%;
	-webkit-user-drag: none;
	user-select: none;
}

hr {
	width: 50px;
	border: none;
	height: 3px;
	background: var(--gradient-main);
	margin: 1rem auto;
	border-radius: 3px;
}

/* ===== LAYOUT ===== */
.landing_page {
	max-width: 1440px;
	margin: 0 auto;
	background: transparent;
	overflow: hidden;
}

#intro_section {
	width: 100%;
	margin: 0 auto;
	padding: 0 5rem;
	position: relative;
	background: radial-gradient(ellipse at 20% 50%, rgba(124, 58, 237, 0.07) 0%, transparent 50%),
				radial-gradient(ellipse at 80% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
}

h1 + hr {
	margin: 0;
	margin-bottom: 1.8rem;
}

/* ===== BUTTONS ===== */
.btn {
	display: inline-block;
	font-family: 'Inter', sans-serif;
	font-size: 0.9rem;
	font-weight: 600;
	padding: 0.65rem 1.6rem;
	color: var(--bg-primary);
	background: var(--gradient-main);
	border: 2px solid transparent;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: all var(--transition);
	letter-spacing: 0.3px;
	position: relative;
	overflow: hidden;
}

.btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent);
	opacity: 0;
	transition: opacity var(--transition);
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(0, 212, 255, 0.25);
	color: var(--bg-primary);
}

.btn:hover::before {
	opacity: 1;
}

.outline {
	background: transparent;
	color: var(--accent-cyan);
	border: 2px solid rgba(0, 212, 255, 0.5);
}

.outline:hover {
	background: rgba(0, 212, 255, 0.1);
	color: var(--text-primary);
	border-color: var(--accent-cyan);
	box-shadow: 0 8px 28px rgba(0, 212, 255, 0.15);
}

.intro_content .outline {
	margin-left: 1rem;
}

.fa-gift {
	font-size: 0.9rem;
	color: var(--accent-cyan);
	margin-left: 0.4rem;
	transition: color var(--transition);
}

.outline:hover .fa-gift {
	color: var(--text-primary);
}

/* ===== SECTIONS ===== */
section {
	margin: 0 auto;
	padding: 5rem 0;
	text-align: center;
	width: 90%;
}

.intro_content,
.card {
	text-align: start;
}

/* ===== HEADER / NAVBAR ===== */
.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 0;
}

.logo {
	display: inline-block;
	width: 10rem;
	height: auto;
}

ul {
	list-style: none;
}

.header_ul {
	display: flex;
	gap: 2.2rem;
}

.header_ul li {
	font-weight: 600;
	font-size: 0.88rem;
}

.header_ul li a {
	color: var(--text-secondary);
	position: relative;
	padding: 0.3rem 0;
	transition: color var(--transition);
}

.header_ul li a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gradient-main);
	transition: width var(--transition);
	border-radius: 2px;
}

.header_ul li a:hover {
	color: var(--accent-cyan);
}

.header_ul li a:hover::after {
	width: 100%;
}

/* Social media */
ul.social_media {
	display: flex;
	gap: 0.8rem;
}

.fa-bars {
	color: var(--text-secondary);
	font-size: 1.3rem;
	display: none;
	cursor: pointer;
	transition: color var(--transition);
}

.fa-bars:hover {
	color: var(--accent-cyan);
}

.media_icon {
	font-size: 1.6rem;
	color: var(--text-secondary);
	transition: all var(--transition);
}

.header .media_icon:hover {
	color: var(--accent-cyan);
	transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
#content_header {
	position: relative;
	min-height: 85vh;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
	border-radius: var(--radius-lg);
	margin: 2rem 0 4rem;
}

/* --- Hero Carousel Background --- */
.hero_carousel_bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.5rem;
	opacity: 0.18;
	pointer-events: none;
	overflow: hidden;
}

.hero_row {
	display: flex;
	gap: 0.5rem;
	width: max-content;
	will-change: transform;
}

.hero_row img {
	height: 220px;
	width: auto;
	border-radius: var(--radius-sm);
	object-fit: cover;
	flex-shrink: 0;
	filter: saturate(0.7);
}

.hero_row_1 {
	animation: heroScroll1 40s linear infinite;
}

.hero_row_2 {
	animation: heroScroll2 50s linear infinite;
}

.hero_row_3 {
	animation: heroScroll3 45s linear infinite;
}

@keyframes heroScroll1 {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@keyframes heroScroll2 {
	0% { transform: translateX(-50%); }
	100% { transform: translateX(0); }
}

@keyframes heroScroll3 {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* Dark gradient overlay on top of carousel */
.hero_overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(to right, var(--bg-primary) 0%, transparent 25%, transparent 75%, var(--bg-primary) 100%),
		linear-gradient(to bottom, var(--bg-primary) 0%, rgba(10,10,15,0.3) 30%, rgba(10,10,15,0.3) 70%, var(--bg-primary) 100%),
		linear-gradient(135deg, rgba(10,10,15,0.6) 0%, rgba(124,58,237,0.08) 50%, rgba(0,212,255,0.06) 100%);
	pointer-events: none;
}

/* Hero content sits on top */
#content_header .intro_content {
	position: relative;
	z-index: 2;
	max-width: 600px;
	padding: 3rem;
}

@keyframes float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-18px); }
}

/* ===== CONTENT BOX / CATEGORY CARDS ===== */
.content_box {
	position: relative;
	padding-bottom: 4rem;
}

.content_box i {
	position: absolute;
	color: rgba(255, 255, 255, 0.25);
	cursor: pointer;
	font-size: 1.4rem;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9;
	transition: all var(--transition);
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--border-subtle);
	backdrop-filter: blur(10px);
}

.content_box i:hover {
	color: var(--accent-cyan);
	background: rgba(0, 212, 255, 0.08);
	border-color: var(--border-glow);
	box-shadow: var(--shadow-glow);
}

.prev_card { left: -25px; }
.next_card { right: -25px; }

.sticky_slider {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
}

.card {
	height: 100%;
	width: calc(100% / 3);
	display: inline-block;
	padding: 0 0.7rem;
	vertical-align: top;
}

.card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: var(--radius-md);
	border: 1px solid var(--glass-border);
	transition: all var(--transition);
}

.card:hover img {
	border-color: rgba(0, 212, 255, 0.2);
	box-shadow: 0 4px 20px rgba(0, 212, 255, 0.08);
}

.card_title {
	display: flex;
	gap: 0.4rem;
	align-items: center;
	margin: 0.75rem 0 0.5rem;
}

.card_hr_line {
	flex: 2;
	height: 1.2rem;
	width: 100%;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.card > p {
	white-space: normal;
	color: var(--text-secondary);
}

p.more_visible {
	font-weight: 600;
	color: var(--accent-cyan);
}

.channels_number {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.65rem;
	line-height: 1.3;
	font-weight: 700;
	margin-right: 0.3rem;
	background: var(--gradient-main);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ===== CHANNELS SLIDER ===== */
.channels_slider {
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2.5rem;
	border-top: 1px solid var(--border-subtle);
	border-bottom: 1px solid var(--border-subtle);
	padding: 1.2rem 0;
}

.channels_slider img {
	height: 8rem;
	opacity: 0.45;
	filter: grayscale(30%);
	transition: all var(--transition);
}

.channels_slider img:hover {
	opacity: 0.85;
	filter: grayscale(0%);
}

/* ===== MOVIE & SHOW SLIDERS ===== */
.slider-container {
	position: relative;
	margin-bottom: 6rem;
	overflow: hidden;
	border-radius: var(--radius-md);
}

.slider,
.slider__shows {
	width: 100%;
	display: flex;
	gap: 0.5rem;
}

.slider img,
.slider__shows img {
	max-height: 620px;
	width: calc(100% / 3);
	border: none;
	border-radius: var(--radius-sm);
	filter: brightness(0.45) saturate(0.85);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider img:hover,
.slider__shows img:hover {
	filter: brightness(0.95) saturate(1.15);
	transform: scale(1.03);
	z-index: 2;
}

.slider-container i {
	position: absolute;
	color: var(--text-primary);
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(12px);
	cursor: pointer;
	height: 46px;
	width: 46px;
	font-size: 1rem;
	line-height: 46px;
	text-align: center;
	border-radius: 50%;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9;
	border: 1px solid var(--glass-border);
	transition: all var(--transition);
}

.slider-container i:hover {
	background: rgba(0, 212, 255, 0.15);
	border-color: var(--border-glow);
	color: var(--accent-cyan);
	box-shadow: var(--shadow-glow);
}

.slider-container .fa-solid {
	display: none;
}

.slider-container:hover .fa-solid {
	display: block;
}

.prev, .prev__serie { left: 16px; }
.next, .next__serie { right: 16px; }

/* ===== ABOUT US ===== */
#about_us,
#FAQ_section {
	text-align: start;
	display: grid;
	grid-template-columns: 1fr 1fr;
	justify-content: center;
	align-items: center;
	gap: 4rem;
}

#about_us hr,
#FAQ_section hr {
	margin: 0;
	margin-bottom: 1.5rem;
}

#about_us img {
	height: 640px;
	width: 100%;
	object-fit: cover;
	border-radius: var(--radius-lg);
	border: 1px solid var(--glass-border);
}

/* About Video Wrapper */
.about_video_wrapper {
	position: relative;
	width: 100%;
	height: 640px;
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.about_video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius-lg);
	display: block;
}

/* Decorative frame border */
.about_video_frame {
	position: absolute;
	inset: 12px;
	border: 2px solid rgba(0, 212, 255, 0.25);
	border-radius: calc(var(--radius-lg) - 4px);
	pointer-events: none;
	z-index: 2;
	transition: border-color var(--transition);
}

.about_video_wrapper:hover .about_video_frame {
	border-color: rgba(0, 212, 255, 0.45);
	box-shadow: inset 0 0 30px rgba(0, 212, 255, 0.06);
}

/* Floating Price Badge */
.about_price_badge {
	position: absolute;
	bottom: 28px;
	right: 28px;
	z-index: 3;
	width: 180px;
	padding: 1.4rem 1.2rem;
	background: rgba(10, 10, 15, 0.82);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border: 1px solid rgba(0, 212, 255, 0.2);
	border-radius: var(--radius-md);
	text-align: center;
	transition: all var(--transition);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.about_price_badge:hover {
	transform: translateY(-4px);
	border-color: rgba(0, 212, 255, 0.45);
	box-shadow: 0 16px 50px rgba(0, 212, 255, 0.12), 0 12px 40px rgba(0, 0, 0, 0.5);
}

.about_price_badge .badge_label {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 2.5px;
	color: var(--accent-cyan);
	font-weight: 600;
	margin-bottom: 0.2rem;
	line-height: 1.2;
}

.about_price_badge .badge_price {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.1;
	background: var(--gradient-main);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
}

.about_price_badge .badge_desc {
	font-size: 0.72rem;
	color: var(--text-secondary);
	line-height: 1.5;
	font-weight: 400;
}

ul.service_offers li {
	padding-left: 2rem;
	background: url('../Assets/icons/checkmark.svg') no-repeat;
	background-size: 1.3rem;
	background-position: center left;
}

#about_us li p.large {
	color: var(--text-secondary);
}

#about_us ul.social_media {
	align-items: center;
	margin-top: 0.5rem;
}

#about_us .media_icon:hover {
	color: var(--accent-cyan);
}

/* ===== FEATURES ===== */
#features {
	padding: 6rem 0;
}

.features_grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.4rem;
	margin-top: 3rem;
}

.f_card {
	padding: 2rem 1.5rem;
	background: var(--glass-bg);
	backdrop-filter: blur(16px);
	border-radius: var(--radius-md);
	border: 1px solid var(--glass-border);
	transition: all var(--transition);
	position: relative;
	overflow: hidden;
}

.f_card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--gradient-main);
	opacity: 0;
	transition: opacity var(--transition);
}

.f_card:hover {
	background: var(--bg-card-hover);
	border-color: rgba(0, 212, 255, 0.12);
	transform: translateY(-5px);
	box-shadow: var(--shadow-glow);
}

.f_card:hover::before {
	opacity: 1;
}

.f_card img {
	height: 4rem;
	margin-bottom: 1.2rem;
}

.f_card hr {
	margin: 0.75rem 0;
}

a.link,
.fa-arrow-right {
	color: var(--accent-cyan);
	transition: all var(--transition);
}

.f_card a:hover,
.f_card a:hover .fa-arrow-right {
	color: var(--accent-violet);
}

/* ===== PRICING ===== */
.pricing_grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.4rem;
	margin-top: 3rem;
}

.pack {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2.5rem 1.2rem;
	gap: 1.2rem;
	border: 1px solid var(--glass-border);
	border-radius: var(--radius-lg);
	background: var(--glass-bg);
	backdrop-filter: blur(16px);
	transition: all var(--transition);
	position: relative;
	overflow: hidden;
}

.pack::after {
	content: '';
	position: absolute;
	inset: -1px;
	background: var(--gradient-main);
	border-radius: var(--radius-lg);
	z-index: -1;
	opacity: 0;
	transition: opacity var(--transition);
}

.pack:hover {
	border-color: transparent;
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0, 212, 255, 0.1);
	background: rgba(10, 10, 15, 0.95);
}

.pack:hover::after {
	opacity: 1;
}

.pack h3 {
	color: var(--text-secondary);
	font-weight: 500;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 3px;
}

.pack h2 {
	font-family: 'Space Grotesk', sans-serif;
	background: var(--gradient-main);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: 0;
	margin-top: -0.5rem;
	font-size: 3rem;
}

h2 sup {
	font-size: 1.3rem;
}

.pack ul li {
	text-align: start;
	background: url('../Assets/icons/checkmark_gray.svg') left center no-repeat;
	background-size: 1.1rem;
	margin-bottom: 0.15rem;
}

.pack li p {
	letter-spacing: 0.4px;
	padding-left: 1.6rem;
	color: var(--text-secondary);
}

.pack .btn.outline {
	border-color: rgba(0, 212, 255, 0.3);
	color: var(--accent-cyan);
	font-size: 0.85rem;
}

.pack:hover .btn.outline {
	border-color: var(--accent-cyan);
	box-shadow: 0 0 20px rgba(0, 212, 255, 0.12);
}

.best_pack {
	display: none;
}

.best_pack_container {
	border-color: rgba(0, 212, 255, 0.2);
}

.best_pack_container .best_pack {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	background: var(--gradient-main);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.box-left, .box-right {
	width: 28px;
	height: 1px;
	background: var(--gradient-main);
}

/* ===== FAQ ===== */
#FAQ_section {
	padding-top: 6rem;
	gap: 4rem;
}

#FAQ_section img {
	width: 100%;
	border-radius: var(--radius-lg);
}

#FAQ_section ul li {
	cursor: pointer;
}

#FAQ_section ul li p {
	position: relative;
}

.fa-plus {
	color: var(--accent-cyan);
	position: absolute;
	right: 0;
	transition: transform var(--transition), color var(--transition);
}

.faq_item:hover .fa-plus {
	transform: rotate(90deg);
	color: var(--accent-violet);
}

.faq_list .faq_item {
	padding: 0.7rem 0;
	border-bottom: 1px solid var(--border-subtle);
	transition: border-color var(--transition);
}

.faq_list .faq_item:hover {
	border-bottom-color: rgba(0, 212, 255, 0.15);
}

.faq_item .question {
	color: var(--text-primary);
	transition: color var(--transition);
}

.faq_item:hover .question {
	color: var(--accent-cyan);
}

.answer_box {
	display: none;
	padding: 0.5rem 0;
}

.answer_box p {
	color: var(--text-secondary);
}

/* ===== FREE TRIAL SECTION ===== */
#free_offer {
	padding: 8rem 2rem;
	text-align: center;
	background-image: url('../Assets/Logo/trial_background.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-lg);
	overflow: hidden;
}

#free_offer::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(10, 10, 15, 0.88), rgba(124, 58, 237, 0.25), rgba(0, 212, 255, 0.08));
	z-index: 0;
}

#free_offer > * {
	position: relative;
	z-index: 1;
}

#free_offer h2 {
	font-size: 3.5rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

#free_offer hr {
	width: 3rem;
	height: 3px;
	background: var(--gradient-main);
	margin: 1rem auto;
}

#free_offer p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 1.05rem;
	margin-bottom: 0.5rem;
}

#free_offer .btn {
	margin-top: 2rem;
	padding: 0.85rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	border-radius: var(--radius-sm);
	cursor: pointer;
}

#free_offer .btn:hover {
	box-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
}

/* Trial Form */
.trial_form {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.55s ease, opacity 0.4s ease, margin-top 0.4s ease;
	margin-top: 0;
	width: 100%;
	max-width: 620px;
}

.trial_form.open {
	max-height: 900px;
	opacity: 1;
	margin-top: 2rem;
}

#free_offer .device_label {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 1rem;
	text-align: left;
	letter-spacing: 0.3px;
}

.required_star {
	color: var(--accent-pink);
}

.device_grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.65rem;
	margin-bottom: 1.5rem;
}

.device_card {
	width: 155px;
	border-radius: var(--radius-md);
	padding: 1.3rem 0.7rem 0.9rem;
	text-align: center;
	cursor: pointer;
	transition: all var(--transition);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	outline: 2px solid transparent;
	outline-offset: 2px;
	backdrop-filter: blur(8px);
}

.device_card i {
	font-size: 1.8rem;
	color: rgba(255, 255, 255, 0.9);
}

.device_card span {
	color: var(--text-primary);
	font-size: 0.8rem;
	font-weight: 600;
	line-height: 1.3;
}

.device_card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.device_card.selected {
	outline: 2px solid var(--accent-cyan);
	transform: translateY(-5px);
	box-shadow: 0 12px 32px rgba(0, 212, 255, 0.18);
}

#free_offer .trial_submit_btn {
	display: none;
	margin-top: 0.5rem;
}

#free_offer .trial_submit_btn.visible {
	display: inline-block;
}

/* ===== CONTACT / SUPPORT ===== */
#contact_us {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 6rem 2rem;
}

.support_info {
	max-width: 620px;
	width: 100%;
}

.support_info h2 {
	font-size: 2.8rem;
}

.support_info p.large {
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 2rem;
}

.support_badges {
	display: flex;
	justify-content: center;
	gap: 0.8rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.4rem 1rem;
	border-radius: 999px;
	border: 1px solid rgba(0, 212, 255, 0.2);
	color: var(--accent-cyan);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.3px;
	background: rgba(0, 212, 255, 0.04);
	backdrop-filter: blur(8px);
}

.badge i {
	font-size: 0.85rem;
	color: var(--accent-cyan);
}

.whatsapp_btn {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	background: linear-gradient(135deg, #25D366, #128C7E);
	color: var(--text-primary);
	font-size: 1rem;
	font-weight: 700;
	padding: 1rem 2rem;
	border-radius: var(--radius-sm);
	text-decoration: none;
	transition: all var(--transition);
	margin-bottom: 1.5rem;
	border: none;
}

.whatsapp_btn i {
	font-size: 1.4rem;
}

.whatsapp_btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 35px rgba(37, 211, 102, 0.22);
}

.support_email {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin-top: 0.5rem;
}

.support_email a {
	color: var(--accent-cyan);
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* ===== FOOTER ===== */
footer {
	padding: 0 2rem;
	border-top: 1px solid var(--border-subtle);
}

footer .header {
	height: 40px;
	align-items: center;
	border-bottom: 1px solid var(--border-subtle);
	padding: 0.4rem 0;
}

.copyright_text {
	display: flex;
	justify-content: space-between;
	padding: 1rem 0;
}

.copyright_text p {
	color: var(--text-muted);
	font-size: 0.88rem;
}

/* ===== REVIEWS CAROUSEL ===== */
#reviews_section {
	width: 100%;
	padding: 5rem 0;
	overflow: hidden;
}

#reviews_section h2,
#reviews_section > hr,
#reviews_section > p {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}

#reviews_section > p {
	margin-top: 0.8rem;
	margin-bottom: 2.5rem;
}

.reviews_carousel_wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.reviews_carousel_wrapper::before,
.reviews_carousel_wrapper::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 150px;
	z-index: 2;
	pointer-events: none;
}

.reviews_carousel_wrapper::before {
	left: 0;
	background: linear-gradient(to right, var(--bg-primary), transparent);
}

.reviews_carousel_wrapper::after {
	right: 0;
	background: linear-gradient(to left, var(--bg-primary), transparent);
}

.reviews_track {
	display: flex;
	gap: 1.4rem;
	padding: 1rem 0 1.5rem;
	width: max-content;
	animation: reviews_scroll 38s linear infinite;
}

.reviews_track:hover {
	animation-play-state: paused;
}

.review_card {
	flex-shrink: 0;
	width: 265px;
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	border: 1px solid var(--glass-border);
	transition: all var(--transition);
}

.review_card:hover {
	transform: scale(1.04) translateY(-5px);
	box-shadow: 0 18px 50px rgba(0, 212, 255, 0.1);
	border-color: rgba(0, 212, 255, 0.2);
}

.review_card img {
	width: 100%;
	height: auto;
	display: block;
}

@keyframes reviews_scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* ===== SEO OVERVIEW ===== */
#iptv_overview,
#seo_hub {
	padding: 5rem 0;
}

.seo_grid,
.seo_content_grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.4rem;
	margin-top: 3rem;
	text-align: left;
}

.seo_card {
	padding: 2rem 1.5rem;
	background: var(--glass-bg);
	border-radius: var(--radius-md);
	border-left: 3px solid var(--accent-cyan);
	backdrop-filter: blur(10px);
	transition: all var(--transition);
}

.seo_card:hover {
	background: var(--bg-card-hover);
	transform: translateY(-3px);
}

.seo_card h3 {
	font-size: 1.3rem;
	margin-bottom: 0.6rem;
}

.seo_card p {
	font-size: 0.92rem;
	color: var(--text-secondary);
	line-height: 1.75;
}

.seo_card p strong {
	color: var(--accent-cyan);
}

/* Hero SEO tagline */
p.seo_tagline {
	font-size: 0.95rem;
	color: var(--text-muted);
	margin: 0.6rem 0 1.2rem;
	max-width: 460px;
	font-weight: 400;
	line-height: 1.7;
}

p.seo_tagline strong {
	color: rgba(255, 255, 255, 0.6);
}

/* Footer SEO Links */
.footer_seo_links {
	padding: 0.75rem 0 1rem;
	border-top: 1px solid var(--border-subtle);
	text-align: center;
	margin-top: 0.5rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.3rem 1rem;
}

.footer_seo_links a {
	color: var(--text-muted);
	font-size: 0.73rem;
	text-decoration: none;
	transition: color var(--transition);
}

.footer_seo_links a:hover {
	color: var(--accent-cyan);
}

/* ===================================================
   RESPONSIVE
   =================================================== */

@media screen and (max-width: 1300px) {
	#intro_section {
		padding: 0 3rem;
	}
}

@media screen and (min-width: 600px) and (max-width: 1100px) {
	#content_header {
		min-height: 65vh;
		margin: 1.5rem 0 3rem;
	}

	.hero_row img {
		height: 160px;
	}

	section { padding: 3rem 0; }

	#free_offer { padding: 6rem 2rem; }

	.card { width: calc(100% / 2); }

	.slider img,
	.slider__shows img {
		max-height: 560px;
		width: calc(100% / 2);
	}

	.pricing_grid,
	.features_grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media screen and (max-width: 1000px) {
	.header_ul,
	.header ul.social_media {
		display: none;
	}

	.fa-bars { display: block; }

	#about_us,
	#FAQ_section {
		grid-template-columns: 1fr;
	}

	#FAQ_section img {
		width: 70%;
		margin: 0 auto;
	}

	.seo_grid,
	.seo_content_grid {
		grid-template-columns: 1fr;
	}

	/* Mobile dropdown */
	#intro_section { position: relative; }

	.header_ul.mobile-open {
		display: flex !important;
		flex-direction: column;
		align-items: flex-start;
		position: absolute;
		top: 80px;
		left: 0;
		right: 0;
		background: rgba(10, 10, 15, 0.97);
		backdrop-filter: blur(24px);
		-webkit-backdrop-filter: blur(24px);
		padding: 1.2rem 2rem;
		z-index: 999;
		gap: 0.3rem;
		border-bottom: 1px solid var(--border-glow);
		box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
		margin: 0;
	}

	.header_ul.mobile-open li a {
		font-size: 0.95rem;
		color: var(--text-secondary);
		display: block;
		padding: 0.5rem 0;
		transition: color var(--transition);
	}

	.header_ul.mobile-open li a::after {
		display: none;
	}

	.header_ul.mobile-open li a:hover {
		color: var(--accent-cyan);
	}
}

@media screen and (max-width: 600px) {
	h1 {
		font-size: 2.6rem;
		line-height: 1.1;
		letter-spacing: -1px;
	}

	h2 { font-size: 1.8rem; }
	h4 { font-size: 1.15rem; }

	p.large {
		font-size: 0.93rem;
		margin: 0.15rem 0;
	}

	p { font-size: 0.9rem; }

	#content_header {
		min-height: 55vh;
		margin: 1rem 0 2rem;
		border-radius: var(--radius-sm);
	}

	#content_header .intro_content {
		padding: 2rem 1.5rem;
	}

	.hero_row img {
		height: 110px;
	}

	.logo {
		height: auto;
		width: 7rem;
	}

	section { padding: 2rem 0; }

	#free_offer {
		padding: 4rem 1.2rem;
		border-radius: var(--radius-sm);
	}

	#intro_section { padding: 0 1.5rem; }

	.content_box { margin: 0 0.5rem; }
	.slider-container { margin-bottom: 3rem; }

	.channels_slider { gap: 0.8rem; }
	.channels_slider img { height: 4rem; }

	#about_us img {
		height: 300px;
		border-radius: var(--radius-md);
	}

	.about_video_wrapper {
		height: 320px;
	}

	.about_video_frame {
		inset: 8px;
	}

	.about_price_badge {
		bottom: 18px;
		right: 18px;
		width: 155px;
		padding: 1rem 0.9rem;
	}

	.about_price_badge .badge_price {
		font-size: 2.2rem;
	}

	.card_title { margin: 0.7rem 0 0; }
	.card { width: 100%; }
	.card img { height: 180px; }

	.slider img,
	.slider__shows img { width: 100%; }

	.pricing_grid,
	.features_grid {
		grid-template-columns: 1fr;
	}

	footer .header { border-bottom: 1px solid var(--border-subtle); }

	.copyright_text {
		flex-direction: column;
		text-align: center;
		gap: 0.3rem;
	}

	.copyright_text p { font-size: 0.8rem; }
}
