@font-face {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url('../fonts/manrope-latin-ext.woff2') format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url('../fonts/manrope-latin.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

:root {
	--ll-bg:     #1b35a5;
	--ll-text:   #ffffff;
	--ll-muted:  rgba(255, 255, 255, 0.55);
	--ll-shadow: rgba(0, 0, 30, 0.35);
	--ll-font:   'Manrope', sans-serif;
}

body.ll-guide-page .site-header,
body.ll-guide-page .site-footer,
body.ll-guide-page .nav-bar { display: none; }

body.ll-guide-page {
	font-family: var(--ll-font);
	background-color: var(--ll-bg);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	position: relative;
	overflow: hidden;
}

.ll-blobs-bg {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
}
.ll-blobs-mobile { display: none; }

.ll-guide-wrapper {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 3.5rem 2rem;
	width: 100%;
	max-width: 600px;
}

.ll-logo { margin-bottom: 4.5rem; }
.ll-logo img {
	width: 320px;
	height: auto;
	display: block;
	margin: 0 auto;
}

.ll-guide-subtitle {
	font-size: 22px;
	font-weight: 700;
	color: #ffe7cd;
	margin-bottom: 0.5rem;
}

.ll-guide-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ll-muted);
	margin-bottom: 2rem;
}

.ll-flags-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.4rem 1rem;
}

.ll-flag-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 9px;
	text-decoration: none;
	width: 100%;
}

.ll-flag-item:focus-visible {
	outline: 3px solid rgba(255, 255, 255, 0.7);
	outline-offset: 6px;
	border-radius: 22px;
}

.ll-flag-wrap {
	width: 80px;
	height: 80px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 18px var(--ll-shadow);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s cubic-bezier(.34, 1.56, .64, 1), box-shadow 0.2s ease;
	position: relative;
}

.ll-flag-item:hover .ll-flag-wrap {
	transform: translateY(-5px) scale(1.07);
	box-shadow: 0 14px 32px var(--ll-shadow);
}

.ll-flag-wrap .fi {
	width: 100% !important;
	height: 100% !important;
	border-radius: 0;
}

.ll-flag-name {
	font-size: 12px;
	font-weight: 600;
	color: var(--ll-text);
	letter-spacing: 0.01em;
	transition: opacity 0.15s ease;
	text-align: center;
}

.ll-flag-item:hover .ll-flag-name { opacity: 0.75; }

.ll-flag-item--inactive .ll-flag-wrap {
	opacity: 0.35;
	filter: grayscale(0.5);
}
.ll-flag-item--inactive { pointer-events: none; }

.ll-badge-soon {
	position: absolute;
	bottom: 5px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	font-size: 8px;
	font-weight: 700;
	font-family: var(--ll-font);
	letter-spacing: 0.07em;
	padding: 2px 5px;
	border-radius: 4px;
	white-space: nowrap;
	text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
	.ll-flag-wrap,
	.ll-flag-name { transition: none; }
}

@media (max-width: 600px) {
	.ll-blobs-desktop { display: none; }
	.ll-blobs-mobile  { display: block; }
}

@media (max-width: 768px) {
	.ll-guide-wrapper { padding-top: 1.5rem; }
}

@media (max-width: 420px) {
	.ll-flags-grid { gap: 1rem 0.6rem; }
	.ll-flag-wrap  { width: 64px; height: 64px; border-radius: 16px; }
	.ll-logo img   { width: 260px; }
	.ll-flag-name  { font-size: 10px; }
}
