* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Inter', sans-serif;
}

html, body {
	height: 100%;
	overflow: hidden;
}

.app-container {
	height: 100vh;
	overflow-y: auto;
	overflow-x: hidden;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.app-container::-webkit-scrollbar {
	display: none;
}

body {
	background-color: #000;
	color: #fff;
	line-height: 1.6;
	position: relative;
	min-height: 100vh;
}

body::before, body::after {
	content: '';
	position: fixed;
	width: 900px;
	height: 900px;
	border-radius: 50%;
	z-index: -1;
	pointer-events: none;
	opacity: 0.35;
	filter: blur(150px);
	animation: float 20s infinite alternate ease-in-out;
}

body::before {
	top: -300px;
	left: -200px;
	background: radial-gradient(circle, #6366f1 0%, rgba(99, 102, 241, 0) 70%);
}

body::after {
	bottom: -300px;
	right: -200px;
	background: radial-gradient(circle, #a855f7 0%, rgba(168, 85, 247, 0) 70%);
	animation-delay: -7s;
}

@keyframes float {
	0% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(100px, 50px) scale(1.1); }
	100% { transform: translate(-50px, 100px) scale(0.9); }
}

header {
	position: sticky;
	top: 0;
	width: 100%;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 8%;
	background: rgba(255, 255, 255, 0.02);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	z-index: 1000;
}

.logo {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 24px;
	font-weight: 800;
	text-decoration: none;
	color: #fff;
	letter-spacing: -1px;
}

.logo img {
	height: 35px;
	width: auto;
	object-fit: contain;
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 35px;
}

.nav-link {
	text-decoration: none;
	color: rgba(255, 255, 255, 0.6);
	font-weight: 500;
	font-size: 15px;
	transition: all 0.3s ease;
}

.nav-link:hover {
	color: #fff;
	text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.btn-login {
	background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
	color: white !important;
	padding: 12px 28px;
	border-radius: 14px;
	font-weight: 600 !important;
	text-decoration: none;
	display: inline-block;
	box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
	transition: all 0.2s ease;
}

.btn-login:hover {
	opacity: 0.9;
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(99, 102, 241, 0.5);
}

.user-link {
	text-decoration: none;
	color: rgba(255, 255, 255, 0.8) !important;
	font-weight: 500;
	font-size: 15px;
	transition: all 0.3s ease;
}

.user-link:hover {
	color: #fff !important;
}

section {
	padding: 80px 10% 80px;
	position: relative;
}

.hero h1 {
	font-size: clamp(40px, 8vw, 80px);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 60px;
	background: linear-gradient(to bottom, #fff 40%, #777 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-desc {
	font-size: 1.25rem;
	color: #888;
	max-width: 700px;
	margin-bottom: 60px;
}

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 25px;
}

.card {
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(10px);
	padding: 40px;
	border-radius: 28px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover {
	border-color: rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.06);
	transform: translateY(-8px);
}

.card h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	background: linear-gradient(90deg, #a855f7, #6366f1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.card p {
	color: #999;
	font-size: 1rem;
	line-height: 1.5;
}

h2 {
	font-size: 3rem;
	margin-bottom: 20px;
	font-weight: 800;
}

.menu-toggle {
	display: none;
}

.side-menu {
	display: none;
}

.menu-overlay {
	display: none;
}

@media (max-width: 768px) {
	header {
		padding: 0 5%;
		height: 70px;
	}

	.logo {
		font-size: 20px;
		gap: 10px;
	}

	.logo img {
		height: 30px;
	}

	.nav-right {
		display: none;
	}

	.menu-toggle {
		display: flex;
		width: 40px;
		height: 40px;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 6px;
		cursor: pointer;
		z-index: 1002;
	}

	.menu-toggle span {
		width: 24px;
		height: 2px;
		background-color: #fff;
		border-radius: 4px;
		transition: all 0.3s ease;
	}

	.menu-toggle.active span:nth-child(1) {
		transform: rotate(45deg) translate(7px, 7px);
	}

	.menu-toggle.active span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -7px);
	}

	.side-menu {
		display: block;
		position: fixed;
		top: 0;
		right: -300px;
		width: 280px;
		height: 100vh;
		background: rgba(10, 10, 15, 0.95);
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		border-left: 1px solid rgba(255, 255, 255, 0.08);
		z-index: 1001;
		transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
		padding: 100px 25px 40px;
		display: flex;
		flex-direction: column;
		align-items: center;
		box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
	}

	.side-menu.active {
		right: 0;
	}

	.menu-overlay {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: rgba(0, 0, 0, 0.7);
		z-index: 1000;
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		backdrop-filter: blur(5px);
	}

	.menu-overlay.active {
		opacity: 1;
		visibility: visible;
	}

	.menu-btn-container {
		width: 100%;
		display: flex;
		justify-content: center;
		margin-bottom: 30px;
	}

	.menu-login-btn {
		background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
		color: white;
		padding: 14px 30px;
		border-radius: 40px;
		font-weight: 700;
		font-size: 18px;
		text-decoration: none;
		display: inline-block;
		box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
		transition: all 0.2s ease;
		width: 100%;
		text-align: center;
		border: none;
		cursor: pointer;
	}

	.menu-user-name {
		color: white;
		font-weight: 700;
		font-size: 20px;
		padding: 14px 0;
		text-align: center;
		background: rgba(255, 255, 255, 0.05);
		border-radius: 40px;
		width: 100%;
		border: 1px solid rgba(255, 255, 255, 0.1);
		text-decoration: none;
	}

	.menu-divider {
		width: 80%;
		height: 1px;
		background: rgba(255, 255, 255, 0.15);
		margin: 25px 0;
	}

	.menu-links {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 25px;
		width: 100%;
	}

	.menu-link {
		text-decoration: none;
		color: rgba(255, 255, 255, 0.8);
		font-weight: 500;
		font-size: 18px;
		transition: all 0.3s ease;
		padding: 10px 0;
		width: 100%;
		text-align: center;
		border-radius: 30px;
	}

	.menu-link:hover {
		color: #fff;
		background: rgba(255, 255, 255, 0.05);
	}

	section {
		padding: 60px 6% 60px;
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.hero {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		width: 100%;
	}

	.hero h1 {
		font-size: clamp(40px, 10vw, 70px);
		line-height: 1.2;
		margin-bottom: 25px;
		text-align: center;
		max-width: 100%;
		word-break: break-word;
	}

	.hero-desc {
		font-size: 1.1rem;
		color: #bbb;
		max-width: 600px;
		margin-bottom: 40px;
		text-align: center;
	}

	.grid {
		grid-template-columns: 1fr;
		gap: 20px;
		width: 100%;
		max-width: 500px;
		margin: 0 auto;
	}

	.card {
		padding: 30px 25px;
		text-align: center;
	}

	.card h3 {
		font-size: 1.5rem;
		margin-bottom: 15px;
	}

	.card p {
		color: #aaa;
	}

	h2 {
		font-size: 2.2rem;
		margin-bottom: 15px;
		text-align: center;
	}

	#content2 {
		border-top: 1px solid rgba(255, 255, 255, 0.05);
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	#content2 p {
		color: #888;
		margin-bottom: 40px;
		font-size: 1.1rem;
		text-align: center;
		max-width: 500px;
	}
}