@font-face {
	font-family: main;
	src: url("./fonts/Montserrat-Regular.ttf");
}

html,
body {
	margin: 0;
	width: 100%;
	height: 100%;
}

body {
	font-family: main, sans-serif;
	background: linear-gradient(90deg, #0f0f0f 0%, #2d2d2d 100%);
	background-attachment: fixed;
	background-size: cover;
	color: #f0f0f0;
	overflow-x: hidden !important;
	line-height: 1.6;
	padding: 20px;
}

::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: #333;
}

::-webkit-scrollbar-thumb {
	background: #666;
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: #999;
}

.disclaimer {
	padding: 20px;
	text-align: justify;
	max-width: 800px;
	margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #ffffff;
	margin-bottom: 1rem;
	font-weight: 600;
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

h1 {
	font-size: 2.5rem;
	text-align: center;
	margin-top: 2rem;
}

h2 {
	font-size: 2rem;
	border-bottom: 2px solid #666;
	padding-bottom: 0.5rem;
}

p {
	margin-bottom: 1rem;
}

a {
	color: #4fc3f7;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: #81d4fa;
	text-decoration: underline;
}

ul {
	padding-left: 1.5rem;
}

li {
	margin-bottom: 0.5rem;
}

hr {
	border: none;
	height: 1px;
	background: linear-gradient(90deg, transparent, #666, transparent);
	margin: 2rem 0;
}

.container {
	padding: 20px;
	background: rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	margin-top: 20px;
}