@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif
}

body {
	background: #0a0a0d;
	color: #fff;
	line-height: 1.6
}

.uwu-container {
	max-width: 1250px;
	margin: 0 auto;
	padding: 0 22px
}

.uwu-nav {
	backdrop-filter: blur(16px);
	background: rgba(10, 10, 13, .65);
	border-bottom: 1px solid rgba(255, 255, 255, .07);
	position: sticky;
	top: 0;
	z-index: 25
}

.uwu-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 75px
}

.uwu-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 700;
	position: relative
}

.uwu-logo img {
	width: 40px;
	height: 40px;
	border-radius: 50%
}

.uwu-logo-glow {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	filter: blur(45px);
	background: linear-gradient(120deg, #f472b6, #a855f7);
	opacity: .4;
	z-index: -1
}

.uwu-nav-buttons {
	display: flex;
	gap: 14px;
	align-items: center
}

.uwu-btn {
	padding: 9px 22px;
	border-radius: 10px;
	font-weight: 600;
	font-size: .92rem;
	cursor: pointer;
	text-decoration: none;
	transition: .25s
}

.uwu-btn-text {
	color: #eee;
	background: transparent
}

.uwu-btn-text:hover {
	color: #f472b6
}

.uwu-btn-primary {
	background: linear-gradient(145deg, #f472b6, #a855f7);
	color: #fff;
	box-shadow: 0 0 12px rgba(236, 72, 153, .35)
}

.uwu-btn-primary:hover {
	filter: brightness(1.2);
	box-shadow: 0 0 18px rgba(236, 72, 153, .55)
}

.uwu-btn-premium {
	background: linear-gradient(145deg, #ff99d6, #d47dff);
	color: #fff;
	box-shadow: 0 0 14px rgba(255, 153, 214, .35)
}

.uwu-btn-premium:hover {
	filter: brightness(1.15)
}

.uwu-user-label {
	font-weight: 600;
	color: #ccc
}

.uwu-avatar {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 2px solid #f472b6
}

.uwu-hero {
	text-align: center;
	padding: 120px 20px 90px
}

.uwu-hero-logo {
	width: 130px;
	height: 130px;
	margin: 0 auto 20px;
	filter: drop-shadow(0 0 25px rgba(236, 72, 153, .55))
}

.uwu-hero h1 {
	font-size: 3.2rem;
	font-weight: 800;
	background: linear-gradient(to right, #f472b6, #a855f7);
	-webkit-background-clip: text;
	color: transparent
}

.uwu-hero p {
	max-width: 700px;
	margin: 15px auto 30px;
	color: #ccc;
	font-size: 1.15rem
}

.uwu-hero-buttons {
	display: flex;
	justify-content: center;
	gap: 18px
}

.uwu-features {
	max-width: 1150px;
	margin: 0 auto;
	padding: 60px 20px
}

.uwu-features h2 {
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 50px;
	background: linear-gradient(to right, #f472b6, #a855f7);
	-webkit-background-clip: text;
	color: transparent
}

.uwu-feature {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-bottom: 80px;
	align-items: center
}

.uwu-feature img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 0 22px rgba(236, 72, 153, .25)
}

.uwu-feature h3 {
	font-size: 1.7rem;
	font-weight: 700
}

.uwu-feature p {
	color: #bbb;
	font-size: 1.05rem;
	margin-top: 6px
}

.uwu-footer {
	text-align: center;
	padding: 50px 0;
	background: #0a0a0d;
	border-top: 1px solid rgba(255, 255, 255, .08);
	margin-top: 80px
}

.uwu-footer div {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-bottom: 15px
}

.uwu-footer a {
	color: #aaa;
	text-decoration: none;
	font-size: .92rem
}

.uwu-footer a:hover {
	color: #f472b6
}

.uwu-footer span {
	color: #777;
	font-size: .85rem
}

@media(max-width:900px) {
	.uwu-feature {
		grid-template-columns: 1fr;
		text-align: center
	}

	.uwu-hero h1 {
		font-size: 2.5rem
	}

	.uwu-hero-buttons {
		flex-direction: column
	}
}

.uwu-info-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 20px;
	text-align: center;
}

.uwu-info-section h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.uwu-info-section p {
	color: #bbb;
	font-size: 1.1rem;
	margin-bottom: 50px;
}

.uwu-info-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}

.uwu-info-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 16px;
	padding: 32px 22px;
	transition: .25s;
}

.uwu-info-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 0 15px rgba(236, 72, 153, .35);
}

.uwu-info-card h3 {
	margin-bottom: 12px;
	font-size: 1.3rem;
	font-weight: 700;
}

.uwu-info-card p {
	color: #aaa;
	font-size: 0.95rem;
}


.uwu-feature-banner {
	max-width: 1200px;
	margin: 0 auto 120px auto;
	padding: 80px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 70px;
}

.uwu-feature-banner.reverse {
	flex-direction: row-reverse;
}

.uwu-feature-image img {
	width: 500px;
	border-radius: 14px;
	box-shadow: 0 0 28px rgba(236, 72, 153, .25);
}

.uwu-feature-text {
	max-width: 460px;
}

.uwu-feature-text h2 {
	font-size: 2.4rem;
	font-weight: 800;
	margin-bottom: 16px;
}

.uwu-feature-text p {
	color: #bbb;
	margin-bottom: 18px;
	font-size: 1.1rem;
}


.uwu-leaderboard ul {
	list-style: none;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 16px;
	padding: 20px;
	margin: 25px 0;
}

.uwu-leaderboard li {
	display: flex;
	justify-content: space-between;
	padding: 10px 12px;
	color: #eee;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.uwu-leaderboard li:last-child {
	border-bottom: none;
}

.uwu-leaderboard span {
	font-weight: 700;
}

.uwu-balance {
	color: #f472b6;
}


@media (max-width: 1100px) {
	.uwu-info-grid {
		grid-template-columns: 1fr 1fr;
	}

	.uwu-feature-banner,
	.uwu-feature-banner.reverse {
		flex-direction: column;
		text-align: center;
	}

	.uwu-feature-image img {
		width: 90%;
		max-width: 400px;
	}

	.uwu-feature-text {
		max-width: 600px;
		text-align: center;
	}
}

@media (max-width: 700px) {
	.uwu-info-grid {
		grid-template-columns: 1fr;
	}
}

.uwu-currency-only {
	text-align: center;
	display: block;
	padding: 100px 20px;
}

.uwu-currency-text {
	max-width: 650px;
	margin: 0 auto;
}

.uwu-leaderboard ul {
	padding: 20px;
	margin: 30px auto;
	width: 100%;
	max-width: 500px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.uwu-leaderboard li {
	display: flex;
	justify-content: space-between;
	padding: 13px 14px;
	font-size: 1.05rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.uwu-leaderboard li:last-child {
	border-bottom: none;
}

.uwu-rank {
	color: #f472b6;
	font-weight: 700;
	min-width: 45px;
	text-align: left;
}

.uwu-name {
	flex-grow: 1;
	text-align: left;
	font-weight: 600;
}

.uwu-balance {
	color: #f472b6;
	font-weight: 700;
}

.uwu-currency-fixed {
	max-width: 1200px;
	margin: 0 auto 140px auto;
	padding: 80px 20px;
	display: grid;
	grid-template-columns: 1fr 0.8fr;
	gap: 80px;
	align-items: center;
}

.uwu-currency-left {
	text-align: left;
	max-width: 520px;
}

.uwu-currency-left h2 {
	font-size: 2.4rem;
	font-weight: 800;
	margin-bottom: 14px;
}

.uwu-currency-left p {
	color: #bbb;
	margin-bottom: 20px;
	font-size: 1.1rem;
}

.uwu-currency-right {
	display: flex;
	justify-content: center;
}

.uwu-leaderboard ul {
	padding: 20px;
	margin: 0;
	width: 100%;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.uwu-leaderboard li {
	display: flex;
	justify-content: space-between;
	padding: 12px 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.uwu-leaderboard li:last-child {
	border-bottom: none;
}

.uwu-rank {
	width: 60px;
	font-weight: 700;
	color: #f472b6;
}

.uwu-name {
	font-weight: 600;
	flex-grow: 1;
}

.uwu-balance {
	font-weight: 700;
	color: #f472b6;
}

@media (max-width: 1000px) {
	.uwu-currency-fixed {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.uwu-currency-left {
		text-align: center;
		margin-bottom: 40px;
	}

	.uwu-rank {
		text-align: left;
	}
}