.ll-f2d80034-wrapper {
	--bg-base: #050505;
	--glow-primary: #d4af37;
	--glow-secondary: #8c6239;
	--anim-speed: 20s;
	--orb-base-size: 500px;
    --streak-opacity: 0.25;
    --ambient-pulse: 0.4;
    --orb-opacity: 0.45;
    --particle-opacity: 0.35;
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bg-base);
	overflow: hidden;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	perspective: 1000px;
}

/* Background Effects Container */
.ll-f2d80034-bg-fx {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
	z-index: 0; /* Ensure it stays strictly behind content */
}

/* 1. Noise */
.ll-f2d80034-noise {
	position: absolute;
	inset: -50%;
	width: 200%;
	height: 200%;
	background-image: 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.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
	opacity: 0.04;
}

.has-auto-animation .ll-f2d80034-noise {
	animation: noise_f2d80034 8s steps(10) infinite;
}

@keyframes noise_f2d80034 {
	0%, 100% { transform: translate(0, 0); }
	10% { transform: translate(-5%, -5%); }
	20% { transform: translate(-10%, 5%); }
	30% { transform: translate(5%, -10%); }
	40% { transform: translate(-5%, 15%); }
	50% { transform: translate(-10%, 5%); }
	60% { transform: translate(15%, 0); }
	70% { transform: translate(0, 15%); }
	80% { transform: translate(3%, 35%); }
	90% { transform: translate(-10%, 10%); }
}

/* 2. Smoky Gradient */
.ll-f2d80034-smoky-gradient {
	position: absolute;
	inset: -20%;
    width: 140%;
    height: 140%;
	background: radial-gradient(circle at 30% 70%, rgba(20, 15, 10, 0.4) 0%, transparent 50%),
				radial-gradient(circle at 70% 30%, rgba(15, 20, 25, 0.3) 0%, transparent 50%);
	filter: blur(40px);
}

.has-auto-animation .ll-f2d80034-smoky-gradient {
	animation: smoky_f2d80034 calc(var(--anim-speed) * 1.5) ease-in-out infinite alternate;
}

@keyframes smoky_f2d80034 {
	0% { transform: scale(1) rotate(0deg); opacity: 0.5; }
	100% { transform: scale(1.2) rotate(10deg); opacity: 0.8; }
}

/* 3. Floating Orbs */
.ll-f2d80034-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px); /* Slightly reduced for better visibility on mobile */
	opacity: var(--orb-opacity);
	will-change: transform, opacity;
}

.ll-f2d80034-orb.orb-1 {
	width: var(--orb-base-size);
	height: var(--orb-base-size);
	background: var(--glow-primary);
	top: -10%;
	right: -10%;
}

.ll-f2d80034-orb.orb-2 {
	width: calc(var(--orb-base-size) * 0.8);
	height: calc(var(--orb-base-size) * 0.8);
	background: var(--glow-secondary);
	bottom: -10%;
	left: -10%;
}

.has-auto-animation .ll-f2d80034-orb.orb-1 {
	animation: float_orb1_f2d80034 var(--anim-speed) infinite ease-in-out alternate;
}
.has-auto-animation .ll-f2d80034-orb.orb-2 {
	animation: float_orb2_f2d80034 calc(var(--anim-speed) * 1.2) infinite ease-in-out alternate-reverse;
}

@keyframes float_orb1_f2d80034 {
	0% { transform: translate(0, 0) scale(1); }
	100% { transform: translate(-15vw, 20vh) scale(1.2); }
}
@keyframes float_orb2_f2d80034 {
	0% { transform: translate(0, 0) scale(1); }
	100% { transform: translate(20vw, -15vh) scale(1.3); }
}

/* 4. Ambient Pulse behind card */
.ll-f2d80034-ambient-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vh;
    max-width: 800px;
    background: radial-gradient(ellipse at center, var(--glow-primary) 0%, transparent 60%);
    filter: blur(120px);
    opacity: 0.1;
    mix-blend-mode: screen;
}

.has-auto-animation .ll-f2d80034-ambient-pulse {
    animation: pulse_ambient_f2d80034 calc(var(--anim-speed) * 0.8) infinite ease-in-out alternate;
}

@keyframes pulse_ambient_f2d80034 {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: calc(0.1 * var(--ambient-pulse)); }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: var(--ambient-pulse); }
}

/* 5. Light Beams */
.ll-f2d80034-light-beam {
	position: absolute;
	width: 2px;
	height: 150vh;
	background: linear-gradient(to bottom, transparent, rgba(255,255,255,1) 50%, transparent);
	filter: blur(4px);
	opacity: 0;
	transform-origin: center center;
}

.ll-f2d80034-light-beam.beam-1 {
	left: 30%;
	top: -25vh;
	transform: rotate(35deg);
}

.ll-f2d80034-light-beam.beam-2 {
	right: 20%;
	top: -25vh;
	transform: rotate(-25deg);
}

.has-auto-animation .ll-f2d80034-light-beam.beam-1 {
	animation: beam_sweep_f2d80034 calc(var(--anim-speed) * 0.8) infinite linear;
}
.has-auto-animation .ll-f2d80034-light-beam.beam-2 {
	animation: beam_sweep_f2d80034 calc(var(--anim-speed)) infinite linear 7s;
}

@keyframes beam_sweep_f2d80034 {
	0% { transform: rotate(35deg) translateX(-50vw); opacity: 0; }
	10% { opacity: var(--streak-opacity); }
	50% { transform: rotate(35deg) translateX(50vw); opacity: 0; }
	100% { transform: rotate(35deg) translateX(50vw); opacity: 0; }
}

/* 6. Particles */
.ll-f2d80034-particles {
	position: absolute;
	inset: -10%;
    width: 120%;
    height: 120%;
	background-image: 
		radial-gradient(1px 1px at 20px 30px, rgba(255,255,255,0.8), rgba(0,0,0,0)),
		radial-gradient(1px 1px at 40px 70px, rgba(255,255,255,0.6), rgba(0,0,0,0)),
		radial-gradient(1px 1px at 50px 160px, rgba(255,255,255,0.4), rgba(0,0,0,0)),
		radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.7), rgba(0,0,0,0)),
		radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.5), rgba(0,0,0,0));
	background-repeat: repeat;
	background-size: 200px 200px;
	opacity: var(--particle-opacity);
}

.has-auto-animation .ll-f2d80034-particles {
	animation: particle_rise_f2d80034 calc(var(--anim-speed) * 3) linear infinite;
}

@keyframes particle_rise_f2d80034 {
	0% { background-position: 0 0; }
	100% { background-position: 100px -1000px; }
}

/* 7. Optional Mouse Spotlight */
.ll-f2d80034-mouse-spotlight {
	position: absolute;
	inset: 0;
	background: radial-gradient(600px circle at var(--spotlight-x, 50%) var(--spotlight-y, 50%), rgba(255,255,255,0.05), transparent 60%);
	opacity: 0;
	transition: opacity 0.5s ease;
    mix-blend-mode: overlay;
}

.has-mouse-spotlight.ll-f2d80034-wrapper:hover .ll-f2d80034-mouse-spotlight {
	opacity: 1;
}

.ll-f2d80034-vignette {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at center, transparent 20%, rgba(0,0,0,0.8) 100%);
	pointer-events: none;
}


/* Layout & Typography */
.ll-f2d80034-container {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 640px;
	padding: 60px 20px;
	display: flex;
	justify-content: center;
	transform-style: preserve-3d;
}

.ll-f2d80034-content {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background: rgba(255, 255, 255, 0.015);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 32px;
	padding: 50px 40px;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
	opacity: 0;
	transform: translateY(40px) scale(0.98);
	animation: cinematicReveal_f2d80034 1.2s forwards cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes cinematicReveal_f2d80034 {
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.ll-f2d80034-title {
	font-size: clamp(2.5rem, 6vw, 3.5rem);
	font-weight: 300;
	margin: 0 0 12px 0;
	color: #fff;
	letter-spacing: -0.03em;
	line-height: 1.1;
	background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.6) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	opacity: 0;
	animation: fadeUp_f2d80034 1s 0.2s forwards cubic-bezier(0.19, 1, 0.22, 1);
}

.ll-f2d80034-subtitle {
	font-size: clamp(1rem, 3vw, 1.125rem);
	font-weight: 300;
	color: rgba(255, 255, 255, 0.6);
	margin: 0 0 48px 0;
	line-height: 1.6;
	max-width: 400px;
	opacity: 0;
	animation: fadeUp_f2d80034 1s 0.3s forwards cubic-bezier(0.19, 1, 0.22, 1);
}

/* Buttons */
.ll-f2d80034-links {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.ll-f2d80034-btn {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 20px 28px;
	text-decoration: none;
	color: #fff;
	position: relative;
	border-radius: 20px;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeUp_f2d80034 0.8s forwards cubic-bezier(0.19, 1, 0.22, 1);
	transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.ll-f2d80034-btn:nth-child(1) { animation-delay: 0.4s; }
.ll-f2d80034-btn:nth-child(2) { animation-delay: 0.45s; }
.ll-f2d80034-btn:nth-child(3) { animation-delay: 0.5s; }
.ll-f2d80034-btn:nth-child(4) { animation-delay: 0.55s; }
.ll-f2d80034-btn:nth-child(5) { animation-delay: 0.6s; }

.ll-f2d80034-btn-bg {
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.03);
	border-radius: inherit;
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
	z-index: 0;
}

.ll-f2d80034-btn-border-glow {
	position: absolute;
	inset: -1px;
	border-radius: 21px;
	background: linear-gradient(90deg, transparent, var(--glow-primary), transparent);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
	filter: blur(8px);
}

.ll-f2d80034-btn::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: radial-gradient(600px circle at var(--btn-mouse-x, 50%) var(--btn-mouse-y, 50%), rgba(255,255,255,0.08), transparent 40%);
	opacity: 0;
	transition: opacity 0.3s;
	z-index: 1;
	pointer-events: none;
}

.ll-f2d80034-btn:hover {
	transform: translateY(-4px) scale(1.02);
}

.ll-f2d80034-btn:hover .ll-f2d80034-btn-bg {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.2);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.ll-f2d80034-btn:hover .ll-f2d80034-btn-border-glow {
	opacity: 0.4;
}

.ll-f2d80034-btn:hover::after {
	opacity: 1;
}

.ll-f2d80034-btn-icon {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-right: 20px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 20px;
	transition: all 0.4s ease;
}

.ll-f2d80034-btn:hover .ll-f2d80034-btn-icon {
	background: #fff;
	color: #000 !important;
	transform: scale(1.1) rotate(5deg);
}

.ll-f2d80034-btn-icon svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
	transition: fill 0.3s ease;
}

.ll-f2d80034-btn-text {
	position: relative;
	z-index: 2;
	font-size: 1.15rem;
	font-weight: 400;
	letter-spacing: 0.02em;
	flex-grow: 1;
	text-align: left;
	transition: transform 0.4s ease;
}

.ll-f2d80034-btn:hover .ll-f2d80034-btn-text {
	transform: translateX(5px);
}

.ll-f2d80034-btn-arrow {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	opacity: 0;
	transform: translateX(-15px);
	transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
	color: rgba(255,255,255,0.5);
}

.ll-f2d80034-btn:hover .ll-f2d80034-btn-arrow {
	opacity: 1;
	transform: translateX(0);
	color: #fff;
}

@keyframes fadeUp_f2d80034 {
	0% { opacity: 0; transform: translateY(30px); }
	100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
	.ll-f2d80034-container { padding: 40px 16px; }
	.ll-f2d80034-content { padding: 40px 24px; border-radius: 28px; }
	.ll-f2d80034-btn { padding: 16px 20px; border-radius: 16px; }
	.ll-f2d80034-btn-icon { width: 36px; height: 36px; font-size: 16px; margin-right: 16px; border-radius: 10px; }
	.ll-f2d80034-btn-icon svg { width: 16px; height: 16px; }
	.ll-f2d80034-title { font-size: 2.2rem; }
	.ll-f2d80034-btn:hover { transform: none; }
	.ll-f2d80034-btn:hover .ll-f2d80034-btn-icon { transform: none; }
	.ll-f2d80034-btn:hover .ll-f2d80034-btn-text { transform: none; }
	
	/* Mobile specifics - Keep animations visible! */
	.ll-f2d80034-orb {
		filter: blur(60px); /* Less blur so it's clearer on small screens */
	}
	.has-auto-animation .ll-f2d80034-noise { display: block; opacity: 0.03; }
	.has-auto-animation .ll-f2d80034-light-beam { display: block; }
}