@font-face {
	font-family: 'Dreamer TM';
	src: url('../fonts/Dreamer-TM-Regular.otf') format('opentype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'SF Pro Display';
	src: url('../fonts/SF-Pro-Display-Regular.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'SF Pro Display';
	src: url('../fonts/SF-Pro-Display-Bold.otf') format('opentype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'SF Pro Display';
	src: url('../fonts/SF-Pro-Display-RegularItalic.otf') format('opentype');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

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

body {
	font-family: 'Dreamer TM', Arial, sans-serif;
	height: 100vh;
	overflow: hidden;
	background: url('../images/rainbow-dots.gif') center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	position: relative;
}

body::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
	z-index: 1;
}

html {
	background: #000000;
}

.container {
	position: relative;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	z-index: 2;
}

.content {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	border-radius: 25px;
	padding: 60px 40px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.2),
		0 0 0 1px rgba(255, 255, 255, 0.05);
	animation: float 6s ease-in-out infinite;
	max-width: 500px;
	width: 90%;
	position: relative;
	overflow: hidden;
}

.logo-container {
	position: relative;
	margin: 0 auto 25px auto;
	width: 80px;
	height: 80px;
	animation: logoFloat 4s ease-in-out infinite;
}

.logo {
	width: 80px !important;
	height: 80px !important;
	max-width: 80px !important;
	max-height: 80px !important;
	min-width: 80px !important;
	min-height: 80px !important;
	object-fit: contain;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3))
		drop-shadow(0 0 15px rgba(255, 255, 255, 0.4))
		drop-shadow(0 0 30px rgba(255, 255, 255, 0.2)) contrast(1.1)
		brightness(1.05);
	transition: all 0.3s ease;
	position: relative;
	display: block;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-sizing: border-box;
	overflow: hidden;
}

.logo-overlay {
	position: absolute;
	top: -8px;
	left: 50%;
	transform: translateX(-50%);
	font-family: 'Dreamer TM', Arial, sans-serif;
	font-size: 0.75rem;
	font-weight: 600;
	color: #ffffff;
	letter-spacing: 0.5px;
	z-index: 10;
	pointer-events: none;
}

.logo::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 80px;
	height: 80px;
	background: repeating-linear-gradient(
			0deg,
			transparent,
			transparent 1px,
			rgba(255, 255, 255, 0.03) 1px,
			rgba(255, 255, 255, 0.03) 2px
		),
		repeating-linear-gradient(
			90deg,
			transparent,
			transparent 1px,
			rgba(255, 255, 255, 0.03) 1px,
			rgba(255, 255, 255, 0.03) 2px
		);
	pointer-events: none;
	z-index: 1;
	mix-blend-mode: overlay;
}

.logo-container:hover .logo {
	transform: scale(1.1);
	filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4))
		drop-shadow(0 0 20px rgba(255, 255, 255, 0.6))
		drop-shadow(0 0 40px rgba(255, 255, 255, 0.3)) contrast(1.2)
		brightness(1.1);
}

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

.content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.1) 0%,
		transparent 50%,
		rgba(255, 255, 255, 0.05) 100%
	);
	pointer-events: none;
	z-index: -1;
}

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

.title {
	font-size: 3.5rem;
	font-weight: bold;
	color: #ffffff;
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	background: linear-gradient(45deg, #ffffff, #e0e7ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
	from {
		text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
	}
	to {
		text-shadow: 0 0 15px rgba(255, 255, 255, 0.6),
			0 0 25px rgba(255, 255, 255, 0.3);
	}
}

.subtitle {
	font-family: 'SF Pro Display', Arial, sans-serif;
	font-size: 1.2rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 15px;
	line-height: 1.3;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.subtitle:last-of-type {
	margin-bottom: 40px;
}

.cta-button {
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 18px 36px;
	font-family: 'Dreamer TM', Arial, sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.3),
		0 0 0 1px rgba(255, 255, 255, 0.1);
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
	overflow: hidden;
}

.cta-button::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		45deg,
		transparent 30%,
		rgba(255, 255, 255, 0.1) 40%,
		rgba(255, 255, 255, 0.6) 50%,
		rgba(255, 255, 255, 0.1) 60%,
		transparent 70%
	);
	opacity: 0;
	transform: translateX(-100%);
	transition: all 0.6s ease;
	pointer-events: none;
	z-index: 1;
}

.cta-button::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
		circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
		rgba(255, 255, 255, 0.2) 0%,
		rgba(255, 255, 255, 0.1) 20%,
		transparent 60%
	);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
	z-index: 2;
}

.cta-button:hover {
	transform: translateY(-3px);
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.3);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.4),
		0 0 0 1px rgba(255, 255, 255, 0.15), 0 0 20px rgba(255, 255, 255, 0.1);
}

.cta-button:hover::before {
	opacity: 1;
	transform: translateX(100%);
}

.cta-button:hover::after {
	opacity: 1;
}

.cta-button:active {
	transform: translateY(-1px);
}

/* Button Showcase Styles */
.button-showcase {
	margin-top: 30px;
}

.showcase-title {
	font-family: 'Dreamer TM', Arial, sans-serif;
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 25px;
	text-align: center;
}

.buttons-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	max-width: 400px;
	margin: 0 auto;
}

.buttons-grid-large {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	max-width: 600px;
	margin: 0 auto;
}

/* Base Button Styles */
.btn {
	font-family: 'SF Pro Display', Arial, sans-serif;
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: none;
	letter-spacing: 1px;
	padding: 14px 24px;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	color: white;
}

/* Style 1: Classic Frosted Glass */
.btn-style-1 {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-style-1:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Style 2: Neon Glow Glass */
.btn-style-2 {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(0, 255, 255, 0.3);
	box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.btn-style-2:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(0, 255, 255, 0.5);
	box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
	transform: translateY(-2px);
}

/* Style 3: Holographic Foil - Extra Large Version */
.btn-style-3 {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
	padding: 28px 64px;
	font-size: 1.2rem;
	font-weight: 500;
	min-width: 360px;
}

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

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

.btn-style-3:hover {
	transform: translateY(-2px);
}

/* Style 4: Bubble Glass */
.btn-style-4 {
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(25px);
	border: 2px solid rgba(255, 255, 255, 0.15);
	border-radius: 35px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3),
		0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-style-4:hover {
	background: rgba(255, 255, 255, 0.18);
	transform: translateY(-2px) scale(1.02);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4),
		0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Style 5: Liquid Metal */
.btn-style-5 {
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.15),
		rgba(255, 255, 255, 0.05)
	);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-style-5:hover {
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.25),
		rgba(255, 255, 255, 0.1)
	);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Style 6: Prismatic Glass */
.btn-style-6 {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(15px);
	border: 1px solid transparent;
	background-clip: padding-box;
	position: relative;
}

.btn-style-6::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		45deg,
		rgba(255, 0, 150, 0.3),
		rgba(0, 255, 255, 0.3),
		rgba(255, 255, 0, 0.3)
	);
	border-radius: 25px;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.btn-style-6:hover {
	transform: translateY(-2px);
}

.btn-style-6:hover::before {
	opacity: 1;
}

/* Style 7: Sharp Crystalline */
.btn-style-7 {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}

.btn-style-7::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(
		45deg,
		rgba(255, 255, 255, 0.4) 0%,
		transparent 20%,
		transparent 80%,
		rgba(255, 255, 255, 0.4) 100%
	);
	z-index: -1;
	border-radius: 8px;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.btn-style-7:hover {
	transform: translateY(-3px) rotateX(5deg);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-style-7:hover::before {
	opacity: 1;
}

/* Style 8: Hexagonal Tech */
.btn-style-8 {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(0, 255, 0, 0.3);
	border-radius: 0;
	clip-path: polygon(20% 0%, 80% 0%, 100% 50%, 80% 100%, 20% 100%, 0% 50%);
	box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
	position: relative;
	padding: 16px 32px;
}

.btn-style-8:hover {
	background: rgba(255, 255, 255, 0.15);
	box-shadow: 0 0 25px rgba(0, 255, 0, 0.4);
	transform: translateY(-2px) scale(1.05);
	border-color: rgba(0, 255, 0, 0.6);
}

/* Style 9: Morphing Blob */
.btn-style-9 {
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 30px 10px 25px 15px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-style-9:hover {
	border-radius: 15px 35px 20px 30px;
	background: rgba(255, 255, 255, 0.18);
	transform: translateY(-3px) rotate(2deg);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Style 10: Ripple Effect */
.btn-style-10 {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	position: relative;
	overflow: hidden;
}

.btn-style-10::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.3) 0%,
		transparent 70%
	);
	transform: translate(-50%, -50%);
	transition: all 0.6s ease;
	border-radius: 50%;
}

.btn-style-10:hover::before {
	width: 300px;
	height: 300px;
}

.btn-style-10:hover {
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.15);
}

/* Style 11: Glitch Effect */
.btn-style-11 {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 0, 255, 0.3);
	border-radius: 4px;
	position: relative;
	overflow: hidden;
}

.btn-style-11::before,
.btn-style-11::after {
	content: 'join waitlist';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.btn-style-11::before {
	color: rgba(255, 0, 0, 0.8);
	animation: glitch-1 0.3s ease-in-out infinite alternate;
}

.btn-style-11::after {
	color: rgba(0, 255, 255, 0.8);
	animation: glitch-2 0.3s ease-in-out infinite alternate;
}

.btn-style-11:hover::before,
.btn-style-11:hover::after {
	opacity: 1;
}

@keyframes glitch-1 {
	0% {
		transform: translateX(-2px);
	}
	100% {
		transform: translateX(2px);
	}
}

@keyframes glitch-2 {
	0% {
		transform: translateX(2px);
	}
	100% {
		transform: translateX(-2px);
	}
}

/* Style 12: 3D Depth */
.btn-style-12 {
	background: linear-gradient(
		145deg,
		rgba(255, 255, 255, 0.15),
		rgba(255, 255, 255, 0.05)
	);
	backdrop-filter: blur(20px);
	border: none;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.4),
		inset 0 -1px 0 rgba(0, 0, 0, 0.2);
	position: relative;
	transform-style: preserve-3d;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-style-12::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		145deg,
		rgba(255, 255, 255, 0.25),
		rgba(255, 255, 255, 0.1)
	);
	border-radius: 12px;
	transform: translateZ(-4px) translateY(4px);
	z-index: -1;
	transition: all 0.3s ease;
}

.btn-style-12:hover {
	transform: translateY(-4px) translateZ(8px) rotateX(-5deg);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.5),
		inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.btn-style-12:hover::before {
	transform: translateZ(-8px) translateY(8px);
}

@media (max-width: 768px) {
	.title {
		font-size: 2.5rem;
	}

	.subtitle {
		font-size: 1rem;
	}

	.content {
		padding: 40px 30px;
		margin: 20px;
	}

	.cta-button {
		padding: 16px 32px;
		font-size: 1rem;
	}

	.btn-style-3 {
		min-width: auto;
		padding: 18px 32px;
		font-size: 1rem;
		width: 100%;
		max-width: 280px;
	}
}
