/*@import "tailwindcss";*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");

:root {
	--bg1: #111827; /*#0a0f1a;*/
	--bg2: #1b273f; /*#16213e;*/
	--bg3: #213152; /*#233554;*/
	--bg4: #2d3c5a; /*#30446d;*/
	--bg5: #3a4a6b; /*#415785;*/

	--title: #ffffff;
	--text: #f9fafb;

	--primary: rgb(0, 100, 255); /*rgb(6, 82, 221) #005bbb, #004791*/
	--secondary: rgb(0, 86, 179); /*rgb(0, 100, 200)   #0056b3*/
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", "Nunito", sans-serif;
	color: var(--text);

	scrollbar-width: thin;
	scrollbar-color: rgba(80,80,80,0.6) transparent;
}

body {
	position: relative;
	min-height: 100vh;

	background: radial-gradient(100% 100% at 50% 15%, var(--bg2) 0%, var(--bg1) 75%);
	background-repeat: no-repeat;
}

main {
	/*display: flex;*/
	flex-direction: column;
	justify-content: flex-start;
	padding: 2rem 3rem;
}

h1 {font-size: 2.5rem !important; font-weight: 600 !important; color: var(--title)}
h2 {font-size: 2rem !important; font-weight: 500 !important; color: var(--title)}
h3 {font-size: 1.5rem !important; font-weight: 400 !important; color: var(--title)}
h4 {font-size: 1.2rem !important; font-weight: 400 !important; color: var(--title)}

/*
	Header
*/

header {
	position: relative;
	padding: 0 3rem;

	/*position: fixed;
	width: 100%;
	z-index: 1000;
	padding: 0 3rem;*/

	/*backdrop-filter: blur(16px);
	background: rgba(27, 39, 63, 0.7);*/

	/*background: linear-gradient(var(--bg3), var(--bg2));*/
	background: var(--bg1);
	box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.25);
	border-bottom: 1px solid var(--bg1);
}

.navbar {
	height: 4rem;

	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
}

.navbar .logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: white;
	font-weight: 800;
	font-size: 1.5em;
	transition: all 0.3s;
}

.navbar .logo:hover {
	transform: scale(1.05);
}

.navbar .logo img {
	width: 32px;
	height: 32px;
	margin-right: 10px;
}

.navbar .links {
	display: flex;
	gap: 20px;
}

.navbar .links .button {
	display: flex;
	align-items: center;
	text-decoration: none;
	font-weight: 600;
	color: white;
	padding: 10px 20px;
	border-radius: 5px;
	transition: background-color 0.3s, transform 0.3s;
}

.navbar .links .button:hover {
	transform: scale(1.1);
}

.navbar .links .button img {
	width: 24px;
	height: 24px;
	margin-right: 10px;
}

@media (max-width: 768px) {
	header {
		padding: 0 1rem;
	}

	.navbar .links {
		gap: 0;
	}

	.navbar .links .button span {
		display: none;
	}

	.navbar .links .button img {
		margin-right: 0;
	}
}

/*
	Footer
*/

footer {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	text-align: center;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	color: #6b7280;
	font-size: 0.875rem;
	line-height: 1.625;
}

/*
	Circles
*/

.circles {position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; opacity: .5; z-index: -1}
.circles li {position: absolute; display: block; list-style: none; width: 20px; height: 20px; background: rgba(255, 255, 255, .1); animation: animate 25s linear infinite; bottom: -150px}
.circles li:nth-child(1) {left: 25%; width: 80px; height: 80px; animation-delay: 0s}
.circles li:nth-child(2) {left: 10%; width: 20px; height: 20px; animation-delay: 2s; animation-duration: 12s}
.circles li:nth-child(3) {left: 70%; width: 20px; height: 20px; animation-delay: 4s}
.circles li:nth-child(4) {left: 40%; width: 60px; height: 60px; animation-delay: 0s; animation-duration: 18s}
.circles li:nth-child(5) {left: 65%; width: 20px; height: 20px; animation-delay: 0s}
.circles li:nth-child(6) {left: 75%; width: 110px; height: 110px; animation-delay: 3s; animation-duration: 20s}
.circles li:nth-child(7) {left: 35%; width: 150px; height: 150px; animation-delay: 7s; animation-duration: 30s}
.circles li:nth-child(8) {left: 50%; width: 25px; height: 25px; animation-delay: 15s; animation-duration: 45s}
.circles li:nth-child(9) {left: 20%; width: 15px; height: 15px; animation-delay: 2s; animation-duration: 35s}
.circles li:nth-child(10) {left: 85%; width: 150px; height: 150px; animation-delay: 0s; animation-duration: 11s}

@keyframes animate {
	0% {transform: translateY(0) rotate(0); opacity: 1; border-radius: 0}
	to {transform: translateY(-1000px) rotate(720deg); opacity: 0; border-radius: 50%}
}

/*
	Login
*/

.login-btn {
	background: linear-gradient(90deg, #4f8cff 0%, #2356c7 100%);
	color: #fff;
	border-radius: 6px;
	padding: 8px 18px;
	display: inline-flex;
	align-items: center;
	font-weight: 600;
	box-shadow: 0 2px 8px rgba(79,140,255,0.08);
	transition: background 0.2s, box-shadow 0.2s;
	border: none;
	margin-left: 10px;
	cursor: pointer;
}

.login-btn:hover {
	box-shadow: 0 4px 16px rgba(79,140,255,0.16);
	text-decoration: none;
}

.profile-btn a:hover {
	transform: scale(1.1);
}

.profile-btn img {
	width: 40px;
	height: 40px;

	border-radius: 50%;
	object-fit: cover;
	display: inline-block;

	outline-offset: 2px;
	outline: 2px solid rgba(255, 255, 255, 0.8);
}