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

html, body {
	position: relative;
	width: 100%;
	height: 100%;
	scroll-behavior: smooth;
}

body {
	color: #fff;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	background: #0a0a0f;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	text-decoration: none;
	color: #25d366;
}

label {
	display: block;
}

input, button, select, textarea {
	font-family: inherit;
	font-size: inherit;
	-webkit-padding: 0.4em 0;
	padding: 0.4em;
	margin: 0 0 0.5em 0;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 4px;
	transition: all 0.3s ease;
}

input:disabled {
	color: #ccc;
}

button {
	color: #fff;
	background-color: #25d366;
	outline: none;
	border: none;
	cursor: pointer;
	border-radius: 8px;
}

button:disabled {
	color: #999;
	background-color: #333;
	cursor: not-allowed;
}

button:not(:disabled):hover {
	background-color: #1ebe58;
	transform: translateY(-1px);
}

button:not(:disabled):active {
	background-color: #199e49;
	transform: translateY(1px);
}

button:focus {
	box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.4);
}

/* Scrollbar styling */
::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

::-webkit-scrollbar-track {
	background: #0a0a0f;
}

::-webkit-scrollbar-thumb {
	background: #2a2a35;
	border-radius: 5px;
	border: 2px solid #0a0a0f;
}

::-webkit-scrollbar-thumb:hover {
	background: #3f3f50;
}

/* Selection */
::selection {
	background: rgba(37, 211, 102, 0.5);
	color: #fff;
}
