/* Booty Addons — Hero Section
 * Crafted by the Thai Naxus team.
 */

.booty-hero {
	--booty-accent: #ff0080;
	--booty-bg: #0d0d0d;
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: var(--booty-bg);
	color: #fff;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	padding: 60px 24px 40px;
}

.booty-hero *,
.booty-hero *::before,
.booty-hero *::after {
	box-sizing: border-box;
}

/* Radial glow */
.booty-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 40%, color-mix(in srgb, var(--booty-accent) 10%, transparent) 0%, transparent 65%);
	pointer-events: none;
	z-index: 0;
}

/* Bottom fade */
.booty-hero::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 128px;
	background: linear-gradient(to top, color-mix(in srgb, var(--booty-bg) 92%, #000), transparent);
	pointer-events: none;
	z-index: 0;
}

/* Grain overlay */
.booty-grain {
	position: absolute;
	inset: 0;
	opacity: 0.03;
	pointer-events: none;
	z-index: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Inner container */
.booty-hero-inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Tagline */
.booty-tagline {
	color: var(--booty-accent);
	font-weight: 600;
	letter-spacing: 0.3em;
	font-size: 11px;
	text-transform: uppercase;
	margin: 0 0 32px;
	opacity: 0;
	animation: booty-fade-up 0.6s ease forwards;
}

/* Fan video stack */
.booty-fan-container {
	position: relative;
	height: 420px;
	width: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	margin-bottom: 48px;
}

.booty-video-card {
	position: absolute;
	bottom: 0;
	width: 200px;
	aspect-ratio: 9 / 16;
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
	transform-origin: 50% 100%;
	transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease, box-shadow 0.3s ease;
	will-change: transform, opacity;
}

.booty-video-card:hover {
	filter: brightness(1.08);
}

.booty-video-card.is-center {
	box-shadow: 0 0 60px color-mix(in srgb, var(--booty-accent) 35%, transparent);
	outline: 2px solid color-mix(in srgb, var(--booty-accent) 70%, transparent);
	outline-offset: -2px;
}

.booty-video-card:not(.is-center) {
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.booty-card-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 2;
	border-radius: 16px;
	pointer-events: none;
}

.booty-video-card iframe,
.booty-video-card img.booty-thumb {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: none;
	object-fit: cover;
	pointer-events: none;
}

/* Sound toggle */
.booty-sound-btn {
	position: absolute;
	bottom: 14px;
	right: 14px;
	z-index: 10;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s, transform 0.15s;
	pointer-events: auto;
}

.booty-sound-btn:hover {
	background: color-mix(in srgb, var(--booty-accent) 80%, transparent);
	transform: scale(1.1);
}

.booty-sound-btn:active {
	transform: scale(0.9);
}

.booty-sound-btn svg {
	width: 16px;
	height: 16px;
	stroke: #fff;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* Trust badges */
.booty-trust-row {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	opacity: 0;
	animation: booty-fade-up 0.6s 0.2s ease forwards;
}

.booty-trust-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.35);
	margin: 0;
}

.booty-trust-logos {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
}

.booty-trust-logos img {
	height: 28px;
	object-fit: contain;
	opacity: 0.45;
	filter: brightness(0) invert(1);
	transition: opacity 0.3s;
	max-width: 180px;
}

.booty-trust-logos img:hover {
	opacity: 0.7;
}

.booty-trust-divider {
	width: 1px;
	height: 24px;
	background: rgba(255, 255, 255, 0.15);
}

/* Dots */
.booty-dots {
	display: flex;
	gap: 8px;
	margin-bottom: 40px;
}

.booty-dot {
	height: 6px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.3);
	width: 6px;
	border: none;
	cursor: pointer;
	transition: width 0.35s ease, background 0.35s ease;
	padding: 0;
}

.booty-dot.active {
	width: 32px;
	background: var(--booty-accent);
}

/* Headline */
.booty-headline {
	font-size: clamp(2.4rem, 7vw, 4.5rem);
	font-weight: 800;
	text-align: center;
	line-height: 1.05;
	letter-spacing: -0.02em;
	margin: 0 0 16px;
	color: #fff;
	opacity: 0;
	animation: booty-fade-up 0.8s 0.2s ease forwards;
}

.booty-headline em {
	font-style: italic;
	color: var(--booty-accent);
}

.booty-subline {
	color: #9ca3af;
	font-size: 1.1rem;
	text-align: center;
	max-width: 520px;
	line-height: 1.7;
	margin: 0 0 40px;
	opacity: 0;
	animation: booty-fade-up 0.8s 0.4s ease forwards;
}

/* CTAs */
.booty-cta-group {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	opacity: 0;
	animation: booty-fade-up 0.8s 0.55s ease forwards;
}

.booty-btn-primary,
.booty-btn-secondary {
	padding: 16px 40px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 0.04em;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	transition: transform 0.18s, box-shadow 0.18s, background 0.18s, border-color 0.18s;
}

.booty-btn-primary {
	background: var(--booty-accent);
	color: #fff;
	border: none;
	box-shadow: 0 4px 32px color-mix(in srgb, var(--booty-accent) 40%, transparent);
}

.booty-btn-primary:hover {
	transform: scale(1.04);
	box-shadow: 0 0 40px color-mix(in srgb, var(--booty-accent) 50%, transparent);
	filter: brightness(0.92);
}

.booty-btn-primary:active {
	transform: scale(0.96);
}

.booty-btn-secondary {
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	background: transparent;
	backdrop-filter: blur(8px);
}

.booty-btn-secondary:hover {
	transform: scale(1.04);
	border-color: rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.05);
}

.booty-btn-secondary:active {
	transform: scale(0.96);
}

/* Keyframes */
@keyframes booty-fade-up {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive */
@media (max-width: 700px) {
	.booty-fan-container {
		height: 300px;
	}
	.booty-video-card {
		width: 130px;
	}
	.booty-cta-group {
		flex-direction: column;
		align-items: center;
	}
}
