/* ========== Base Reset ========== */
html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	overflow: hidden;
	color: rgb(255, 255, 255);
	text-align: center;
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

body::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(10, 0, 25, 0.5);
	z-index: 1;
}

/* ========== Video Background ========== */
video#bg-video {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	object-fit: cover;
	z-index: 0;
}

/* ========== Main Container ========== */
.container {
	position: relative;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.2rem;
}

/* ========== Header & Countdown ========== */
h1 {
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
}

#countdown {
	font-size: 4rem;
	font-weight: bold;
	color: #cfa7ff;
}

/* ========== Email Input & Subscribe Button Inside Field ========== */
.input-wrapper {
	position: relative;
	width: 300px;
}

.input-wrapper input[type="email"] {
	width: 100%;
	padding: 0.8rem 7rem 0.8rem 1.2rem;
	height: 48px;
	border: none;
	border-radius: 50px;
	font-size: 1rem;
	background: rgba(255, 255, 255, 0.15);
	color: white;
	backdrop-filter: blur(5px);
	box-sizing: border-box;
}

.input-wrapper input[type="email"]::placeholder {
	color: #ddd;
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.input-wrapper .subscribe {
	position: absolute;
	top: 50%;
	right: 0.4rem;
	transform: translateY(-50%);
	height: 36px;
	padding: 0 1rem;
	border: none;
	border-radius: 50px;
    background: linear-gradient(to right, #D1569B, #8C85BD);
	color: white;
	font-size: 0.9rem;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	margin-top: 0;
    
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.input-wrapper .subscribe:hover {
	transform: translateY(-50%) scale(1.05);
	box-shadow: 0 0 10px #cfa7ff;
}

/* ========== Bubbles with Images ========== */
.bubbles {
	display: flex;
	gap: 1.5rem;
	margin-top: 7rem;
	justify-content: center;
}

.bubble {
	width: 60px;
	height: 60px;
	border-radius: 25%;
	overflow: hidden;
	background: rgba(14, 14, 14, 0.027);
	backdrop-filter: blur(10px);
	transition: transform 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 8px rgba(15, 15, 15, 0.2);
}

.bubble:hover {
	transform: scale(1.4);
}

.bubble img {
	width: 80%;
	height: 80%;
	object-fit: cover;
	border-radius: 20%;
	transition: transform 0.3s ease;
}

.bubble:hover img {
	transform: scale(1.1);
}

/* ========== About Glass Box ========== */
.about-box {
	max-width: 600px;
	margin-top: 1rem;
	padding: 1rem 1.5rem;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	backdrop-filter: blur(6px);
	color: #f0f0f0;
	font-size: 0.95rem;
	line-height: 1.6;
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========== Footer ========== */
.footer-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 0.6rem 1rem;
	text-align: center;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.7);
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(6px);
	z-index: 3;
	letter-spacing: 0.5px;
	font-weight: 300;
}

/* ========== Responsive Mobile Adjustments ========== */
@media (max-width: 600px) {
	.container {
		padding: 0 1rem;
		gap: 1rem;
	}

	h1 {
		font-size: 1.6rem;
	}

	#countdown {
		font-size: 2rem;
	}

	.input-wrapper {
		width: 100%;
		max-width: 320px;
	}

	.about-box {
		font-size: 0.85rem;
		padding: 0.8rem 1rem;
	}

	.bubble {
		width: 44px;
		height: 44px;
	}

	.bubble img {
		width: 100%;
		height: 100%;
	}

	.footer-bar {
		font-size: 0.7rem;
		padding: 0.5rem;
	}
}

.sale-note {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.6);
	margin-top: -1rem;
	margin-bottom: -0.5rem;
	max-width: 280px;
	line-height: 1.4;
}
