@import url('https://fonts.googleapis.com/css2?family=Jaro:opsz@6..72&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
	--global-primary-text-color: rgb(255, 255, 255);

	--nav-max-width: 1200px;
	--nav-height: 64px;
	--nav-bg: rgba(134, 144, 154, .15);
	--nav-text-color: rgb(255, 255, 255);
	--nav-link-hover-color: rgba(0, 0, 0, 0.25);
	--nav-blur-size: 5px;

	--btn-bg-color: rgba(255, 255, 255, 0.1);
	--btn-text-color: white;
	--btn-border-radius: 10px;
	--btn-border-color: rgba(255, 255, 255, 0.3);
	--btn-padding: 0.75rem 1.5rem;
	--btn-font-weight: 500;
	--btn-font-size: 1rem;

	--feature-blur-size: 5px;
	--feature-bg-color: rgba(255, 255, 255, 0.1);
	--feature-hover-bg-color: rgba(255, 255, 255, 0.25);
	--feature-border-radius: 10px;
	--feature-padding: 1.5rem;
}

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

body {
	font-family: 'Montserrat', sans-serif;
	color: var(--global-primary-text-color);
}

.hero {
	padding-top: calc(var(--nav-height) * 2);
	margin-top: calc(var(--nav-height) * -1);
	background: #222;
	color: var(--global-primary-text-color);
	text-align: center;
	height: 650px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-position: 50%;
	background-image: url("cassette_beasts_godot_game.jpg");
	background-repeat: no-repeat;
	background-blend-mode: darken;
	background-size: cover;
	background-color: rgba(0, 0, 0, 0.25);
}

.hero h1 {
	font-size: 2rem;
	margin-bottom: 1rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
}

.hero p {
	font-size: 1.25rem;
	max-width: 600px;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
}

.btn {
	display: inline-block;
	padding: var(--btn-padding);
	border-radius: var(--btn-border-radius);
	font-weight: var(--btn-font-weight);
	font-size: var(--btn-font-size);
	text-decoration: none;
	color: var(--btn-text-color);
	background-color: var(--btn-bg-color);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border: 2px solid var(--btn-border-color);
	cursor: pointer;
	user-select: none;
	white-space: nowrap;
	transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
	box-sizing: border-box;
}

.btn:hover,
.btn:focus {
	outline: none;
	background-color: rgba(255 255 255 / 0.15);
	border-color: rgba(255 255 255 / 0.7);
}

.features {
	padding: 4rem 1rem;
	background-color: #111;
	color: var(--global-primary-text-color);
}

.container {
	max-width: var(--nav-max-width, 1200px);
	margin: 0 auto;
}

.features h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	text-align: left;
}

.features .features-intro {
	font-size: 1rem;
	max-width: 600px;
	margin-bottom: 3rem;
	text-align: left;
	line-height: 1.6;
}

.feature-list {
	display: flex;
	gap: 2rem;
	justify-content: space-between;
	flex-wrap: wrap;
}

.feature {
	flex: 1 1;
	background-color: var(--feature-bg-color);
	backdrop-filter: blur(var(--feature-blur-size));
	-webkit-backdrop-filter: blur(var(--feature-blur-size));
	padding: var(--feature-padding);
	border-radius: var(--feature-border-radius);
	border: 2.5px solid rgba(255 255 255 / 0.15);
	box-shadow: 0 0 10px rgba(0 0 0 / 0.3);
	transition: background-color 0.3s ease;
}

.feature:hover {
	background-color: var(--feature-hover-bg-color);
}

.feature h3 {
	margin-top: 0;
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
}

.feature p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.4;
}

@media (max-width: 900px) {

	.features h2,
	.features {
		text-align: center;
	}

	.features-intro {
		content: hidden;
	}

	.feature-list {
		flex-direction: column;
		gap: 1.5rem;
	}

	.feature {
		max-width: 100%;
		margin: 0 auto;
	}
}

.footer {
	background-color: #0c0c0c;
	color: #bbb;
	font-size: 0.9rem;
	font-family: Arial, sans-serif;
	width: 100%;
}

.footer .container {
	padding: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}


.footer-top {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-column h4 {
	font-weight: bold;
	color: white;
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.footer-column a {
	display: block;
	color: #777;
	text-decoration: none;
	margin-bottom: 0.6rem;
	transition: color 0.3s ease;
}

.footer-column a:hover,
.footer-column a:focus {
	color: #7289da;
	outline: none;
}

.footer-bottom {
	text-align: center;
	border-top: 1px solid #222;
	padding-top: 2rem;
	font-size: 0.8rem;
	color: #555;
}

.footer-bottom a {
	color: #555;
	text-decoration: underline;
	transition: color 0.3s ease;
}

.footer-bottom a:hover,
.footer-bottom a:focus {
	color: #7289da;
	outline: none;
}

.disclaimer-overlay {
	-webkit-backdrop-filter: blur(250px);
	backdrop-filter: blur(250px);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.75);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.disclaimer-box {
	background: rgba(255, 255, 255, 0.1);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	border-radius: 10px;
	margin: 10px;
	padding: 2rem;
	max-width: 500px;
	text-align: center;
	gap: 1rem;
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: white;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.disclaimer-box h2 {
	font-size: 1.8rem;
	margin-bottom: 1rem;
}

.disclaimer-box p {
	font-size: 1rem;
	line-height: 1.5;
	margin-bottom: 1.5rem;
}

.disclaimer-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 1rem;
}