*{
	margin:0;
	padding:0;
	box-sizing:border-box;
	font-family:'Be Vietnam Pro',sans-serif;
}

body{
	background:#0f172a;
	color:white;
	overflow-x:hidden;
	margin:0;
}

/* FIX NAV */
nav{
	position:fixed;
	top:0;
	width:100%;
	display:flex;
	justify-content:space-between;
	align-items:center;
	padding:20px 80px;
	background:rgba(0,0,0,0.35);
	backdrop-filter:blur(12px);
	z-index:1000;
	border-bottom:1px solid rgba(255,255,255,0.05);
}

.logo{
	font-size:26px;
	font-weight:800;
	color:#38bdf8;
	text-shadow:0 0 10px rgba(56,189,248,0.6);
}

nav ul{
	display:flex;
	list-style:none;
	gap:30px;
}

nav a{
	text-decoration:none;
	color:white;
	font-weight:500;
	position:relative;
}

nav a::after{
	content:"";
	position:absolute;
	left:0;
	bottom:-6px;
	width:0%;
	height:2px;
	background:#38bdf8;
	transition:0.3s;
}

nav a:hover::after{
	width:100%;
}

/* FOOTER */
footer{
	background:
	linear-gradient(rgba(0,0,0,0.85),rgba(0,0,0,0.95)),
	url("../Image/footer-bg.jpg") center/cover no-repeat;
	margin-top:100px;
	padding-top:120px;
	position:relative;
	overflow:hidden;
}

footer::before{
	content:"";
	position:absolute;
	width:500px;
	height:500px;
	background:#38bdf8;
	filter:blur(180px);
	opacity:0.15;
	top:-150px;
	left:-150px;
	animation:glowMove 10s infinite alternate;
}

@keyframes glowMove{
	0%{transform:translate(0,0)}
	100%{transform:translate(200px,150px)}
}

.footer-wave{
	position:absolute;
	top:-110px;
	left:0;
	width:100%;
	height:120px;
	background:linear-gradient(180deg,transparent,#020617);
}

.footer-container{
	width:80%;
	margin:auto;
	display:grid;
	grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
	gap:40px;
}

.footer-col h3{
	color:#38bdf8;
	margin-bottom:15px;
}

.footer-col p{
	opacity:0.8;
	line-height:1.6;
}

.footer-col a{
	display:block;
	color:white;
	text-decoration:none;
	margin:6px 0;
	opacity:0.8;
	transition:0.3s;
}

.footer-col a:hover{
	color:#38bdf8;
	transform:translateX(6px);
}

.socials a{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	margin-right:15px;
	padding:10px 18px;
	border-radius:8px;
	background:rgba(255,255,255,0.06);
	color:white;
	text-decoration:none;
	font-weight:500;
	position:relative;
	overflow:hidden;
	transition:0.3s;
}

.socials a:hover{
	background:#38bdf8;
	color:white;
	box-shadow:0 0 15px #38bdf8;
}

.footer-line{
	margin-top:50px;
	height:2px;
	background:linear-gradient(90deg,transparent,#38bdf8,transparent);
	background-size:200px;
	animation:lineMove 4s linear infinite;
}

@keyframes lineMove{
	0%{background-position:-200px}
	100%{background-position:200px}
}

.footer-bottom{
	text-align:center;
	padding:20px;
	opacity:0.7;
}

/* ACCOUNT PAGE */
.account-page{
	padding-top:160px;
	padding-bottom:120px;
	width:100%;
	min-height:100vh;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	background:
	radial-gradient(circle at 20% 30%,rgba(56,189,248,0.25),transparent 40%),
	radial-gradient(circle at 80% 70%,rgba(34,197,94,0.25),transparent 40%),
	#0f172a;
}

.account-page h1{
	font-size:44px;
	margin-bottom:35px;
	color:#075985;
	font-weight:800;
	letter-spacing:1px;
}

.account-box{
	background:white;
	padding:45px;
	border-radius:20px;
	width:400px;
	box-shadow:0 20px 50px rgba(0,0,0,0.15);
	border:1px solid #e2e8f0;
}

.tabs{
	display:flex;
	margin-bottom:25px;
	gap:10px;
}

.tab-btn{
	flex:1;
	padding:12px;
	border:none;
	background:#e2e8f0;
	color:#334155;
	border-radius:10px;
	cursor:pointer;
	font-weight:600;
	transition:0.25s;
}

.tab-btn.active{
	background:#38bdf8;
	color:white;
}

.tab-content{
	display:none;
	flex-direction:column;
	gap:15px;
}

.tab-content.active{
	display:flex;
}

.tab-content input{
	padding:13px;
	border-radius:10px;
	border:1px solid #cbd5e1;
	outline:none;
	background:white;
	color:#0f172a;
	transition:0.2s;
	font-weight:500;
}

.tab-content input:focus{
	border-color:#38bdf8;
	box-shadow:0 0 6px rgba(56,189,248,0.4);
}

.account-btn{
	padding:13px;
	border:none;
	border-radius:12px;
	background:linear-gradient(90deg,#38bdf8,#22c55e);
	color:white;
	font-weight:700;
	cursor:pointer;
	transition:0.25s;
}

.account-btn:hover{
	transform:translateY(-2px);
	box-shadow:0 10px 25px rgba(56,189,248,0.35);
}

/* MOBILE FIX */
@media (max-width:768px){

	nav{
		padding:15px 20px;
	}

	nav ul{
		gap:15px;
		flex-wrap:wrap;
	}

	.account-page{
		padding-top:130px;
		padding-left:20px;
		padding-right:20px;
	}

	.account-box{
		width:100%;
		max-width:420px;
		padding:30px;
	}

	.account-page h1{
		font-size:32px;
		text-align:center;
	}

}

@media (max-width:480px){

	nav{
		flex-direction:column;
		align-items:flex-start;
		gap:10px;
	}

	nav ul{
		width:100%;
		justify-content:space-between;
	}

	.account-box{
		padding:25px;
	}

	}
