* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

img {
	object-fit: cover;
}

html::-webkit-scrollbar {
	width: 10px;
}

html::-webkit-scrollbar-thumb {
	background: #dcd5ea;
}

html::-webkit-scrollbar-track {
	background: #18181c;
	-webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
}

body {
	background:
		radial-gradient(circle at 12% 18%, rgba(255, 106, 136, 0.22) 0%, rgba(255, 106, 136, 0) 26%),
		radial-gradient(circle at 84% 14%, rgba(111, 224, 255, 0.18) 0%, rgba(111, 224, 255, 0) 24%),
		radial-gradient(circle at 50% 100%, rgba(255, 196, 107, 0.18) 0%, rgba(255, 196, 107, 0) 28%),
		linear-gradient(135deg, #130f2b 0%, #1d163d 24%, #10283d 56%, #0e4a52 100%);
	background-attachment: fixed;
	background-size: cover;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow-x: hidden;
	font-family: 'Mark Pro',Arial,sans-serif;
	color: #f7fbff;
	position: relative;
	/* background: url(../images/baseBody.png); */
}

body::before {
	content: '';
	position: fixed;
	inset: 0;
	background:
		linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
	background-size: 34px 34px;
	opacity: 0.4;
	pointer-events: none;
	z-index: -2;
}

body::after {
	content: '';
	position: fixed;
	inset: auto -12% -22% auto;
	width: 440px;
	height: 440px;
	background: radial-gradient(circle, rgba(255, 119, 145, 0.24) 0%, rgba(255, 119, 145, 0) 68%);
	filter: blur(12px);
	pointer-events: none;
	z-index: -1;
}

html {
	width: 100vw;
	overflow-x: hidden;
	overflow-x: hidden;
}

.colorfulBand {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.colorfulBand div{
	height: 8px;
}
.purple{
	width: 11%;
	background-color: #9c27b0;
}
.lightBlue{
	width: 18%;
    background: #56AD1E;
}

.orange {
    width: 31%;
    background: #FF7800;
}

.yellow {
    width: 15%;
    background: #e6d443;
}

.darkPurple {
    width: 13%;
    background: #6b1e5b;
}

.colorfulBand>div.green {
    width: 12%;
    background: #45b794;
}

.searchBg {
	width: 100%;
}

footer img {
	height: 100%;
}

.loading {
	/* position: absolute; */
	/* top: 0; */
	/* left: 0; */
	width: 100%;
	height: 50px;
	/* background-color: rgba(0, 0, 0, 0.5); */
	z-index: 9999;
	display: none;
	justify-content: center;
	align-items: center;
}

.loading::after {
	content: '';
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 4px solid #000;
	border-top-color: #000;
	animation: loading 1s linear infinite;
}

@keyframes loading {
	to {
		transform: rotate(360deg);
	}
}

.classTitle {
	width: 100%;
	font-size: 34px;
	display: flex;
	align-items: center;
	text-transform: uppercase;
	font-weight: 800;
	color: #ffffff;
	letter-spacing: 0.08em;
	text-shadow: 0 12px 30px rgba(10, 19, 43, 0.36);
	margin-top: 30px;
	font-family: 'Mark Pro',Arial,sans-serif;
	margin: 40px 0 24px;
	padding: 0 12px;
	position: relative;
}

.classTitle::before {
	content: '';
	width: 42px;
	height: 42px;
	margin-right: 16px;
	border-radius: 14px;
	background: linear-gradient(135deg, #ff6a88 0%, #ffbd66 100%);
	box-shadow: 0 12px 24px rgba(255, 122, 128, 0.28);
}

.listBtn{
	width: 260px;
	height: 56px;
	background: linear-gradient(135deg, #ff6a88 0%, #ff9966 45%, #6fe0ff 100%);
    border: 0;
    color: #132136;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    border-radius: 18px;
    font-size: 17px;
    margin: 25px 0;
    font-weight: 800;
	margin: 28px auto;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	box-shadow: 0 18px 40px rgba(8, 16, 34, 0.28);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.listBtn:hover{
	transform: translateY(-4px) scale(1.01);
	filter: saturate(1.05);
	box-shadow: 0 24px 48px rgba(8, 16, 34, 0.36);
}

.listBtn img{
	display: none;
	margin-left: 10px;
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 30px;
}

@media screen and (max-width:960px) {
	html {
		overflow-x: hidden;
	}

	body{
		overflow-x: hidden;
	}

	.classTitle {
		height: auto;
		font-size: 28px;
		margin: 28px 0 18px;
	}

	.classTitle::before {
		width: 30px;
		height: 30px;
		margin-right: 10px;
		border-radius: 10px;
	}
}