* {
	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;
	transition: all 0.65s cubic-bezier(0.3, 0.95, 0.45, 0.95);
}

/* Pozadí pro desktop */
.page-background {
	background-image: url("/img/bg.webp");
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	filter: brightness(0.6) contrast(1.1);
}

/* 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: flex-end;
	align-items: center;
	flex-direction: column;
	z-index: 1000;
	backdrop-filter: blur(8px);
}

.cookies-modal {
	color: #f1f5f9;
	padding: 2.8rem;
	width: 100%;
	position: relative;
	/* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.07); */
	animation: modalSlideIn 0.7s cubic-bezier(0.22, 1, 0.36, 1);
	background: #fff;
}

@keyframes modalSlideIn {
	from {
		transform: translateY(70px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.cookies-modal::before {
	content: "";
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	bottom: -1px;
	z-index: -1;
	opacity: 0.4;
	filter: blur(6px);
}

.cookies-text-wrapp {
	font-family: "abcsans", -apple-system, blinkmacsystemfont, "Segoe UI",
		"Roboto", "Helvetica Neue", arial, sans-serif;
	color: #000;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.55;
	font-size: 16px;
}
.cookies-text-wrapp p {
	margin: 16px 0;
}

.cookies-title {
	/* font-family: "Work Sans", sans-serif; */
	font-size: 1.8rem;
	font-weight: 700;
	color: #000;
	width: 100%;
	text-align: center;
}

.cookies-actions {
	display: flex;
	justify-content: center;
	margin-top: 50px;
	gap: 10px;
}

.cookies-btn {
	display: inline-block;
	padding: 0.95rem 2.5rem;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 500;
	text-align: center;
	min-width: 200px;
	transition: all 0.3s ease;
	font-size: 1.05rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	background: #1e5ceb;
	color: white;
	/* box-shadow: 0 10px 15px rgba(30, 92, 235, 0.3); */
	position: relative;
	overflow: hidden;
	text-decoration: none;
}
.cookies-btn:hover {
	background: #10316a;
}

/* Přizpůsobení pro mobilní zařízení */
@media (max-width: 810px) {
	.cookies-btn {
		padding: 0.95rem;
		min-width: auto;
	}
}
@media (max-width: 767px) {
	.cookies-modal {
		padding: 2.2rem 1.8rem;
	}

	.cookies-title {
		font-size: 1.5rem;
	}
	.cookies-text-wrapp {
		line-height: normal;
		font-size: 14px;
	}
	.cookies-actions {
		flex-wrap: wrap;
	}
	.cookies-btn {
		width: 100%;
	}
}

.sidebar {
	display: none;
	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: #10b981;
		}
	}
}
