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

.rossnh {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	height: 100vh;
	padding: 10px;

	&::before {
		z-index: -1;
		content: "";
		position: absolute;
		inset: 0;
		background-image: url("/img/bg.webp");
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
	}

	&::after {
		content: "";
		z-index: -1;
		position: absolute;
		inset: 0;
		background-color: rgba(0, 0, 0, 0.3);
	}
}

.rossnh-wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
	justify-content: center;
	padding-top: 100px;
	max-width: 900px;
	margin: 0 auto;
	text-align: center;

	h2 {
		color: #fff;
		font-size: 32px;
		font-weight: 700;
	}
}

.countdown {
	color: #fff;
	font-size: 48px;
	font-weight: 700;
}

.rossnh-footer-links {
	position: absolute;
	bottom: 0;

	a {
		color: #fff;
		text-decoration: none;
		font-weight: 700;

		&:hover {
			text-decoration: underline;
		}
	}
}

h3 {
	color: #e0d3c9;
	font-size: 28px;
	font-weight: 700;
}

.rossnh-link-btn {
	position: relative;
	display: block;
	max-width: 400px;
	background-color: #a6a6a6;
	padding: 16px 20px;
	width: 100%;
	text-align: center;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	font-size: 30px;
	transform: scale(1);
	border-radius: 24px;
	transition: transform 0.4s ease;

	&:hover {
		transform: scale(1.02);
	}
}

.flare {
	position: absolute;
	top: 0;
	height: 100%;
	width: 25px;
	transform: skewX(-45deg);
	animation: flareAnimation;
	left: 80%;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0.1),
		rgba(255, 255, 255, 0.4)
	);
	animation: flareAnimation 3s infinite linear;
}

@keyframes flareAnimation {
	0% {
		left: 10%;
	}
	100% {
		left: 80%;
	}
}
