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

:root {
	--bg: #080a0e;
	--bg2: #0d1117;
	--bg3: #131820;
	--bg4: #1a2030;
	--border: #1e2736;
	--border2: #263040;
	--border3: #2e3a50;
	--text: #c9d4e8;
	--text2: #7a8ba8;
	--text3: #4a5870;
	--accent: #00ff88;
	--accent2: #4d9fff;
	--accent3: #f0a500;
	--accent4: #b06cff;
	--red: #ff4d6a;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	background: var(--bg);
	color: var(--text);
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 15px;
	line-height: 1.65;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

@keyframes blink {

	0%,
	100% {
		opacity: 1
	}

	50% {
		opacity: 0
	}
}

@keyframes pulse-dot {

	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4)
	}

	70% {
		box-shadow: 0 0 0 6px rgba(0, 255, 136, 0)
	}
}

/* Nav */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 0 40px;
	height: 56px;
	background: rgba(8, 10, 14, 0.85);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border);
}

.logo {
	font-family: 'JetBrains Mono', monospace;
	font-size: 13px;
	font-weight: 500;
	color: var(--accent);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
}

.logo-blink {
	animation: blink 1.2s step-end infinite
}

.nav-links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 0;
	list-style: none
}

.nav-links a {
	display: block;
	padding: 8px 16px;
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	font-weight: 400;
	color: var(--text3);
	text-decoration: none;
	letter-spacing: 0.08em;
	transition: color 0.2s;
	position: relative;
}

.nav-links a:hover {
	color: var(--accent)
}

.blink {
	animation: blink 1.2s step-end infinite
}

/* Footer */
footer {
	border-top: 1px solid var(--border);
	padding: 24px 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	z-index: 1;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
}

footer span {
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	color: var(--text3)
}

footer a {
	color: var(--text3);
	text-decoration: none;
	transition: color 0.2s
}

footer a:hover {
	color: var(--accent)
}

/* Bottom Navbar - Mobile */
.bottom-nav {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 99;
	background: rgba(8, 10, 14, 0.95);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	border-top: 1px solid var(--border);
	padding: 6px 0;
	padding-bottom: calc(6px + env(safe-area-inset-bottom));
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-around;
}

.bottom-nav-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 8px 4px;
	color: var(--text3);
	text-decoration: none;
	transition: color 0.2s, -webkit-transform 0.2s;
	transition: color 0.2s, transform 0.2s;
	transition: color 0.2s, transform 0.2s, -webkit-transform 0.2s;
	-webkit-tap-highlight-color: transparent;
}

.bottom-nav-item:active {
	-webkit-transform: scale(0.95);
	transform: scale(0.95)
}

.bottom-nav-item:hover {
	color: var(--accent)
}

.bottom-nav-item.active {
	color: var(--accent)
}

.bottom-nav-icon {
	width: 22px;
	height: 22px;
	margin-bottom: 2px;
	display: block;
}

.bottom-nav-label {
	font-family: 'JetBrains Mono', monospace;
	font-size: 9px;
	letter-spacing: 0.04em;
}

/* Mobile */
@media(max-width:768px) {
	nav {
		padding: 0 20px
	}

	.nav-links {
		display: none
	}

	.nav-status {
		display: none
	}

	footer {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 8px;
		text-align: center;
		padding: 20px;
		padding-bottom: 25px;
		position: static;

	}

	.bottom-nav {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex
	}

	body {
		padding-bottom: 60px
	}
}

.bottom-nav {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(8, 10, 14, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-top: 1px solid #1e2736;
	padding: 8px 0 20px;
	z-index: 100;
	justify-content: space-around;
	align-items: flex-start;
}

@media(max-width:768px) {
	.bottom-nav {
		display: flex
	}

	nav .nav-links {
		display: none
	}
}

.bottom-nav-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 8px 16px;
	border-radius: 8px;
	text-decoration: none;
	color: hsl(218, 20%, 36%);
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.06em;
	transition: color 0.2s;
	-webkit-tap-highlight-color: transparent;
	min-width: 60px;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
	color: #00ff88
}

.bottom-nav-icon {
	width: 22px;
	height: 22px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
	opacity: 1;
}

.bottom-nav-dot {
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: #00ff88;
	opacity: 0;
	/* ← check this is 0 not 1 */
	margin-top: 1px;
}

.bottom-nav-item.active .bottom-nav-dot {
	opacity: 1
}

@media(max-width:768px) {
	.cursor {
		display: none !important
	}

	.cursor-ring {
		display: none !important
	}
}

/* CSS */
.button-85 {
	padding: 0.6em 2em;
	border: none;
	outline: none;
	color: #00ff88;
	background: #4a5870;
	cursor: pointer;
	position: relative;
	z-index: 0;
	border-radius: 4px;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	text-decoration: none;
}

.button-85:before {
	content: "";
	background: linear-gradient(45deg,
			#ff0000,
			#ff7300,
			#fffb00,
			#48ff00,
			#00ffd5,
			#002bff,
			#7a00ff,
			#ff00c8,
			#ff0000);
	position: absolute;
	top: -2px;
	left: -2px;
	background-size: 400%;
	z-index: -1;
	filter: blur(5px);
	-webkit-filter: blur(5px);
	width: calc(100% + 4px);
	height: calc(100% + 4px);
	animation: glowing-button-85 20s linear infinite;
	transition: opacity 0.3s ease-in-out;
	border-radius: 4px;
	text-decoration: none;
}

@keyframes glowing-button-85 {
	0% {
		background-position: 0 0;
	}

	50% {
		background-position: 400% 0;
	}

	100% {
		background-position: 0 0;
	}
}

.button-85:after {
	z-index: -1;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: #22222284;
	left: 0;
	top: 0;
	border-radius: 4px;
}

/* CSS */
.button-88 {
	display: flex;
	align-items: center;
	font-family: inherit;
	font-weight: 500;
	font-size: 16px;
	padding: 0.7em 1.4em 0.7em 1.1em;
	color: white;
	background: #ad5389;
	background: linear-gradient(0deg, rgba(20, 167, 62, 1) 0%, rgba(102, 247, 113, 1) 100%);
	border: none;
	box-shadow: 0 0.7em 1.5em -0.5em #14a73e98;
	letter-spacing: 0.05em;
	border-radius: 20em;
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
}

.button-88:hover {
	box-shadow: 0 0.5em 1.5em -0.5em #14a73e98;
}

.button-88:active {
	box-shadow: 0 0.3em 1em -0.5em #14a73e98;
}

.status-process {
  color: #00ff9c;
  border: 1px solid #00ff9c;
  background: rgba(0,255,156,0.08);
}

.status-ongoing {
  color: #38bdf8;
  border: 1px solid #38bdf8;
}

.status-done {
  color: #4ade80;
  border: 1px solid #4ade80;
}