* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
	color: #fff;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.content {
	text-align: center;
	padding: 2rem;
	width: 100%;
	max-width: 800px;
}

.logo {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 2rem;
	background: linear-gradient(45deg, #00f2fe, #4facfe);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 0 20px rgba(79, 172, 254, 0.3);
}

.search-container {
	position: relative;
	margin: 2rem auto;
	width: 90%;
	max-width: 600px;
}

#uv-address {
	width: 100%;
	padding: 1rem 1.5rem;
	font-size: 1.1rem;
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

#uv-address:focus {
	outline: none;
	border-color: #4facfe;
	box-shadow: 0 0 20px rgba(79, 172, 254, 0.3);
}

#uv-address::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.search-button {
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	background: linear-gradient(45deg, #00f2fe, #4facfe);
	border: none;
	border-radius: 8px;
	padding: 0.5rem 1.5rem;
	color: #fff;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.search-button:hover {
	transform: translateY(-50%) scale(1.05);
	box-shadow: 0 0 20px rgba(79, 172, 254, 0.4);
}

.features {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-top: 3rem;
	flex-wrap: wrap;
}

.feature {
	background: rgba(255, 255, 255, 0.05);
	padding: 1.5rem;
	border-radius: 12px;
	backdrop-filter: blur(10px);
	flex: 1;
	min-width: 200px;
	max-width: 300px;
}

.feature h3 {
	color: #4facfe;
	margin-bottom: 0.5rem;
}

.feature p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
}