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

body {
	line-height: 1.65;
	min-height: 100vh;
	position: relative;
	color: #f8fafc;
	overflow: hidden;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
}

/* Styly pozadí */
.page-background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: -1;
}

/* Pozadí pro desktop */
.page-background {
	background-image: url("/img/bg.jpg");
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

/* Modální okno pro cookies */
.cookies-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(15, 23, 42, 0.65);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	z-index: 1000;
	backdrop-filter: blur(8px);
}

@media (max-width: 1300px) {
	.cookies-overlay {
		justify-content: flex-start;
		padding-top: 20px;
	}

	h2 {
		font-size: 30px !important;
	}

	p {
		font-size: 16px !important;
	}
}

@media (max-width: 400px) {
	.cookies-overlay {
		justify-content: flex-start;
		padding-top: 0px;
	}

	h2 {
		font-size: 20px !important;
	}

	p {
		font-size: 14px !important;
	}
}

.cookie-wrapper {
	position: relative;
	max-width: 650px;
	width: 100%;
	margin: 0 auto;
	background-color: #21272e;
	border-radius: 12px;
	padding: 32px;
	box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
}

.cookie-top {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	gap: 20px;
}

#close-btn {
	font-size: 24px;
	position: absolute;
	right: 20px;
	top: 12px;
	text-decoration: none;
	font-weight: 700;
	color: #fff;
	transition: color 0.3s ease;

	&:hover {
		color: #ffd900;
	}
}

.cookie-btn {
	display: block;
	background-color: #ffd700;
	max-width: 250px;
	width: 100%;
	padding-block: 12px;
	color: #000;
	font-weight: 700;
	border-radius: 6px;
	font-size: 24px;
	font-style: normal;
	text-align: center;
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);

	&:hover {
		transform: translateY(-3px) scale(1.03);
		box-shadow: 0 8px 16px rgba(255, 215, 0, 0.4);
	}
}

.sidebar {
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 1000;
	font-family: "Work Sans", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	padding-right: 16px;
	margin-block: 10px;
	color: #e2e8f0;

	a {
		color: currentColor;
		text-decoration: none;
		margin-block: 10px;
		transition: color 0.3s ease;

		&:hover {
			color: #ffd900;
		}
	}
}
