*{
	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;
}

nav{
	position:fixed;
	top:0;
	left: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%;
}

.store-page{
	padding:140px 10% 60px;
	text-align:center;
}

.store-page h1{
	font-size:clamp(30px,5vw,42px);
	font-weight:800;
	letter-spacing:1px;
	margin-bottom:10px;
	background:linear-gradient(90deg,#38bdf8,#22c55e,#38bdf8);
	background-size:200%;
	-webkit-background-clip:text;
	-webkit-text-fill-color:transparent;
	animation:storeTitleMove 5s linear infinite;
	text-shadow:0 0 25px rgba(56,189,248,0.25);
	position:relative;
	display:inline-block;
}

.store-page h1::after{
	content:"";
	position:absolute;
	left:50%;
	transform:translateX(-50%);
	bottom:-8px;
	width:120px;
	height:3px;
	background:linear-gradient(90deg,transparent,#38bdf8,transparent);
	border-radius:10px;
}

@keyframes storeTitleMove{
	0%{background-position:0%}
	100%{background-position:200%}
}

.store-sub{
	opacity:0.7;
	margin-bottom:40px;
}

.notice-box{
	background:#1e293b;
	padding:22px 26px;
	margin:25px auto 45px;
	max-width:950px;
	border-radius:14px;
	font-size:16px;
	font-weight:500;
	line-height:1.7;
	color:#e2e8f0;
	box-shadow:0 8px 25px rgba(0,0,0,0.35);
	position:relative;
	border-left:5px solid #38bdf8;
}

.notice-box::before{
	content:"⚠ CHÚ Ý";
	display:block;
	font-size:18px;
	font-weight:800;
	margin-bottom:8px;
	letter-spacing:1px;
	color:#38bdf8;
}

.notice-box:hover{
	transform:translateY(-2px);
	box-shadow:0 12px 30px rgba(0,0,0,0.45);
	transition:0.25s;
}

.store-grid{
	display:grid;
	grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
	gap:25px;
}

.store-item{
	background:linear-gradient(180deg,#1e293b,#0f172a);
	padding:22px;
	border-radius:16px;
	transition:0.35s;
	position:relative;
	overflow:hidden;
	border:1px solid rgba(255,255,255,0.05);
}

.store-item::before{
	content:"";
	position:absolute;
	width:180px;
	height:180px;
	background:#38bdf8;
	filter:blur(80px);
	opacity:0.15;
	top:-60px;
	right:-60px;
	transition:0.4s;
}

.store-item:hover{
	transform:translateY(-8px) scale(1.02);
	box-shadow:0 20px 40px rgba(0,0,0,0.4);
}

.store-item:hover::before{
	opacity:0.3;
}

.store-item img{
	width:100%;
	border-radius:12px;
	margin-bottom:12px;
	transition:0.3s;
}

.store-item:hover img{
	transform:scale(1.05);
}

.store-item h3{
	margin-top:8px;
	font-size:20px;
	font-weight:700;
}

.store-item p{
	opacity:0.7;
	font-size:14px;
	margin-top:4px;
}

.store-item span{
	display:block;
	margin:12px 0;
	font-weight:800;
	font-size:18px;
	color:#22c55e;
}

.store-item button{
	width:100%;
	background:linear-gradient(90deg,#38bdf8,#22c55e);
	border:none;
	padding:11px;
	border-radius:10px;
	cursor:pointer;
	font-weight:700;
	color:white;
	transition:0.25s;
}

.store-item button:hover{
	transform:scale(1.05);
	box-shadow:0 0 18px rgba(56,189,248,0.6);
}

.pagination{
	margin-top:40px;
	display:flex;
	justify-content:center;
	gap:10px;
	flex-wrap:wrap;
}

.page-btn{
	background:rgba(255,255,255,0.06);
	border:none;
	color:white;
	padding:8px 14px;
	border-radius:6px;
	cursor:pointer;
	transition:0.2s;
}

.page-btn:hover{
	background:#38bdf8;
}

.page-btn.active{
	background:#38bdf8;
	box-shadow:0 0 10px #38bdf8;
}

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;
}

@media (max-width:1024px){
	nav{
		padding:15px 40px;
	}
}

@media (max-width:768px){
	nav{
		padding:14px 20px;
		flex-direction:column;
		align-items:flex-start;
		gap:10px;
	}

	nav ul{
		width:100%;
		display:flex;
		justify-content:space-between;
		gap:12px;
		flex-wrap:wrap;
	}

	.logo{
		font-size:22px;
	}

	.store-page{
		padding:120px 6% 60px;
	}

	.store-grid{
		grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
	}

	.footer-container{
		width:90%;
	}
}

@media (max-width:480px){
	nav{
		padding:12px 16px;
	}

	nav ul{
		gap:10px;
		font-size:14px;
	}

	.store-page{
		padding:110px 5% 50px;
	}

	.store-grid{
		grid-template-columns:1fr;
	}

	.pagination{
		gap:6px;
	}

	.footer-container{
		grid-template-columns:1fr;
		text-align:center;
	}
}
