/* T-Spark V2 Landing Page Style */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap');

:root {
	--tspark-blue: #0096d6;
	--tspark-red: #e2005c;
	--tspark-primary: var(--tspark-blue);
	--tspark-secondary: var(--tspark-red);
	--tspark-gradient: linear-gradient(135deg, var(--tspark-blue) 0%, var(--tspark-red) 100%);
	--tspark-bg-dark: #050505;
	--tspark-bg-card: #0f1218;
	--tspark-text: #ffffff;
	--tspark-border: rgba(0, 150, 214, 0.3);
	--tspark-glow: 0 0 15px rgba(0, 150, 214, 0.5);
	--tspark-glow-red: 0 0 15px rgba(226, 0, 92, 0.5);
}

.t-spark-page-v2 {
	background-color: var(--tspark-bg-dark);
	color: var(--tspark-text);
	font-family: 'Inter', sans-serif;
	overflow-x: hidden;
}

.t-spark-page-v2 img {
	max-width: 100%;
	height: auto;
}

/* Headers */
.v2-title {
	font-family: 'Orbitron', sans-serif !important;
	text-transform: uppercase;
	color: #fff !important;
	background: var(--tspark-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
	font-weight: 700;
	font-size: 3.5rem;
	margin-bottom: 50px;
	position: relative;
	text-align: center;
}

.v2-banners-main-wrapper .v2-title::after {
	content: "";
	position: absolute;
	bottom: 0px; /* Adjust line under title */
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, #0096d6 0%, #ffffff 100%);
}

.v2-section-title {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
	padding: 0 15px;
}

/* Hero Header */
.tspark-hero {
	position: relative;
	padding: 120px 0 0px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
}

.tspark-hero::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: linear-gradient(0deg, var(--tspark-bg-dark) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
	z-index: 1;
}

.tspark-hero__content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	padding: 20px;
}

.tspark-hero__logo {
	max-width: 280px;
	margin: 0 auto 10px;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 1s forwards;
}

.tspark-hero__logo img {
	width: 100%; height: auto;
	filter: drop-shadow(0 0 12px rgba(0, 150, 214, 0.6));
}

.tspark-hero__title {
	font-family: 'Orbitron', sans-serif !important;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 8rem;
	font-weight: 900;
	margin-bottom: 15px;
	color: #fff;
	text-shadow: 0 0 30px rgba(0, 150, 214, 0.4);
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 1s 0.2s forwards;
	line-height: 1;
	background: linear-gradient(to bottom, #fff 30%, var(--tspark-blue) 60%, var(--tspark-red) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.tspark-hero__subtitle {
	font-size: 1.1rem;
	margin-bottom: 50px;
	color: var(--tspark-secondary);
	font-family: 'Orbitron', sans-serif !important;
	letter-spacing: 5px;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 1s 0.4s forwards;
}

@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Combined Intro & Media Layer */
.v2-intro-media-section {
	max-width: 1200px;
	margin: 0 auto 50px;
	padding: 50px 15px 0px 15px;
}

.v2-combined-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr; /* Intro column slightly wider or balanced */
	gap: 30px;
}

.v2-intro-col {
	display: flex;
}

.v2-intro-col .v2-intro-box.hero-overlay {
	aspect-ratio: 1 / 1; /* Force square shape */
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-end;
	margin: 0 !important;
	max-width: none !important;
	text-align: right;
	position: relative;
	overflow: hidden; /* Keep image inside but allow it to be large */
	padding: 0 !important; /* Remove gap */
}

.v2-intro-img {
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	height: 100%;
	z-index: 1;
	pointer-events: none;
	display: flex;
	align-items: center;
}

.v2-intro-img::before {
	content: '';
	position: absolute;
	width: 150%;
	height: 150%;
	background: radial-gradient(circle, rgba(0, 150, 214, 0.15) 0%, transparent 70%);
	z-index: -1;
	filter: blur(50px);
}

.v2-intro-img img {
	height: 100%;
	width: 100%;
	max-width: none;
	object-fit: cover; /* Fill the square box */
	filter: drop-shadow(0 0 30px rgba(0,0,0,0.8));
	transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
	transform: none;
}

.v2-intro-box:hover .v2-intro-img img {
	transform: scale(1.05) translateX(0);
	filter: drop-shadow(0 0 40px rgba(0, 150, 214, 0.4));
}

.v2-intro-text {
	position: relative;
	z-index: 2;
	max-width: 70%;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.8;
	padding: 40px;
	background: linear-gradient(to top, rgba(15, 18, 24, 0.9), transparent); /* Shadow for text readability */
	border-radius: 0 0 8px 0;
}

.v2-media-col {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.v2-media-col .v2-media-box {
	margin: 0;
	width: 100%;
	position: relative;
}

@media (max-width: 1023px) {
	.v2-intro-media-section {
		padding-top: 30px;
	}
	.v2-combined-grid {
		grid-template-columns: 1fr;
	}
	.v2-intro-col .v2-intro-box.hero-overlay {
		aspect-ratio: auto !important; /* Allow vertical expansion */
		height: auto !important;
		min-height: auto;
		text-align: center;
		padding: 40px 20px;
		justify-content: center;
		align-items: center;
	}
	.v2-intro-img {
		position: static;
		height: auto;
		width: 180px;
		margin-bottom: 20px;
	}
	.v2-intro-img img {
		height: auto;
		width: 100%;
		transform: none;
	}
	.v2-intro-text {
		max-width: 100%;
		padding: 0;
		background: none;
	}
}

/* Intro Block Style (Preserved) */
.v2-intro-box {
	background: var(--tspark-bg-card);
	border: 1px solid var(--tspark-border);
	padding: 40px;
	border-radius: 8px;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	color: #fff;
	max-width: 800px;
	margin: 0 auto;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.6;
	z-index: 1;
}

.v2-intro-box::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(0, 150, 214, 0.15), transparent);
	transform: rotate(45deg);
	transition: 0.6s;
	z-index: -1;
}

.v2-intro-box:hover {
	transform: translateY(-10px);
	border-color: var(--tspark-blue);
	box-shadow: 0 0 20px rgba(0, 150, 214, 0.3), 0 0 40px rgba(226, 0, 92, 0.1);
}

.v2-intro-box:hover::before {
	left: 100%;
}

/* Quick Access Icons */
.v2-quick-access {
	max-width: 1200px;
	margin: -30px auto 30px;
	padding: 0 15px;
	position: relative;
	z-index: 10;
}

.v2-quick-wrapper {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.v2-quick-item {
	flex: 0 0 150px;
	text-align: center;
}

.v2-quick-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none !important;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	padding: 10px;
	border-radius: 50%; /* Make the whole card area circular for hover */
	position: relative;
}

/* Shine effect on the icon circle instead of square card */
.v2-quick-icon::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transform: rotate(45deg);
	transition: 0.6s;
	z-index: 3;
	pointer-events: none;
}

.v2-quick-card:hover .v2-quick-icon::before {
	left: 100%;
}

.v2-quick-card:hover {
	transform: translateY(-10px);
}

.v2-quick-icon {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(15, 18, 24, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-bottom: 15px;
	position: relative;
	z-index: 2;
	transition: all 0.4s ease;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.v2-quick-card:hover .v2-quick-icon {
	border-color: var(--tspark-blue);
	box-shadow: 0 0 25px rgba(0, 150, 214, 0.6);
	background: rgba(15, 18, 24, 0.8);
}

.v2-quick-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.v2-quick-card:hover .v2-quick-icon img {
	transform: scale(1.1);
}

.v2-quick-icon-placeholder {
	font-family: 'Orbitron', sans-serif;
	font-weight: 900;
	font-size: 24px;
	color: var(--tspark-blue);
}

.v2-quick-title {
	font-family: 'Orbitron', sans-serif !important;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: color 0.3s ease;
	position: relative;
	z-index: 2;
}

.v2-quick-card:hover .v2-quick-title {
	color: var(--tspark-blue);
}

/* Responsive Quick Access */
@media (max-width: 767px) {
	.v2-quick-access {
		margin-top: -20px;
	}
    .v2-quick-wrapper {
        gap: 10px;
    }
    .v2-quick-item {
        flex: 0 0 calc(50% - 10px);
    }
    .v2-quick-icon {
        width: 80px;
        height: 80px;
    }
    .v2-quick-title {
        font-size: 12px;
    }
}

/* Two Col Block: Youtube & Blog */
.v2-media-block {
	max-width: 1200px;
	margin: 0 auto 50px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	padding: 80px 15px 0px 15px;
}

.v2-media-box {
	background: var(--tspark-bg-card);
	border: 1px solid var(--tspark-border);
	border-radius: 8px;
	color: #fff;
	aspect-ratio: 16 / 9;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	overflow: hidden;
}

.v2-media-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.v2-media-box::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	border-radius: inherit;
	padding: 2px;
	background: linear-gradient(135deg, rgba(8,168,230,0.5), transparent, rgba(206,19,44,0.5));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: exclude;
	pointer-events: none;
	z-index: 10;
}

.v2-media-box iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.v2-media-box .v2-article-link {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0; left: 0;
	text-decoration: none;
	color: #fff;
	border-radius: 8px;
	overflow: hidden;
}

.v2-media-box .v2-article-bg {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	z-index: 1;
}

.v2-media-box .v2-article-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.v2-media-box .v2-article-placeholder {
	width: 100%;
	height: 100%;
	background: #111;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #555;
}

.v2-media-box .v2-article-text {
	position: absolute;
	bottom: 0; left: 0; width: 100%;
	padding: 60px 20px 20px;
	background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
	z-index: 2;
	text-align: center;
}

.v2-media-box .v2-article-text h3 {
	margin: 0;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	text-shadow: 0 2px 4px rgba(0,0,0,0.5);
	line-height: 1.4;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.v2-media-box .v2-article-link:hover .v2-article-bg img {
	transform: scale(1.05);
}

/* Featured Products Row */

.v2-featured-products {
	max-width: 1200px;
	margin: 0 auto 40px;
	display: block;
	padding: 0 60px 120px; /* Increased padding to allow space for arrows */
	position: relative;
}

/* Carousel Navigation Arrows */
.v2-featured-products .owl-nav button {
	position: absolute;
	top: 40%;
	transform: translateY(-50%);
	background: none !important;
	border: none !important;
	outline: none;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
}
.v2-featured-products .owl-nav .owl-prev { left: -48px; }
.v2-featured-products .owl-nav .owl-next { right: -48px; }
.v2-featured-products .owl-nav button:hover svg path {
	stroke: var(--tspark-primary);
}

/* Custom Dark Product Loop */
.v2-featured-products .products-owl {
	padding: 15px 0; /* Increased to prevent clipping of high-lift hover animations */
}
/* Ensure the carousel stage doesn't cut off our neon-glare & lift animations, without horizontal spill */
.v2-featured-products .owl-stage-outer {
	padding: 30px 0 !important; /* Expansion for hover */
	margin: -30px 0 !important; /* Pull it back to maintain layout */
	overflow: hidden !important; /* Keep horizontal items hidden */
}
.v2-featured-products .pro-loop {
	background: var(--tspark-bg-card) !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	border-radius: 12px !important;
	overflow: hidden !important;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 12px rgba(0,0,0,0.5) !important;
}
/* Force inner blocks to be transparent and borderless so the dark card shows through */
.v2-featured-products .pro-loop .product-block,
.v2-featured-products .pro-loop .product-resize,
.v2-featured-products .pro-loop .product-detail,
.v2-featured-products .pro-loop .box-pro-detail {
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.v2-featured-products .pro-loop:hover {
	transform: translateY(-5px);
	box-shadow: 0 0 20px rgba(0, 150, 214, 0.4) !important;
	border-color: var(--tspark-blue) !important;
	outline: 1px solid var(--tspark-blue);
}

.v2-featured-products .pro-loop .product-img {
	margin-bottom: 15px !important;
	border-radius: 8px !important;
	overflow: hidden !important;
	background: transparent !important;
}
.v2-featured-products .pro-loop .product-detail {
	padding: 0 15px 15px 15px !important;
	text-align: left !important;
}
.v2-featured-products .pro-loop .pro-name {
	margin-bottom: 8px !important;
}
.v2-featured-products .pro-loop .pro-name a {
	color: #fff !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	line-height: 1.5 !important;
}
.v2-featured-products .pro-loop .pro-price {
	color: var(--tspark-primary) !important;
	font-size: 16px !important;
	font-weight: 700 !important;
}

.v2-product-box {
	background: #fff;
	color: #000;
	border-radius: 4px;
	text-align: center;
	min-height: 200px;
}

/* Legacy product overrides */
.t-spark-page-v2 .pro-loop {
	background: #fff;
	color: #000;
	border: 1px solid #ddd;
	margin-bottom: 20px;
	height: 100%;
}
.t-spark-page-v2 .pro-loop:hover {
	border-color: var(--tspark-primary);
}
.t-spark-page-v2 .product-title a { color: #000 !important; }
.t-spark-page-v2 .pro-price { color: var(--tspark-primary) !important; font-weight: bold; }

/* Section Title */
.v2-section-title {
	text-align: center;
	margin-bottom: 20px;
}
.v2-section-title h2 {
	font-size: 3rem;
	letter-spacing: 2px;
}

/* Banners Section with Scoop Style - Metallic Titanium Concept */
.v2-banners-main-wrapper {
	position: relative;
	margin-top: 10px;
	padding-top: 45px;
	/* Multi-layered Metallic Background with Noise Texture */
	background: 
		radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.294) 0%, transparent 75%),
		radial-gradient(ellipse at 0% 0%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
		radial-gradient(ellipse at 100% 0%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
		/* Subtle Noise Texture Overlay */
		url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"), 
		#0a0a0a !important;
	background-blend-mode: color-dodge, normal, normal, overlay, normal !important;
	overflow: hidden;
	-webkit-clip-path: polygon(0 30px, calc(50% - 180px) 30px, calc(50% - 150px) 0, calc(50% + 150px) 0, calc(50% + 180px) 30px, 100% 30px, 100% 100%, 0 100%);
	clip-path: polygon(0 30px, calc(50% - 180px) 30px, calc(50% - 150px) 0, calc(50% + 150px) 0, calc(50% + 180px) 30px, 100% 30px, 100% 100%, 0 100%);
}

.v2-banners-glow-border {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	z-index: 1;
	pointer-events: none;
}

.v2-banners-glow-border::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; height: 100%;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
	opacity: 0.6;
	-webkit-mask: 
		polygon(0 30px, calc(50% - 180px) 30px, calc(50% - 150px) 0, calc(50% + 150px) 0, calc(50% + 180px) 30px, 100% 30px, 100% 100%, 0 100%) content-box,
		polygon(1px 31px, calc(50% - 180px) 31px, calc(50% - 151px) 1px, calc(50% + 151px) 1px, calc(50% + 180px) 31px, calc(100% - 1px) 31px, calc(100% - 1px) 100%, 1px 100%);
	mask: 
		polygon(0 30px, calc(50% - 180px) 30px, calc(50% - 150px) 0, calc(50% + 150px) 0, calc(50% + 180px) 30px, 100% 30px, 100% 100%, 0 100%) content-box,
		polygon(1px 31px, calc(50% - 180px) 31px, calc(50% - 151px) 1px, calc(50% + 151px) 1px, calc(50% + 180px) 31px, calc(100% - 1px) 31px, calc(100% - 1px) 100%, 1px 100%);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	z-index: 5;
}

/* Position Title in the scoop */
.v2-banners-main-wrapper .v2-section-title {
	position: relative;
	z-index: 10;
	margin-top: -35px;
	margin-bottom: 50px;
}

.v2-banners-main-wrapper .v2-title {
	font-size: 2.2rem !important;
	padding-bottom: 5px;
	margin-bottom: 0px !important;
}

.v2-banners-main-wrapper .v2-title::after {
	bottom: 0px; /* Adjust line under title */
}

/* Main Banners */
.v2-banners-wrapper {
	position: relative;
	z-index: 20;
	max-width: 1200px;
	margin: 0 auto 50px;
	padding: 0 15px 25px 15px;
}

.v2-hero-banner {
	position: relative;
	background-color: #222;
	background-size: cover;
	background-position: center;
	min-height: 400px;
	margin-bottom: 30px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.v2-banner-card {
	background: rgba(15, 18, 24, 0.4);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	color: #fff;
	padding: 40px;
	width: 40%;
	min-width: 300px;
	margin-left: 5%;
	border-radius: 8px;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.v2-banner-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(0, 150, 214, 0.15), transparent);
	transform: rotate(45deg);
	transition: 0.6s;
	z-index: 0;
	pointer-events: none;
}

.v2-banner-card:hover {
	transform: translateY(-10px);
	border-color: var(--tspark-blue);
	box-shadow: 0 0 20px rgba(0, 150, 214, 0.3), 0 0 40px rgba(255, 255, 255, 0.05);
}

.v2-banner-card:hover::before {
	left: 100%;
}

.v2-banner-card > * {
	position: relative;
	z-index: 1;
}

.v2-banner-card h3 {
	font-family: 'Orbitron', sans-serif !important;
	font-size: 24px;
	margin-bottom: 15px;
	color: #b1e2ff !important;
	-webkit-text-fill-color: #b1e2ff;
}

.v2-banner-card p {
	font-size: 16px;
	margin-bottom: 25px;
}

.v2-banner-card .tspark-btn {
	color: #fff;
}

/* Small Banners Row */
.v2-small-banners {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	row-gap: 50px; /* Space between rows */
	margin-bottom: 0px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.v2-small-banner {
	background: rgba(15, 18, 24, 0.4);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	display: flex;
	flex-direction: column;
}

.v2-small-banner::before {
	content: '';
	position: absolute;
	top: -50%; left: -50%;
	width: 200%; height: 200%;
	background: linear-gradient(45deg, transparent, rgba(0, 150, 214, 0.15), transparent);
	transform: rotate(45deg);
	transition: 0.6s;
	z-index: 2;
	pointer-events: none;
}

.v2-small-banner:hover {
	transform: translateY(-10px);
	border-color: var(--tspark-blue);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 150, 214, 0.2);
}

.v2-small-banner:hover::before {
	left: 100%;
}

.v2-small-banner .v2-sb-img {
	width: 100%;
	display: block;
	transition: transform 0.5s ease;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.v2-small-banner:hover .v2-sb-img {
	transform: scale(1.02);
}

.v2-small-banner-info {
	padding: 30px 20px;
	text-align: center;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 1;
}

.v2-small-banner-info p {
	margin-bottom: 20px;
	color: #fff;
	font-size: 16px;
	opacity: 0.9;
	line-height: 1.6;
}

/* Shared Button Styles */
.tspark-btn {
	display: inline-block;
	padding: 12px 30px;
	background: transparent;
	border: 2px solid var(--tspark-blue);
	color: #fff;
	font-family: 'Orbitron', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s;
	position: relative;
	z-index: 1;
	border-image: linear-gradient(to right, var(--tspark-blue), var(--tspark-red)) 1;
	text-decoration: none !important;
}

.tspark-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: var(--tspark-gradient);
	z-index: -1;
	transition: all 0.3s;
}

.tspark-btn:hover {
	color: #fff;
	box-shadow: 0 0 15px rgba(0, 150, 214, 0.5);
}

.tspark-btn:hover::before { width: 100%; }

.tspark-btn--dark {
	color: #000;
	border-image: linear-gradient(to right, #000, #333) 1;
}

.tspark-btn--dark:hover { color: #fff; }

.v2-footer-wrapper {
	position: relative;
	margin-top: -30px; /* Offset for the scoop height */
	padding-top: 30px;
	background: linear-gradient(to bottom, #5FE1EE 0%, #4C72F9 100%) !important;
	overflow: hidden;
}

/* Background Effects */
.v2-footer-wrapper::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: 
		linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
		repeating-linear-gradient(to bottom, transparent 0, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px);
	z-index: 0;
	pointer-events: none;
}

/* The Scoop (Top Edge) */
.v2-footer-wrapper {
	-webkit-clip-path: polygon(0 30px, calc(50% - 140px) 30px, calc(50% - 110px) 0, calc(50% + 110px) 0, calc(50% + 140px) 30px, 100% 30px, 100% 100%, 0 100%);
	clip-path: polygon(0 30px, calc(50% - 140px) 30px, calc(50% - 110px) 0, calc(50% + 110px) 0, calc(50% + 140px) 30px, 100% 30px, 100% 100%, 0 100%);
}

.v2-footer-wrapper::after {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	-webkit-clip-path: inherit;
	clip-path: inherit;
	box-shadow: inset 0 30px 40px rgba(95, 225, 238, 0.3);
	pointer-events: none;
	z-index: 1;
}

/* Scoop Border Glow */
.v2-footer-glow-border {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	z-index: 1;
	pointer-events: none;
}

.v2-footer-glow-border::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; height: 100%;
	background: linear-gradient(135deg, #5FE1EE 0%, rgba(0, 0, 0, 0) 60%);
	opacity: 0.7;
	-webkit-mask: 
		polygon(0 30px, calc(50% - 140px) 30px, calc(50% - 110px) 0, calc(50% + 110px) 0, calc(50% + 140px) 30px, 100% 30px, 100% 100%, 0 100%) content-box,
		polygon(1px 31px, calc(50% - 140px) 31px, calc(50% - 111px) 1px, calc(50% + 111px) 1px, calc(50% + 140px) 31px, calc(100% - 1px) 31px, calc(100% - 1px) 100%, 1px 100%);
	mask: 
		polygon(0 30px, calc(50% - 140px) 30px, calc(50% - 110px) 0, calc(50% + 110px) 0, calc(50% + 140px) 30px, 100% 30px, 100% 100%, 0 100%) content-box,
		polygon(1px 31px, calc(50% - 140px) 31px, calc(50% - 111px) 1px, calc(50% + 111px) 1px, calc(50% + 140px) 31px, calc(100% - 1px) 31px, calc(100% - 1px) 100%, 1px 100%);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
}

/* Footer Block */
.v2-footer-block {
	position: relative;
	z-index: 10;
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 60px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 25px 15px 100px 15px;
	align-items: center;
}

.v2-footer-img {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

/* Background Glow for image */
.v2-footer-img::before {
	content: '';
	position: absolute;
	width: 80%;
	height: 80%;
	background: radial-gradient(circle, rgba(0, 150, 214, 0.2) 0%, transparent 70%);
	z-index: -1;
	filter: blur(40px);
}

.v2-footer-img img {
	max-width: 100%;
	height: auto;
	/* filter: drop-shadow(0 0 30px rgba(0,0,0,0.8)); */
	transition: transform 0.5s ease;
}

.v2-footer-img:hover img {
	transform: scale(1.05) rotate(-2deg);
}

.v2-footer-title {
	font-family: 'Orbitron', sans-serif !important;
	text-transform: uppercase;
	color: #b1e2ff !important;
	display: inline-block;
	font-weight: 700;
	font-size: 2.8rem;
	margin-bottom: 25px;
	line-height: 1.2;
	position: relative;
	word-break: keep-all;
	overflow-wrap: normal;
}

.v2-footer-title::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 60px;
	height: 3px;
	background: var(--tspark-gradient);
}

.v2-footer-content p {
	color: #fff;
	opacity: 0.8;
	font-size: 16px;
	margin-bottom: 35px;
	line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
	.tspark-hero__title {
		font-size: 3.2rem !important; /* Fix PREMIUM MODEL KIT cut off */
		letter-spacing: 1px;
	}
	.tspark-hero__subtitle {
		font-size: 0.9rem;
		letter-spacing: 2px;
		margin-bottom: 30px;
	}
	.v2-banners-main-wrapper .v2-title {
		font-size: 1.5rem !important;
	}
	.v2-media-block, .v2-small-banners, .v2-footer-block {
		grid-template-columns: 1fr;
	}
	.v2-featured-products {
		grid-template-columns: 1fr 1fr;
	}
	.v2-banner-card {
		width: 90%;
		margin: 20px auto;
	}
	.v2-section-title h2 {
		font-size: 1.6rem;
	}

	/* Fix Banner & Footer Scoop on Mobile */
	.v2-banners-main-wrapper, .v2-footer-wrapper {
		-webkit-clip-path: polygon(0 15px, calc(50% - 140px) 15px, calc(50% - 120px) 0, calc(50% + 120px) 0, calc(50% + 140px) 15px, 100% 15px, 100% 100%, 0 100%) !important;
		clip-path: polygon(0 15px, calc(50% - 140px) 15px, calc(50% - 120px) 0, calc(50% + 120px) 0, calc(50% + 140px) 15px, 100% 15px, 100% 100%, 0 100%) !important;
		padding-top: 40px !important;
	}

	.v2-banners-main-wrapper .v2-section-title {
		margin-top: -30px !important; /* Lowered further from edge to avoid slanted clip */
		margin-bottom: 20px !important;
	}

	.v2-banners-glow-border::before, .v2-footer-glow-border::before {
		-webkit-mask: 
			polygon(0 15px, calc(50% - 120px) 15px, calc(50% - 100px) 0, calc(50% + 100px) 0, calc(50% + 120px) 15px, 100% 15px, 100% 100%, 0 100%) content-box,
			polygon(1px 16px, calc(50% - 120px) 16px, calc(50% - 101px) 1px, calc(50% + 101px) 1px, calc(50% + 120px) 16px, calc(100% - 1px) 16px, calc(100% - 1px) 100%, 1px 100%) !important;
		mask: 
			polygon(0 15px, calc(50% - 120px) 15px, calc(50% - 100px) 0, calc(50% + 100px) 0, calc(50% + 120px) 15px, 100% 15px, 100% 100%, 0 100%) content-box,
			polygon(1px 16px, calc(50% - 120px) 16px, calc(50% - 101px) 1px, calc(50% + 101px) 1px, calc(50% + 120px) 16px, calc(100% - 1px) 16px, calc(100% - 1px) 100%, 1px 100%) !important;
	}
}
