/* CSS Reset - Fix border/margin issues */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

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

/* Main layout styles */
.main {
	background: linear-gradient(135deg, #4a6741 0%, #3f5a36 25%, #374f2f 50%, #304529 75%, #22311d 100%);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.main::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(ellipse at center, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 50%, transparent 80%);
	animation: breathe 4s ease-in-out infinite;
	pointer-events: none;
}

@keyframes breathe {
	0%, 100% { 
		opacity: 0.4; 
		transform: scale(0.95); 
	}
	50% { 
		opacity: 1; 
		transform: scale(1.1); 
	}
}

.center {
	width: 60%;
	height: 80%;
	max-width: 500px;
	position: relative;
	background: #050505;
	border-radius: 10px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.content {
	width: 80%;
	max-width: 600px;
	position: relative;
	color: #F0F8FF;
	z-index: 1;
	padding: 0 20px;
}

.nav-links {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-top: 20px;
}

.nav-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.nav-item a {
	margin-bottom: 8px;
}

.nav-item .label {
	font-size: 14px;
	font-weight: 400;
	opacity: 0.8;
	color: white;
	text-align: center;
}

a {
	color: #F0F8FF !important;
	text-decoration: none;
}

.icon {
	font-size: 27px;
	width: 27px;
	height: 27px;
	display: inline-block;
}

body, h1, h2, h3, h4, h5, h6, button {
	font-family: "Quicksand", sans-serif;
}

h1 {
	font-size: 2.5rem;
	margin: 0 0 5px 0;
	line-height: 1;
}

h3 {
	font-size: 1.1rem;
	margin: 0 0 20px 0;
	line-height: 1;
	font-weight: 300;
}

/* Mobile Responsive Media Queries */
@media screen and (max-width: 768px) {
	.center {
		width: 85%;
		height: 85%;
		max-width: none;
	}
	
	.content {
		width: 80%;
		padding: 30px 20px;
	}
	
	h1 {
		font-size: 2.2rem;
		margin: 0 0 10px 0;
	}
	
	h3 {
		font-size: 1rem;
		margin: 0 0 30px 0;
	}
	
	.nav-links {
		flex-direction: column;
		gap: 20px;
		margin-top: 35px;
		align-items: center;
	}
	
	.nav-item .label {
		font-size: 13px;
	}
	
	.icon {
		font-size: 28px;
		width: 28px;
		height: 28px;
	}
}

@media screen and (max-width: 480px) {
	.center {
		width: 80%;
		height: 80%;
	}
	
	.content {
		width: 75%;
		padding: 40px 25px;
	}
	
	h1 {
		font-size: 2rem;
	}
	
	h3 {
		font-size: 0.9rem;
	}
	
	.nav-links {
		flex-direction: column;
		gap: 18px;
		margin-top: 40px;
		align-items: center;
	}
	
	.nav-item .label {
		font-size: 12px;
	}
	
	.icon {
		font-size: 26px;
		width: 26px;
		height: 26px;
	}
}

/* Quicksand font */
@font-face {
	font-family: 'Quicksand';
	font-style: normal;
	font-weight: 400;
	src: local('Quicksand Regular'), local('Quicksand-Regular'), url(https://fonts.gstatic.com/s/quicksand/v6/sKd0EMYPAh5PYCRKSryvW1tXRa8TVwTICgirnJhmVJw.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
