	@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
	body {
		height: 100%;
		width: 100%;
		margin: 0;
		padding: 0;
		background: linear-gradient(200deg, #E5ECFA 35%, #B6BCC5 93%);
		text-align: center;
	}

	.hidden {
		display:none;
	}

	.backdrop {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(255, 255, 255, 0.8); /* semi-transparent black */
		z-index: 999; /* Below modal but above the rest of the page */
	}

	/* Prevent body scroll when modal is open */
	body.modal-open {
		overflow: hidden;
	}

	/* Allow scrolling inside the modal */
	.modal {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		overflow-y: auto;
		background-color: rgba(0, 0, 0, 0.5); /* Optional: Add a background behind the modal */
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.modal-content {
		max-height: 90vh; /* Make sure modal content doesn't exceed the viewport height */
		overflow-y: auto;
		background-color: #fff; /* Ensure the content area has a background */
		padding: 20px; /* Optional: Add some padding inside the modal */
		border-radius: 8px; /* Optional: Add rounded corners */
	}

	* {
		font-family: "Montserrat", sans-serif;
	}

	/** Landing page **/
	.container {
		width: 100%;
		margin: 0 auto;
		position: relative;
	}

	.container img.img-bottom {
		position: absolute;
		width: 100%;
		left: 0;
		right: 0;
		bottom: 0;
		background: url('../../assets/img/airline_primary.jpg') no-repeat center center;
		opacity: 0.2;
		mask-image: linear-gradient(to top, #E5ECFA 60%, transparent 100%);
		background-size: cover;
		z-index: -2;
	}

	.content-container {
		max-width: 1200px;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: 0 1.5rem;
		gap: 5rem;
		padding: 4rem 0 10rem 0;
	}

	.top-img {
		position: relative;
		height: 100vh;
		color: white;
		overflow: hidden;
	}
	
	.top-img:before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: url('../../assets/img/airline_primary.jpg') no-repeat center center;
		-webkit-mask-image: linear-gradient(#E5ECFA 90%, transparent 100%);
		mask-image: linear-gradient(to bottom, #E5ECFA 60%, transparent 100%);
		background-size: cover;
		filter: blur(3px);
		z-index: -2;
	}

	/* SIGURD */ 
	.guy {
		position: absolute;
		left: -60%;
		top: -220px;
		width: 30rem;
		z-index: 2;
	}

	.content {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 2.5rem;
	}

	/** SIGURD */
	.logo {
		max-width: 400px;
		background-size: cover;
		/* -webkit-filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.5)); */
		filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.3));
	}

	.tagline {
		font-size: 2.5rem;
		font-weight: 900;
		font-style: italic;
		text-shadow: rgba(17, 51, 83, 0.65) 0px 2px 6.4px;
		text-transform: uppercase;
		white-space: nowrap;
	}

	.button-container {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 1rem;
		filter: drop-shadow(0px 4px 2px rgba(0, 0, 0, 0.25));
	}

	.button-container button, .button-container a {
		border: none;
		cursor: pointer;
		border-radius: 25px;
		white-space: nowrap;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 1rem;
		overflow: hidden;
		position: relative;
		z-index: 10;
		
		span {
			z-index: 20;
			font-size: 1rem;
			font-style: italic;
			font-weight: 900;
			text-transform: uppercase;
			text-rendering: optimizeLegibility;
			text-decoration: none;
			padding: 0.8rem 3rem;
			display: flex;
			align-items: center;
			justify-content: center;
			gap: 1rem;
		}
		
		&:after {
			background: #fff;
			content: "";
			height: 155px;
			left: -75px;
			opacity: .2;
			position: absolute;
			top: -50px;
			transform: rotate(35deg);
			transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
			width: 50px;
			z-index: 1;
		}
	}


	.button-container button:hover {
		outline: white 3px solid;
		&:after {
		left: 120%;
		transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
		}
	}

	.play-now {
		background: #34A3FF;
		color: white;
		width: 100%;
	}
	.watch-trailer {
		background: rgba(197, 197, 197, 0.3);
		color: white;
		outline: white solid 2px;
		outline-offset: -2px;
		width: 100%;
	}
	.watch-trailer:hover {
		background: rgba(197, 197, 197, 0.5);
	}

	.content-container {
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 10rem;
		padding: 10rem 5rem;
	}

	.section {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 6rem;
		margin: 0 auto;
		flex-direction: row;
		color: rgba(45, 64, 91, 1);
	}

	.section:nth-child(even) {
		flex-direction: row-reverse;
	}

	.image-container {
		width: 70%;
	}

	.text-container {
		width: 30%;
		text-align: justify;
	}

	.section img {
		width: 100%;
		height: auto;
	}

	.section h2 {
		font-size: 2.6rem;
		font-weight: 900;
		text-transform: uppercase;
		font-style: italic;
	}

	.section h3 {
		font-size: 1.8rem;
		font-weight: 900;
		text-transform: uppercase;
		margin-top: -30px;
		font-style: italic;
	}

	.section p {
		font-size: 1rem;
		color: rgba(45, 64, 91, 1);
	}

	.background {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-image: url('../../assets/img/airline_primary.jpg');
		background-size: cover;
		background-position: center;
		filter: blur(5px);
		z-index: -2;
		
	}

	.background-overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(230, 237, 251, 0.6);
		z-index: -1;
	}
	/** Footer (landingpage) **/
	footer {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		height: 10rem;
		background-color: rgba(32, 35, 42, 1);
		padding: 4rem 8rem;
		color: rgba(246, 247, 251, 1);
		text-align: left;
		font-size: 0.8rem;
		color: #F6F7FB;
	}

	footer .company-info {
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: baseline;
	}

	footer .company-info p {
		display: flex;
		flex-direction: column;
		margin: 0;
		font-weight: 400;
	}

	footer .games-text {
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
	}

	footer .games-text p {
		margin: 0;
	}

	footer .game-links {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 2rem;
	}

	footer .company-links {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 4rem;
	}

	footer .company-links a {
		color: #F6F7FB;
	}

	footer .company-links a:hover {
		text-decoration: underline;
	}

	footer .games-text p {
		text-align: center;
		font-weight: 700;
		margin-right: 2rem;
	}

	footer .company-links p {
		color: rgba(246, 247, 251, 0.5);
		font-weight: 400;
	}

	footer .tg-logo {
		height: 4rem;
		width: auto;
		object-fit: contain;
	}

	footer .games-logo {
		height: auto;
		width: 100%;
		max-width: 9rem;
		object-fit: contain;
	}

	footer .games-logo {
		margin: 10px;
	}

	footer .footer-bottom {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		width: 100%;
	}


	/* Modal */
	.modal {
		display: flex;
		justify-content: center;
		align-items: center;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 1;
	}

	.modal-content {
		background: linear-gradient(282.62deg, rgba(53, 55, 56, 0.9) 23.57%, rgba(74, 76, 79, 0.8) 79.46%);
		box-shadow: 0px 5px 15px 0px rgba(1, 5, 12, 0.32);
		padding: 3rem 5rem 2rem 5rem;
		border-radius: 0.2rem;
		width: 20rem;
		color: white;
		position: relative;
		text-align: left;
	}

	.modal-header {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	
	.modal-header .back,
	.modal-header .close {
		cursor: pointer;
	}

	.modal-header > *:only-child {
		margin-left: auto;
	}
	
	.modal-header .back {
		display: flex;
		align-items: center;
		flex-direction: row;
		text-decoration: none;
	}


	.modal-header svg {
		height: 1.5rem;
		width: 1.5rem;
		padding: 0.5rem;
	}

	.modal-content .logo {
		height: 3rem;
		width: auto;
		object-fit: cover;
		opacity: 0.2;
		display: block; 
		margin: 0 auto 1rem 0; 
	}


	.modal-content h2 {
		font-size: 1.25rem;
		letter-spacing: 1px;
	}

	input[type="email"],
	input[type="password"] {
		background: rgba(131, 131, 131, 0.5);
		width: 100%;
		padding: 0.7rem;
		margin: 0.6rem 0;
		border-radius: 0.3rem;
		border: 2px solid rgba(115, 115, 115, 0.66);
		box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.5) inset;
		color: rgba(174, 174, 174, 1);
		box-shadow: inset 0px 5px 10px 1px #00000024;
		font-style: italic;
		font-weight: 500;
		font-size: 0.9rem;
		box-sizing: border-box;
	}

	input[type="email"]::placeholder, input[type="password"]::placeholder {
		color: rgba(174, 174, 174, 1);
	}

	input[type="email"]:focus, input[type="password"]:focus {
		outline: none;
		border: 2px solid rgba(52, 163, 255, 1);
		box-shadow: 0px 2px 2px 0px rgba(25, 43, 37, 0.3) inset;
		background: linear-gradient(297.92deg, rgba(34, 41, 39, 0.4) 13.35%, rgba(34, 41, 39, 0.4) 85.1%);
	}


	.checkbox-container {
		display: flex;
		flex-direction: row;
		align-items: center;
		flex-wrap: nowrap;
	}

	/* Hide the default checkbox */
	input[type="checkbox"] {
		display: none;
	}

	/* Custom checkbox style */
	input[type="checkbox"] + label::before {
		content: "";
		display: inline-block;
		width: 1rem;
		height: 1rem;
		border: 0.2rem solid rgba(176, 203, 192, 0.4);
		border-radius: 0.2rem;
		background: linear-gradient(283.05deg, rgba(0, 0, 0, 0.4) -7.82%, rgba(49, 68, 63, 0.4) 107.14%);
		vertical-align: middle;
		cursor: pointer;
		margin-right: 0.5rem; 
		position: relative;
	}

	/* Custom checkbox checkmark */
	input[type="checkbox"]:checked + label::before {
		background-color: rgb(235, 235, 235);
		border: 0.2rem solid rgba(176, 203, 192, 0.4);
		content: "✔";
		color: white;
		display: inline-flex;
		justify-content: center;
		align-items: center;
		font-size: 0.8rem;
		position: relative;
		top: -2px;
	}

	.login-container {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center; 
		gap: 1rem;
	}

	.login-container p {
		color: rgb(218, 220, 224);
		font-size: 0.7rem;
		white-space: nowrap;
	}

	.forgot-password {
		width: 100%;
		text-align: center;
		margin-bottom: 3rem;
	}

	.forgot-password p {
		color: rgba(246, 247, 251, 1);
		cursor: pointer;
		font-size: 0.7rem;
		letter-spacing: 1px;
		font-weight: 300;
	}

	.modal-terms-consent {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
	}

	.modal-terms-consent p {
		font-size: 0.7rem;
		color: rgba(218, 220, 224, 1);
	}

	.modal-terms-consent p a {
		text-decoration: underline;
		color: rgba(218, 220, 224, 1);
	}

	/* Youtube Video */
	.video-container {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center; 
		margin: 0;
	}

	.video-content {
		position: relative;
		aspect-ratio: 16/9;
		max-height: 800px;
		box-sizing: border-box;
		width: 100%;
		margin: 0 auto; 
		overflow: hidden;
		border-radius: 0.5rem;
		box-shadow: 0px 5px 15px 0px rgba(1, 5, 12, 0.32);
		cursor: pointer;
	}

	.video-content iframe {
		width: 100%;
		height: 100%; 
		position: absolute; 
		top: 0;
		left: 0;
		display: block;
	}
	.close-video {
		width: 90%;
		display: flex;
		justify-content: flex-end;
		align-items: center;
		gap: 0.5rem;
	}

	.close-video div {
		cursor: pointer;
		padding: 0.5rem;
		border-radius: 0.5rem;
		margin-bottom: 0.5rem;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0.5rem;
	}

	.close-video div:hover {
		background: rgba(0, 132, 255, 0.178);
	}

	.close-video span, .close-video svg {
		color: rgb(0, 132, 198);
		font-weight: 700;
		margin: 0;
	}

	/** General styles **/
	p {
		color: rgb(218, 220, 224);
		font-size: 0.8rem;
	}
	.btn {
		width: 100%;
		height: 2.5rem;
		padding: 0.6rem 1rem;
		margin: 0.3rem 0;
		border: none;
		border-radius: 25px;
		cursor: pointer;
		font-size: 0.9rem;
		font-weight: 600;
	}
	.btn-grey {
		background-color: rgba(73, 73, 73, 1);
		color: rgba(126, 126, 126, 1);
		border: solid 2px rgba(126, 126, 126, 1);
	}

	.btn-blue {
		background-color: rgba(21, 114, 223, 1);
		color: white;
		border: solid 2px rgba(52, 163, 255, 1);
	}

	.btn-blue-border {
		background-color: transparent;
		color: rgba(246, 247, 251, 1);
		border: solid 2px rgba(21, 114, 223, 1);
	}

	.btn-white-border {
		background-color: transparent;
		color: rgba(246, 247, 251, 1);
		border: solid 2px rgba(246, 247, 251, 1);
	}

	.btn-google {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0.8rem;
	}

	.btn-google img {
		height: 100%;
		opacity: 1;
	}

	.btn-blue-border:hover {
		background-color: rgba(21, 114, 223, 1);
		color: white;
	}

	.btn-blue:hover {
		background-color: rgba(52, 163, 255, 1);
		color: white;
	}

	a {
		color: #007bff;
		text-decoration: none;
	}

	a:hover {
		text-decoration: underline;
	}
	label {
		font-size: 0.8;
		margin-bottom: 1.2rem;
		display: block;
		text-align: left;
		color: rgb(218, 220, 224);
		white-space: nowrap;
	}

	label a {
		text-decoration: underline;
		color: inherit;
	}

	label a:hover {
		color: white;
	}

	footer hr, footer span {
		display: none;
	}


	@media (max-width: 1000px) and (min-width: 800px) {
		.section {
			gap: 3rem; 
		}
		.content-container {
			padding: 4rem 2rem;
		}
		footer {
			padding: 2rem 4rem;
		}
	}

	/** Responsive **/
	@media (max-width: 800px) {
		.section {
			flex-direction: column; 
			gap: 2rem; 
			text-align: center; 
			padding: 2rem 1rem; 
		}
		.section:nth-child(even) {
			flex-direction: column; 
		}

		.logo {
			max-width: 300px;
		}

		.tagline {
			font-size: 2rem;
			white-space: normal;
		}

		.content-container {
			padding: 2rem 1rem;
			margin: 0;
			gap: 0rem;
		}

		.text-container {
			order: 1;
			width: 100%; 
			text-align: center;
		}

		.container .img.img-bottom {
			width: 100%;
		}

		.guy {
			display: none;
		}

		.button-container {
			flex-direction: column; 
			gap: 1rem;
		}

		.image-container {
			order: 2; 
			width: 100%;
		}

		.section img {
			width: 100%; 
			height: auto;
		}

		.modal-content {
			width: 85%;
			padding: 3rem 1rem;
		}

		.modal-content h2 {
			margin: 0 0 0 0;
		}

		.modal-content label {
			font-size: 0.75rem;
			white-space: normal;
		}

		footer {
			flex-direction: column;
			align-items: flex-start;
			padding: 2rem;
			height: auto;
			text-align: left;
		}

		footer .company-info,
		footer .games-text {
			width: 100%; 
			margin-bottom: 0; 
		}

		footer .games-text {
			align-items: center; 
		}

		footer .games-text p {
			margin-right: 0;
			margin-bottom: 1rem;
		}

		footer .game-links {
			width: 100%;
			display: flex;
			flex-direction: row;
			justify-content: space-evenly;
			align-items: center;
			gap: 2rem;
		}

		footer .company-links {
			flex-direction: row; 
			align-items: flex-start; 
			gap: 1rem;
		}

		footer .games-logo {
			max-width: 7rem; 
		}

		footer .footer-bottom {
			flex-direction: column; 
			align-items: flex-start;
		}
		
		footer hr {
			display: block;
			width: 100%;
			color: rgba(227, 227, 228, 0.082);
			margin: 2rem 0;
		}

		footer span {
			display: block;
		}
	}
