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

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	background: url("bg.jpg") center/cover no-repeat fixed;
	min-height: 100vh;
	position: relative;
	overflow-x: hidden;
}

.background-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(40, 20, 0, 0.3) 50%, rgba(0, 0, 0, 0.4) 100%);
	z-index: -1;
}

/* Simplified background particles - lighter performance */
.background-overlay::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image:
		radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(247, 147, 30, 0.15) 0%, transparent 50%);
	animation: backgroundShift 30s ease-in-out infinite;
}

/* Cool floating particles */
.background-overlay::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image:
		radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.3) 0%, transparent 8px),
		radial-gradient(circle at 80% 70%, rgba(247, 147, 30, 0.25) 0%, transparent 6px),
		radial-gradient(circle at 40% 80%, rgba(255, 215, 0, 0.2) 0%, transparent 10px),
		radial-gradient(circle at 90% 20%, rgba(255, 107, 53, 0.2) 0%, transparent 7px),
		radial-gradient(circle at 10% 60%, rgba(247, 147, 30, 0.3) 0%, transparent 5px),
		radial-gradient(circle at 70% 40%, rgba(255, 215, 0, 0.25) 0%, transparent 9px);
	background-size:
		200px 200px,
		150px 150px,
		300px 300px,
		180px 180px,
		120px 120px,
		250px 250px;
	animation: floatParticles 20s ease-in-out infinite;
	opacity: 0.8;
}

@keyframes floatParticles {

	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}

	25% {
		transform: translateY(-20px) rotate(90deg);
	}

	50% {
		transform: translateY(-40px) rotate(180deg);
	}

	75% {
		transform: translateY(-20px) rotate(270deg);
	}
}

@keyframes backgroundShift {

	0%,
	100% {
		transform: translateX(0) translateY(0);
	}

	25% {
		transform: translateX(-10px) translateY(-5px);
	}

	50% {
		transform: translateX(5px) translateY(-10px);
	}

	75% {
		transform: translateX(-5px) translateY(5px);
	}
}

.hero-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	position: relative;
}

.container {
	max-width: 900px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-content {
	background: linear-gradient(135deg,
			rgba(255, 255, 255, 0.12) 0%,
			rgba(255, 255, 255, 0.06) 50%,
			rgba(255, 255, 255, 0.12) 100%);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 107, 53, 0.4);
	border-radius: 24px;
	padding: 3rem 2.5rem;
	box-shadow:
		0 20px 40px rgba(0, 0, 0, 0.5),
		0 0 0 1px rgba(255, 107, 53, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.15),
		0 0 50px rgba(255, 107, 53, 0.1);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	animation: contentGlow 4s ease-in-out infinite alternate;
	width: 100%;
}

@keyframes contentGlow {
	0% {
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 107, 53, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 50px rgba(255, 107, 53, 0.1);
	}

	100% {
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 107, 53, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 80px rgba(255, 107, 53, 0.2);
	}
}

/* Enhanced shimmer effect */
.hero-content::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
	animation: shimmer 3s infinite;
}

@keyframes shimmer {
	0% {
		left: -100%;
	}

	100% {
		left: 100%;
	}
}

.logo-section {
	margin-bottom: 2rem;
	position: relative;
	text-align: center;
}

.logo {
	display: none;
}

.title {
	font-size: 4rem;
	font-weight: 900;
	background: linear-gradient(135deg, #ff6b35 0%, #f7931e 25%, #ffd700 50%, #f7931e 75%, #ff6b35 100%);
	background-size: 200% 200%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 2rem;
	letter-spacing: -0.02em;
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	animation: gradientShift 3s ease-in-out infinite, titlePulse 2s ease-in-out infinite alternate;
	position: relative;
}

@keyframes gradientShift {

	0%,
	100% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}
}

@keyframes titlePulse {
	0% {
		transform: scale(1);
		filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.3));
	}

	100% {
		transform: scale(1.02);
		filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.6));
	}
}

.title::after {
	content: "";
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 4px;
	background: linear-gradient(90deg, #ff6b35, #f7931e, #ffd700);
	border-radius: 2px;
	animation: expandLine 2s ease-out 0.5s forwards, lineGlow 3s ease-in-out infinite alternate;
}

@keyframes expandLine {
	to {
		width: 60%;
	}
}

@keyframes lineGlow {
	0% {
		box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
	}

	100% {
		box-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
	}
}

.subtitle {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.95);
	font-weight: 600;
	margin-bottom: 2.5rem;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	animation: subtitleFloat 3s ease-in-out infinite;
}

@keyframes subtitleFloat {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-5px);
	}
}

.description {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.95);
	line-height: 1.7;
	margin-bottom: 3rem;
	max-width: 650px;
	margin-left: auto;
	margin-right: auto;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	animation: descriptionFade 2s ease-out 1s both;
}

@keyframes descriptionFade {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Video Section */
.video-section {
	margin: 0 -2rem 3rem -2rem;
	animation: videoSlideIn 0.8s ease-out 0.8s both;
	position: relative;
	width: 100%;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
}

.video-section::before {
	content: "";
	position: absolute;
	top: -20px;
	left: 0;
	right: 0;
	bottom: -20px;
	background: linear-gradient(180deg,
			rgba(255, 107, 53, 0.03) 0%,
			transparent 20%,
			transparent 80%,
			rgba(255, 107, 53, 0.03) 100%);
	pointer-events: none;
	z-index: -1;
}

.video-container {
	position: relative;
	width: 100%;
	margin: 0;
	border-radius: 25px;
	overflow: hidden;
	box-shadow:
		0 25px 50px rgba(0, 0, 0, 0.4),
		0 0 30px rgba(255, 107, 53, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	border: 3px solid rgba(255, 107, 53, 0.4);
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
	backdrop-filter: blur(15px);
	aspect-ratio: 16/9;
	transition: all 0.3s ease;
}

.video-container:hover {
	border-color: rgba(255, 107, 53, 0.7);
	box-shadow:
		0 30px 60px rgba(0, 0, 0, 0.5),
		0 0 40px rgba(255, 107, 53, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.15);
	transform: translateY(-2px);
}

.video-container iframe {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
	transition: all 0.3s ease;
}

.video-container::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.05), transparent);
	pointer-events: none;
	z-index: 1;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.video-container:hover::before {
	opacity: 1;
}

@keyframes videoSlideIn {
	from {
		opacity: 0;
		transform: translateY(30px) scale(0.95);
	}

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

/* Stats Section */
.stats-section {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 3rem;
	animation: statsSlideUp 1s ease-out 1.2s both;
}

@keyframes statsSlideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.stat-card {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
	border: 1px solid rgba(255, 107, 53, 0.3);
	border-radius: 16px;
	padding: 1.5rem 1rem;
	min-width: 140px;
	text-align: center;
	backdrop-filter: blur(15px);
	box-shadow:
		0 8px 25px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.1),
		0 0 20px rgba(255, 107, 53, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.stat-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
	transition: left 0.6s ease;
}

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

.stat-card:hover {
	border-color: rgba(255, 107, 53, 0.6);
	box-shadow:
		0 12px 35px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.15),
		0 0 30px rgba(255, 107, 53, 0.2);
	transform: translateY(-5px);
}

.stat-value {
	font-size: 1.5rem;
	font-weight: 800;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 0.5rem;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	animation: valueGlow 3s ease-in-out infinite alternate;
}

@keyframes valueGlow {
	0% {
		filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.3));
	}

	100% {
		filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.6));
	}
}

.stat-label {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 500;
	margin-bottom: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.stat-change {
	font-size: 0.875rem;
	font-weight: 600;
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	display: inline-block;
	animation: changePulse 2s ease-in-out infinite;
}

.stat-change.positive {
	background: rgba(16, 185, 129, 0.2);
	color: #10b981;
	border: 1px solid rgba(16, 185, 129, 0.3);
}

.stat-change.negative {
	background: rgba(239, 68, 68, 0.2);
	color: #ef4444;
	border: 1px solid rgba(239, 68, 68, 0.3);
}

@keyframes changePulse {

	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
	}

	50% {
		transform: scale(1.05);
		box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
	}
}

.stat-change.negative {
	animation: changePulseNegative 2s ease-in-out infinite;
}

@keyframes changePulseNegative {

	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 0 10px rgba(239, 68, 68, 0.2);
	}

	50% {
		transform: scale(1.05);
		box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
	}
}

.ca-section {
	margin-bottom: 3rem;
	text-align: center;
	width: 100%;
	animation: caSlideIn 1s ease-out 1.5s both;
}

@keyframes caSlideIn {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.ca-section h3 {
	color: rgba(255, 255, 255, 0.95);
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.ca-input-container {
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
	border: 2px solid rgba(255, 107, 53, 0.5);
	border-radius: 12px;
	padding: 0.75rem;
	width: 100%;
	margin: 0 auto 1rem;
	transition: all 0.3s ease;
	box-shadow:
		0 8px 25px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.15),
		0 0 20px rgba(255, 107, 53, 0.1);
	position: relative;
	overflow: hidden;
	flex-wrap: nowrap;
}

.ca-input-container::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
	transition: left 0.6s ease;
}

.ca-input-container:hover::before {
	left: 100%;
}

.ca-input-container:hover {
	border-color: rgba(255, 107, 53, 0.8);
	box-shadow:
		0 12px 35px rgba(0, 0, 0, 0.5),
		0 0 0 3px rgba(255, 107, 53, 0.15),
		0 0 30px rgba(255, 107, 53, 0.2);
	transform: translateY(-2px);
}

#caInput {
	flex: 1;
	background: transparent;
	border: none;
	color: rgba(255, 255, 255, 0.95);
	font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
	font-size: 0.9rem;
	padding: 0.75rem 1rem;
	outline: none;
	font-weight: 500;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#caInput::selection {
	background: rgba(255, 107, 53, 0.4);
}

.copy-btn {
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	border: none;
	border-radius: 8px;
	padding: 0.75rem;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 600;
	box-shadow:
		0 4px 15px rgba(255, 107, 53, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.2),
		0 0 20px rgba(255, 107, 53, 0.2);
	position: relative;
	overflow: hidden;
}

.copy-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.copy-btn:hover::before {
	left: 100%;
}

.copy-btn:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow:
		0 8px 25px rgba(255, 107, 53, 0.6),
		0 0 0 3px rgba(255, 107, 53, 0.2),
		0 0 40px rgba(255, 107, 53, 0.4);
}

.copy-btn:active {
	transform: translateY(-1px) scale(1.02);
}

.copy-feedback {
	min-height: 1.5rem;
	font-size: 0.9rem;
	font-weight: 600;
	transition: all 0.3s ease;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.copy-feedback.success {
	color: #10b981;
	text-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}

.copy-feedback.error {
	color: #ef4444;
	text-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
}

.socials-section {
	text-align: center;
	animation: socialsSlideIn 1s ease-out 2s both;
}

@keyframes socialsSlideIn {
	from {
		opacity: 0;
		transform: translateX(30px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.socials-section h3 {
	color: rgba(255, 255, 255, 0.95);
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
	border: 2px solid rgba(255, 107, 53, 0.5);
	border-radius: 16px;
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	box-shadow:
		0 6px 20px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.15),
		0 0 15px rgba(255, 107, 53, 0.1);
	position: relative;
	overflow: hidden;
}

.social-link::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
	transition: left 0.5s ease;
}

.social-link:hover::before {
	left: 100%;
}

.social-link:hover {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.12));
	border-color: rgba(255, 107, 53, 0.8);
	transform: translateY(-5px) scale(1.1);
	box-shadow:
		0 15px 35px rgba(0, 0, 0, 0.5),
		0 0 0 3px rgba(255, 107, 53, 0.2),
		0 0 30px rgba(255, 107, 53, 0.3);
	color: white;
}

.social-link svg {
	transition: transform 0.3s ease;
}

.social-link:hover svg {
	transform: scale(1.2) rotate(5deg);
}

/* Responsive Design - ensure 100vh fit */
@media (max-width: 768px) {
	.hero-section {
		padding: 0.5rem;
		min-height: 100vh;
	}

	.hero-content {
		padding: 2rem 1.5rem;
		width: 100%;
	}

	.title {
		font-size: 3rem;
	}

	.description {
		font-size: 1rem;
		margin-bottom: 2rem;
	}

	.video-section {
		margin: 0 -1.5rem 2rem -1.5rem;
		width: 100vw;
		margin-left: calc(-50vw + 50%);
		margin-right: calc(-50vw + 50%);
	}



	.stats-section {
		gap: 1rem;
		margin-bottom: 2rem;
	}

	.stat-card {
		padding: 1rem 0.75rem;
		min-width: 100px;
	}

	.stat-value {
		font-size: 1.25rem;
	}

	.stat-label {
		font-size: 0.75rem;
	}

	.stat-change {
		font-size: 0.75rem;
		padding: 0.2rem 0.5rem;
	}

	.ca-section {
		margin-bottom: 2rem;
	}

	.ca-input-container {
		flex-direction: row;
		gap: 0.75rem;
		padding: 1rem;
		flex-wrap: nowrap;
	}

	#caInput {
		text-align: center;
	}

	.socials-section {
		margin-bottom: 0;
	}

	.social-links {
		gap: 1rem;
	}

	.social-link {
		width: 50px;
		height: 50px;
	}
}

@media (max-width: 480px) {
	.hero-section {
		min-height: 100vh;
		padding: 0.5rem;
	}

	.hero-content {
		padding: 2rem 1.5rem;
		width: 100%;
	}

	.title {
		font-size: 2.5rem;
	}

	.description {
		font-size: 0.95rem;
		margin-bottom: 1.5rem;
	}

	.video-section {
		margin: 0 -1.5rem 1.5rem -1.5rem;
		width: 100vw;
		margin-left: calc(-50vw + 50%);
		margin-right: calc(-50vw + 50%);
	}



	.stats-section {
		flex-direction: column;
		gap: 1rem;
		margin-bottom: 1.5rem;
	}

	.stat-card {
		min-width: auto;
		padding: 1rem;
	}

	.subtitle {
		font-size: 1.1rem;
		margin-bottom: 1.5rem;
	}

	.ca-section h3 {
		font-size: 1.1rem;
	}

	.social-link {
		width: 45px;
		height: 45px;
	}
}

/* Extra small devices */
@media (max-width: 360px) {
	.hero-section {
		padding: 0.5rem;
	}

	.hero-content {
		padding: 1.5rem 1rem;
	}

	.title {
		font-size: 2rem;
	}

	.subtitle {
		font-size: 1rem;
	}

	.description {
		font-size: 0.9rem;
	}

	.video-section {
		margin: 0 -1rem 1.5rem -1rem;
		width: 100vw;
		margin-left: calc(-50vw + 50%);
		margin-right: calc(-50vw + 50%);
	}



	.stats-section {
		gap: 0.75rem;
	}

	.stat-card {
		padding: 0.75rem;
	}

	.stat-value {
		font-size: 1.1rem;
	}

	.stat-label {
		font-size: 0.7rem;
	}

	.ca-input-container {
		padding: 0.75rem;
		flex-wrap: nowrap;
	}
}

/* Ensure content fits on very small screens */
@media (max-height: 600px) {
	.hero-content {
		padding: 1.5rem 1.5rem;
		max-height: 98vh;
	}

	.title {
		font-size: 2.5rem;
		margin-bottom: 1rem;
	}

	.subtitle {
		font-size: 1rem;
		margin-bottom: 1rem;
	}

	.description {
		font-size: 0.9rem;
		margin-bottom: 1.5rem;
		line-height: 1.5;
	}

	.ca-section {
		margin-bottom: 1.5rem;
	}

	.socials-section h3 {
		font-size: 1.1rem;
		margin-bottom: 1rem;
	}
}