/* Typography */

html {
	font-family: 'Roboto', sans-serif;
	background-color: #1A1A1A;
}

body {
	background-color: #1A1A1A;
}

@media (min-width: 576px) {
	html {
		font-size: 14px;
	}
}

@media (min-width: 768px) {
	html {
		font-size: 16px;
	}
}

@media (min-width: 992px) {
	html {
		font-size: 18px;
	}
}

@media (min-width: 1200px) {
	html {
		font-size: 20px;
	}
}

.icons-social i {
	font-size: 1.5rem;
	padding: 10px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Custom Styles */

main {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	justify-content: center;
	padding: 60px 30px;
	text-align: center;
}

main > .intro {
	font-family: 'Reem Kufi', sans-serif;
	font-size: 3.75em;
	font-weight: 600;
	letter-spacing: 2px;
	margin-bottom: 1rem;
}

/* Countdown subtitle */
.countdown-subtitle {
	font-size: 0.875rem;
	font-weight: 300;
	color: #CCCCCC;
	margin-bottom: 1rem;
	letter-spacing: 1px;
}

/* Countdown styles */
.countdown {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin: 0 0 1rem 0;
}

.countdown-item {
	font-family: 'Roboto Mono', 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
	font-size: 1.5rem;
	font-weight: 400;
	background: rgba(250, 250, 250, 0.15);
	color: #E0E0E0;
	padding: 8px 12px;
	border-radius: 8px;
	min-width: 48px;
	text-align: center;
}

.icons-social a:hover i {
	transform: scale(1.1);
}

.icons-social a {
	text-decoration: none;
}

.brand-w,
.brand-m,
.brand-l,
.brand-s {
	color: #D4501B;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 30px;
	border-bottom: 1px solid rgba(250, 250, 250, 0.15);
	background: rgba(26, 26, 26, 0.7);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	z-index: 1000;
}

.header-left {
	display: flex;
	align-items: center;
	gap: 9px;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

.header-left:hover {
	opacity: 0.9;
}

.header-logo {
	height: 1.2rem;
	width: auto;
}

.header-text {
	font-family: 'Roboto', sans-serif;
	font-size: 0.75rem;
	font-weight: 400;
	color: #E0E0E0;
	letter-spacing: 0.5px;
}

.header-button {
	font-family: 'Roboto', sans-serif;
	font-size: 0.75rem;
	font-weight: 400;
	color: #E0E0E0;
	border: 1px solid #D4501B;
	border-radius: 8px;
	padding: 6px 12px;
	text-decoration: none;
	transition: all 0.2s ease;
}

.header-button:hover {
	background: rgba(212, 80, 27, 0.1);
	border-color: #D4501B;
}

.footer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px 30px;
	font-size: 0.65rem;
	font-weight: 300;
	color: #E0E0E0;
	letter-spacing: 0.5px;
	border-top: 1px solid rgba(250, 250, 250, 0.15);
	background: rgba(26, 26, 26, 0.7);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-left,
.footer-right {
	color: #CCCCCC;
}

.footer-right a {
	color: inherit;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.footer-right a:hover {
	opacity: 0.7;
}

@media (max-width: 768px) {
	.header {
		padding: 12px 16px;
	}

	.footer {
		padding: 12px 16px;
	}

	.header-left {
		gap: 9px;
	}

	.header-logo {
		height: 1.2rem;
	}

	.header-text {
		font-size: 0.75rem;
	}

	.header-button {
		font-size: 0.7rem;
		padding: 5px 10px;
	}
}
