* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
	background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
	background-size: 400% 400%;
	animation: gradientBG 15s ease infinite;
	color: #fff;
	min-height: 100vh;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow-x: hidden;
}
@keyframes gradientBG {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}
.particles {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
}
.particle {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	animation: float 15s infinite linear;
}
@keyframes float {
	0% { transform: translateY(0) translateX(0); opacity: 0; }
	10% { opacity: 1; }
	90% { opacity: 0.5; }
	100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
}
header {
	text-align: center;
	padding: 40px 0;
	margin-bottom: 30px;
	animation: fadeInDown 1s ease;
}
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.logo {
	font-size: 2.5rem;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.logo i {
	color: #4dabf7;
	text-shadow: 0 0 15px rgba(77, 171, 247, 0.9);
	animation: pulse 2s infinite;
}
@keyframes pulse {
	0% { transform: scale(1); }
	50% { transform: scale(1.1); }
	100% { transform: scale(1); }
}
.search-container {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border-radius: 30px;
	padding: 5px;
	width: 90%;
	max-width: 700px;
	margin: 0 auto;
	display: flex;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.18);
	transition: all 0.3s ease;
	position: relative;
}
.search-container:focus-within {
	box-shadow: 0 0 20px rgba(77, 171, 247, 0.5);
	transform: translateY(-2px);
}
.search-engine-select {
	background: rgba(255, 255, 255, 0.2);
	border: none;
	border-radius: 25px 0 0 25px;
	padding: 0 15px;
	color: white;
	font-weight: 500;
	outline: none;
	cursor: pointer;
	width: 150px;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 15px;
}
.search-engine-select option {
	background: #1a2a6c;
	color: white;
}
.search-input-container {
	flex: 1;
	position: relative;
	display: flex;
	align-items: center;
}
.search-input {
	width: 100%;
	padding: 15px 20px;
	border: none;
	background: transparent;
	color: white;
	font-size: 1.1rem;
	outline: none;
	padding-right: 40px;
}
.search-input::placeholder {
	color: rgba(255, 255, 255, 0.7);
}
.clear-btn {
	position: absolute;
	right: 10px;
	background: transparent;
	border: none;
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
	font-size: 1.2rem;
	display: none;
	transition: all 0.2s ease;
}
.clear-btn:hover {
	color: white;
	transform: scale(1.1);
}
.search-btn {
	background: linear-gradient(90deg, #4dabf7, #339af0);
	border: none;
	border-radius: 0 25px 25px 0;
	padding: 15px 30px;
	color: white;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1rem;
	display: flex;
	align-items: center;
	gap: 8px;
	position: relative;
	overflow: hidden;
}
.search-btn::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -60%;
	width: 20px;
	height: 200%;
	background: rgba(255, 255, 255, 0.3);
	transform: rotate(25deg);
	transition: all 0.6s;
}
.search-btn:hover {
	background: linear-gradient(90deg, #339af0, #228be6);
	transform: translateY(-2px);
}
.search-btn:hover::after {
	left: 120%;
}
.quick-links {
	margin: 40px 0;
	animation: fadeInUp 1s ease;
}
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.section-title {
	text-align: center;
	margin-bottom: 30px;
	font-size: 1.8rem;
	position: relative;
	display: inline-block;
	left: 50%;
	transform: translateX(-50%);
	padding-bottom: 10px;
}
.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 10%;
	width: 80%;
	height: 3px;
	background: linear-gradient(to right, transparent, #4dabf7, transparent);
}
.links-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 25px;
	padding: 0 20px;
}
.link-card {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	overflow: hidden;
	backdrop-filter: blur(10px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	padding: 15px;
	cursor: pointer;
	height: 80px;
	position: relative;
}
.link-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.15);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.link-icon .custom-icon {
	width: 70%;
	height: 70%;
	object-fit: contain;
	border-radius: 50%;
}
.link-icon {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}
.link-icon i {
	font-size: 1.8rem;
}
.link-icon img {
	width: 50%;
	height: 50%;
	object-fit: contain;
	border-radius: 50%;
}
.link-card:hover .link-icon i,
.link-card:hover .link-icon img {
	transform: scale(1.1);
}
.link-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}
.link-name {
	font-weight: 600;
	font-size: 1.1rem;
	margin-bottom: 5px;
}
.link-url {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.7);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.link-add {
	width: 30px;
	height: 30px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
	flex-shrink: 0;
}
.link-add:hover {
	background: #4dabf7;
	transform: rotate(90deg);
}
footer {
	margin-top: auto;
	text-align: center;
	padding: 30px 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.2);
	border-radius: 15px;
	margin-top: 40px;
	animation: fadeIn 1.5s ease;
}
@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}
.footer-info {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
}
.footer-links {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 15px;
}
.footer-links a {
	color: #4dabf7;
	text-decoration: none;
	transition: all 0.3s ease;
}
.footer-links a:hover {
	color: #339af0;
	text-decoration: underline;
}
@media (max-width: 768px) {
	.logo {
		font-size: 2rem;
	}
	.search-container {
		width: 95%;
	}
	.search-engine-select {
		width: 120px;
		padding: 0 10px;
	}
	.links-grid {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	}
}
@media (max-width: 480px) {
	.logo {
		font-size: 1.8rem;
	}
	.search-container {
		flex-direction: column;
		border-radius: 15px;
		padding: 15px;
		gap: 10px;
	}
	.search-engine-select, .search-input-container, .search-btn {
		border-radius: 10px;
		width: 100%;
	}
	.links-grid {
		grid-template-columns: 1fr;
	}
	.section-title {
		font-size: 1.5rem;
	}
}