:root {
    --fl-color-primary: #8b5cf6;
    --fl-color-primary-soft: #a78bfa;
    --fl-color-primary-dark: #6d28d9;
    --fl-color-secondary: #3b82f6;
    --fl-color-secondary-soft: #60a5fa;
    --fl-color-background: #0b0b0d;
    --fl-color-surface: #131316;
    --fl-color-surface-elevated: #18181b;
    --fl-color-surface-subtle: #111827;
    --fl-color-surface-strong: #0d0f24;
    --fl-color-text-primary: #ffffff;
    --fl-color-text-secondary: #9ca3af;
    --fl-color-text-muted: #6b7280;
    --fl-color-border-subtle: #1f2933;
    --fl-color-border-strong: rgba(255, 255, 255, 0.12);
    --fl-label-type-public-bg: #0b1b3a;
    --fl-label-type-public-border: #2563eb;
    --fl-label-type-public-text: #93c5fd;
    --fl-label-type-hospitality-bg: #2a1400;
    --fl-label-type-hospitality-border: #f97316;
    --fl-label-type-hospitality-text: #fdba74;
    --fl-label-type-shop-bg: #072522;
    --fl-label-type-shop-border: #14b8a6;
    --fl-label-type-shop-text: #5eead4;
    --fl-label-free-bg: #082416;
    --fl-label-free-border: #22c55e;
    --fl-label-free-text: #86efac;
    --fl-label-open24-bg: #0b2740;
    --fl-label-open24-border: #38bdf8;
    --fl-label-open24-text: #bae6fd;
    --fl-label-accessible-bg: #14153a;
    --fl-label-accessible-border: #6366f1;
    --fl-label-accessible-text: #a5b4fc;
    --fl-label-baby-bg: #2a1118;
    --fl-label-baby-border: #fb7185;
    --fl-label-baby-text: #fecdd3;
    --fl-label-genderneutral-bg: #1d1033;
    --fl-label-genderneutral-border: #a855f7;
    --fl-label-genderneutral-text: #e9d5ff;
    --fl-label-soap-bg: #06252c;
    --fl-label-soap-border: #06b6d4;
    --fl-label-soap-text: #67e8f9;
    --fl-label-toiletpaper-bg: #241a06;
    --fl-label-toiletpaper-border: #f59e0b;
    --fl-label-toiletpaper-text: #fde68a;
    --fl-radius-sm: 6px;
    --fl-radius-md: 10px;
    --fl-radius-lg: 16px;
    --fl-radius-xl: 24px;
    --fl-radius-full: 999px;
    --fl-shadow-strong: 0 20px 80px rgba(0, 0, 0, 0.65);
    --fl-space-xs: 4px;
    --fl-space-sm: 8px;
    --fl-space-md: 12px;
    --fl-space-lg: 16px;
    --fl-space-xl: 24px;
    --fl-space-2xl: 32px;
    --fl-space-3xl: 44px;
}

@media (prefers-color-scheme: light) {
    :root {
        --fl-label-type-public-bg: #dbeafe;
        --fl-label-type-public-border: #2563eb;
        --fl-label-type-public-text: #1e3a8a;
        --fl-label-type-hospitality-bg: #ffedd5;
        --fl-label-type-hospitality-border: #f97316;
        --fl-label-type-hospitality-text: #9a3412;
        --fl-label-type-shop-bg: #ccfbf1;
        --fl-label-type-shop-border: #14b8a6;
        --fl-label-type-shop-text: #0f766e;
        --fl-label-free-bg: #dcfce7;
        --fl-label-free-border: #22c55e;
        --fl-label-free-text: #166534;
        --fl-label-open24-bg: #e0f2fe;
        --fl-label-open24-border: #38bdf8;
        --fl-label-open24-text: #075985;
        --fl-label-accessible-bg: #e0e7ff;
        --fl-label-accessible-border: #6366f1;
        --fl-label-accessible-text: #3730a3;
        --fl-label-baby-bg: #ffe4e6;
        --fl-label-baby-border: #fb7185;
        --fl-label-baby-text: #9f1239;
        --fl-label-genderneutral-bg: #f3e8ff;
        --fl-label-genderneutral-border: #a855f7;
        --fl-label-genderneutral-text: #6b21a8;
        --fl-label-soap-bg: #cffafe;
        --fl-label-soap-border: #06b6d4;
        --fl-label-soap-text: #0e7490;
        --fl-label-toiletpaper-bg: #fef3c7;
        --fl-label-toiletpaper-border: #f59e0b;
        --fl-label-toiletpaper-text: #92400e;
    }
}


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

html, body {
    margin: 0;
    min-height: 100%;
}

body {
    background:
        radial-gradient(circle at 20% -10%, rgba(139, 92, 246, 0.22), transparent 55%),
        radial-gradient(circle at 80% 110%, rgba(59, 130, 246, 0.18), transparent 55%),
        #080814;
    color: var(--fl-color-text-primary);
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.page-content {
    padding-top: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fl-container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 28px);
}

.fl-section {
    padding: var(--fl-space-2xl) 0;
}

.fl-card {
    background: var(--fl-color-surface);
    border-radius: var(--fl-radius-lg);
    padding: var(--fl-space-lg);
    border: 1px solid var(--fl-color-border-subtle);
}

.fl-card--elevated {
    background: var(--fl-color-surface-elevated);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
}

.fl-panel {
    background: var(--fl-color-surface);
    border: 1px solid var(--fl-color-border-subtle);
    border-radius: var(--fl-radius-lg);
    padding: var(--fl-space-xl);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.45);
    display: grid;
    gap: var(--fl-space-md);
}

.fl-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: var(--fl-radius-full);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.fl-badge--soft {
    background: rgba(139, 92, 246, 0.18);
    color: var(--fl-color-primary-soft);
}

.fl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 18px;
    border-radius: var(--fl-radius-full);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background 0.12s ease, transform 0.08s ease, box-shadow 0.12s ease;
}

.fl-btn--primary {
    background: linear-gradient(135deg, var(--fl-color-primary), var(--fl-color-secondary));
    color: #ffffff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.fl-btn--primary:hover {
    background: linear-gradient(135deg, var(--fl-color-primary-dark), #2563eb);
    transform: translateY(-1px);
}

.fl-btn--secondary {
    background: var(--fl-color-surface-subtle);
    border: 1px solid var(--fl-color-border-subtle);
    color: var(--fl-color-text-primary);
}

.fl-btn--secondary:hover {
    background: var(--fl-color-surface-elevated);
}

.fl-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: var(--fl-radius-full);
    font-size: 12px;
}

.fl-chip--rating {
    background: rgba(8, 47, 73, 0.45);
    color: #facc15;
}

.fl-chip--rating-bad {
    background: rgba(127, 29, 29, 0.6);
    color: #f97373;
}

.fl-chip--small {
    background: var(--fl-color-surface-subtle);
    color: var(--fl-color-text-muted);
    font-size: 12px;
}

.fl-label {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: var(--fl-radius-full);
    font-size: 12px;
    font-weight: 600;
    border: 1px solid;
}

.fl-label--type-public {
    background: var(--fl-label-type-public-bg);
    border-color: var(--fl-label-type-public-border);
    color: var(--fl-label-type-public-text);
}

.fl-label--type-hospitality {
    background: var(--fl-label-type-hospitality-bg);
    border-color: var(--fl-label-type-hospitality-border);
    color: var(--fl-label-type-hospitality-text);
}

.fl-label--type-shop {
    background: var(--fl-label-type-shop-bg);
    border-color: var(--fl-label-type-shop-border);
    color: var(--fl-label-type-shop-text);
}

.fl-label--free {
    background: var(--fl-label-free-bg);
    border-color: var(--fl-label-free-border);
    color: var(--fl-label-free-text);
}

.fl-label--open24 {
    background: var(--fl-label-open24-bg);
    border-color: var(--fl-label-open24-border);
    color: var(--fl-label-open24-text);
}

.fl-label--accessible {
    background: var(--fl-label-accessible-bg);
    border-color: var(--fl-label-accessible-border);
    color: var(--fl-label-accessible-text);
}

.fl-label--baby {
    background: var(--fl-label-baby-bg);
    border-color: var(--fl-label-baby-border);
    color: var(--fl-label-baby-text);
}

.fl-label--genderneutral {
    background: var(--fl-label-genderneutral-bg);
    border-color: var(--fl-label-genderneutral-border);
    color: var(--fl-label-genderneutral-text);
}

.fl-label--soap {
    background: var(--fl-label-soap-bg);
    border-color: var(--fl-label-soap-border);
    color: var(--fl-label-soap-text);
}

.fl-label--toiletpaper {
    background: var(--fl-label-toiletpaper-bg);
    border-color: var(--fl-label-toiletpaper-border);
    color: var(--fl-label-toiletpaper-text);
}

/* Header */
.fl-header {
    position: sticky;
    top: 0;
    z-index: 40;
    width: 100%;
    backdrop-filter: blur(14px);
    background: linear-gradient(135deg, rgba(8, 8, 20, 0.92), rgba(8, 8, 20, 0.82));
    border-bottom: 1px solid var(--fl-color-border-strong);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
}

.fl-header-shell {
    max-width: 1120px;
    margin: 0 auto;
    padding: 12px clamp(16px, 4vw, 28px);
    min-height: 60px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 14px;
}

.fl-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px 10px 10px;
    border-radius: var(--fl-radius-full);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--fl-color-border-subtle);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.fl-brand-mark {
    display: block;
    height: 32px;
    width: 32px;
    flex-shrink: 0;
    object-fit: contain;
    border-radius: var(--fl-radius-full);
}

.fl-brand-word {
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 16px;
}

.fl-nav {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    border-radius: var(--fl-radius-full);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--fl-color-border-subtle);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.fl-auth-links {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.fl-nav-link {
    position: relative;
    color: var(--fl-color-text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 14px;
    border-radius: var(--fl-radius-full);
    transition: color 0.15s ease, background 0.15s ease;
}

.fl-nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.fl-nav-link.is-active {
    color: #fff;
    background: rgba(139, 92, 246, 0.16);
}

.fl-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: var(--fl-radius-full);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    background: linear-gradient(135deg, var(--fl-color-secondary), var(--fl-color-primary));
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.35);
    transition: transform 0.12s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.fl-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: var(--fl-radius-full);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.06);
    transition: transform 0.12s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.fl-register:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.28);
}

.fl-login:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, var(--fl-color-primary-dark), #2563eb);
    box-shadow: 0 14px 38px rgba(59, 130, 246, 0.4);
}

.fl-nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: var(--fl-radius-full);
    border: 1px solid var(--fl-color-border-strong);
    background: var(--fl-color-surface-subtle);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.fl-nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
}

.fl-header.is-open .fl-nav {
    display: flex;
}

@media (max-width: 880px) {
    .fl-header-shell {
        grid-template-columns: auto 1fr auto;
        column-gap: 10px;
        min-height: 56px;
    }

    .fl-brand {
        order: 1;
        padding: 3px 4px;
    }

    .fl-brand-word {
        display: none;
    }

    .fl-login {
        order: 2;
        padding: 8px 14px;
        font-size: 14px;
    }

    .fl-register {
        padding: 8px 14px;
        font-size: 14px;
    }

    .fl-auth-links {
        order: 2;
        justify-self: center;
    }

    .fl-nav-toggle {
        order: 3;
        display: inline-flex;
        justify-self: end;
    }

    .fl-nav {
        order: 4;
        grid-column: 1 / -1;
        margin-top: 6px;
        width: 100%;
        display: none;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 8px;
        background: rgba(255, 255, 255, 0.03);
    }

    .fl-nav-link {
        font-size: 15px;
        padding: 8px 12px;
    }
}

@media (min-width: 881px) {
    .fl-header-shell {
        min-height: 72px;
    }

    .fl-brand-mark {
        height: 36px;
    }
}

/* Footer */
.fl-footer {
    margin-top: auto;
    width: 100%;
    border-top: 1px solid var(--fl-color-border-subtle);
    background: linear-gradient(135deg, rgba(8, 8, 20, 0.96), rgba(8, 8, 20, 0.9));
    box-shadow: 0 -10px 35px rgba(0, 0, 0, 0.45);
}

.fl-footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 20px clamp(16px, 4vw, 28px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.fl-footer-downloads {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fl-footer-download-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.fl-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 190px;
    padding: 8px 14px;
    border-radius: 999px;
    text-decoration: none;
    background: linear-gradient(135deg, #111827, #020617);
    border: 1px solid var(--fl-color-border-subtle);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    transition: background 0.12s ease, transform 0.1s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.fl-download-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
    border-color: var(--fl-color-primary-soft);
}

.fl-download-icon {
    width: 50px;
    height: auto;
    border-radius: 0;
    background: transparent;
    display: block;
    flex: 0 0 44px;
    font-size: 14px;
    object-fit: contain;
    object-position: left center;
}

.fl-download-text {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    line-height: 1.1;
}

.fl-download-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--fl-color-text-muted);
}

.fl-download-name {
    font-size: 13px;
    font-weight: 700;
}

.fl-footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.fl-footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: min(100%, 360px);
    text-align: center;
    padding: 12px 16px;
}

.fl-newsletter-title {
    margin: 0;
    font-size: 14px;
    color: #ffffff;
    font-weight: 700;
}

.fl-newsletter-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fl-newsletter-fields {
    width: 100%;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.fl-newsletter-input {
    flex: 1;
    min-width: 200px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--fl-color-border-subtle);
    background: rgba(255, 255, 255, 0.02);
    color: #ffffff;
    font-size: 14px;
    transition: border-color 0.12s ease, box-shadow 0.12s ease;
}

.fl-newsletter-input:focus {
    outline: none;
    border-color: var(--fl-color-primary-soft);
    box-shadow: 0 0 0 3px rgba(94, 234, 212, 0.12);
}

.fl-newsletter-submit {
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--fl-color-primary-soft), var(--fl-color-secondary));
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.fl-newsletter-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
    filter: brightness(1.03);
}

.fl-newsletter-feedback {
    margin: 6px 0 0;
    font-weight: 600;
    font-size: 14px;
    text-align: left;
    width: 100%;
}

.fl-newsletter-feedback--success {
    color: #15803d;
}

.fl-newsletter-feedback--error {
    color: #b91c1c;
}

.fl-toast {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.96);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    max-width: min(90vw, 420px);
}

.fl-toast[hidden] {
    display: none;
}

.fl-toast__message {
    margin: 0;
    flex: 1;
}

.fl-toast__close {
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.fl-toast--success {
    border: 1px solid rgba(34, 197, 94, 0.4);
    background: rgba(20, 83, 45, 0.96);
}

.fl-toast--error {
    border: 1px solid rgba(248, 113, 113, 0.5);
    background: rgba(127, 29, 29, 0.96);
}

@media (max-width: 640px) {
    .fl-toast {
        left: 16px;
        right: 16px;
        top: 16px;
        transform: none;
    }
}

.fl-footer-socials {
    display: flex;
    gap: 8px;
}

.fl-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    background: none;
    box-shadow: none;
    transition: transform 0.1s ease, opacity 0.12s ease;
}

.fl-social-icon img {
    width: 38px;
    height: 38px;
    display: block;
}

.fl-social-icon:hover {
    transform: translateY(-1px) scale(1.03);
    opacity: 0.96;
}

.fl-footer-copy {
    font-size: 12px;
    color: var(--fl-color-text-muted);
    display: flex;
    gap: 6px;
    text-align: right;
}

@media (max-width: 720px) {
    .fl-footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .fl-footer-right {
        align-items: center;
    }

    .fl-newsletter-fields {
        justify-content: center;
    }

    .fl-footer-downloads,
    .fl-footer-download-row {
        align-items: center;
    }

    .fl-footer-copy {
        justify-content: center;
        text-align: center;
    }
}

/* Landing page */
.fl-page--home {
    background:
        radial-gradient(circle at 20% -10%, rgba(139, 92, 246, 0.32), transparent 55%),
        radial-gradient(circle at 80% 110%, rgba(59, 130, 246, 0.28), transparent 55%),
        var(--fl-color-background);
    color: var(--fl-color-text-primary);
    min-height: 80vh;
}

.fl-home-hero {
    padding: var(--fl-space-2xl) 0;
}

.fl-home-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
    gap: var(--fl-space-2xl);
    align-items: center;
}

.fl-home-hero-text {
    max-width: 560px;
}

.fl-home-title {
    margin-top: var(--fl-space-lg);
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.05;
    font-weight: 700;
}

.fl-home-title-highlight {
    background: linear-gradient(135deg, var(--fl-color-primary), var(--fl-color-secondary));
    -webkit-background-clip: text;
    color: transparent;
}

.fl-home-subtitle {
    margin-top: var(--fl-space-md);
    font-size: 16px;
    color: var(--fl-color-text-secondary);
}

.fl-home-actions {
    margin-top: var(--fl-space-lg);
    display: flex;
    flex-wrap: wrap;
    gap: var(--fl-space-sm);
}

.fl-home-meta {
    margin-top: var(--fl-space-md);
    display: flex;
    flex-wrap: wrap;
    gap: var(--fl-space-sm);
    align-items: center;
}

.fl-home-meta-text {
    font-size: 13px;
    color: var(--fl-color-text-muted);
}

.fl-home-map-card {
    min-height: 260px;
}

.fl-home-map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--fl-space-md);
}

.fl-home-map-title {
    font-size: 14px;
    color: var(--fl-color-text-secondary);
}

.fl-home-map {
    position: relative;
    height: 170px;
    margin-bottom: var(--fl-space-md);
    border-radius: var(--fl-radius-md);
    background: radial-gradient(circle at 20% 0, rgba(139, 92, 246, 0.4), transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(59, 130, 246, 0.35), transparent 55%),
    #020617;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: var(--fl-space-lg);
}

.fl-home-map-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    filter: saturate(0.8) brightness(0.9);
    transform: scale(1.02);
    pointer-events: none;
}

.fl-home-map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 12, 30, 0.7), rgba(10, 10, 22, 0.4));
}

.fl-home-map-callout {
    position: relative;
    background: rgba(12, 13, 32, 0.85);
    border: 1px solid var(--fl-color-border-strong);
    border-radius: var(--fl-radius-lg);
    padding: var(--fl-space-md);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
    max-width: 260px;
}

.fl-home-map-location {
    font-size: 12px;
    color: var(--fl-color-text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.fl-home-map-tags {
    display: flex;
    gap: var(--fl-space-sm);
    flex-wrap: wrap;
    margin-top: var(--fl-space-sm);
}

.fl-home-map-partner {
    margin-top: var(--fl-space-xs);
    font-size: 12px;
    color: var(--fl-color-text-secondary);
}

.fl-home-map-placeholder {
    color: var(--fl-color-text-secondary);
    font-size: 14px;
}

.fl-home-map-list {
    display: flex;
    flex-direction: column;
    gap: var(--fl-space-sm);
}

.fl-home-map-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--fl-space-sm);
    align-items: center;
    padding: var(--fl-space-sm);
    border-radius: var(--fl-radius-md);
    background: var(--fl-color-surface-subtle);
}

.fl-home-map-item--bad {
    border: 1px solid rgba(249, 115, 115, 0.35);
}

.fl-home-map-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--fl-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.fl-home-map-icon--good {
    background: linear-gradient(135deg, var(--fl-color-primary), var(--fl-color-secondary));
}

.fl-home-map-icon--bad {
    background: rgba(127, 29, 29, 0.85);
}

.fl-home-map-name {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

.fl-home-map-meta {
    margin: 2px 0 0;
    font-size: 12px;
    color: var(--fl-color-text-muted);
}

.fl-home-map-rating {
    text-align: right;
}

.fl-home-map-reviews {
    margin-top: 2px;
    font-size: 12px;
    color: var(--fl-color-text-muted);
}

.fl-home-stats {
    padding: var(--fl-space-2xl) 0;
}

.fl-home-stat-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--fl-space-lg);
    padding: var(--fl-space-lg);
}

.fl-home-stat-label {
    margin: 0;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--fl-color-text-muted);
}

.fl-home-stat-value {
    margin: 0;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.fl-home-stat-sub {
    margin: 0;
    color: var(--fl-color-text-secondary);
}

.fl-home-usps {
    padding: var(--fl-space-2xl) 0 var(--fl-space-xl);
}

.fl-home-usps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--fl-space-lg);
}

.fl-home-usp-title {
    margin: 0 0 var(--fl-space-sm);
    font-size: 19px;
}

.fl-home-usp-text {
    margin: 0;
    font-size: 15px;
    color: var(--fl-color-text-secondary);
}

@media (max-width: 900px) {
    .fl-home-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .fl-home-map-card {
        margin-top: var(--fl-space-xl);
    }

    .fl-home-usps-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Rankings */
.fl-page--ranking {
    min-height: 80vh;
    background:
        radial-gradient(circle at 20% -10%, rgba(139, 92, 246, 0.32), transparent 55%),
        radial-gradient(circle at 80% 110%, rgba(59, 130, 246, 0.28), transparent 55%),
        var(--fl-color-background);
    padding: var(--fl-space-2xl) 0 var(--fl-space-3xl);
}

.fl-ranking-section {
    padding: 0;
}

.fl-ranking-header {
    display: grid;
    gap: var(--fl-space-sm);
    text-align: center;
    justify-items: center;
    max-width: 720px;
    margin: 0 auto var(--fl-space-xl);
    padding: 0 var(--fl-space-sm);
}

.fl-ranking-title {
    margin: 0;
    font-size: clamp(28px, 4vw, 34px);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.fl-ranking-subtitle {
    margin: 0;
    font-size: 14px;
    color: var(--fl-color-text-secondary);
    max-width: 680px;
}

.fl-ranking-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--fl-space-lg);
    align-items: start;
}

.fl-ranking-block {
    display: grid;
    gap: var(--fl-space-sm);
    align-self: start;
}

.fl-ranking-block-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.fl-ranking-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.fl-ranking-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--fl-space-sm);
    padding: 10px 12px;
    border-radius: var(--fl-radius-md);
    background: rgba(17, 24, 39, 0.65);
    border: 1px solid rgba(31, 41, 51, 0.8);
    transition: background 0.12s ease, transform 0.08s ease;
}

.fl-ranking-row:hover {
    background: rgba(24, 24, 27, 0.9);
    transform: translateY(-1px);
}

.fl-ranking-row-left {
    display: flex;
    align-items: center;
    gap: var(--fl-space-sm);
}

.fl-ranking-position {
    width: 26px;
    height: 26px;
    border-radius: var(--fl-radius-full);
    background: rgba(139, 92, 246, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--fl-color-primary-soft);
    font-weight: 700;
}

.fl-ranking-main {
    font-size: 14px;
    font-weight: 600;
}

.fl-ranking-meta {
    font-size: 12px;
    color: var(--fl-color-text-muted);
}

.fl-ranking-row-right {
    display: flex;
    align-items: center;
    gap: var(--fl-space-sm);
}

.fl-ranking-count {
    font-size: 12px;
    color: var(--fl-color-text-secondary);
    white-space: nowrap;
}

.fl-ranking-empty {
    font-size: 13px;
    color: var(--fl-color-text-muted);
    padding: 6px 0;
}

@media (max-width: 960px) {
    .fl-ranking-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* About */
.fl-page--about {
    min-height: 80vh;
    background:
        radial-gradient(circle at 15% -10%, rgba(139, 92, 246, 0.32), transparent 55%),
        radial-gradient(circle at 85% 110%, rgba(59, 130, 246, 0.3), transparent 55%),
        var(--fl-color-background);
    color: var(--fl-color-text-primary);
    padding: var(--fl-space-2xl) 0 var(--fl-space-3xl);
}

.fl-about-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.04), rgba(139, 92, 246, 0.08));
    border: 1px solid var(--fl-color-border-subtle);
    border-radius: var(--fl-radius-xl);
    padding: clamp(var(--fl-space-xl), 6vw, var(--fl-space-3xl));
    box-shadow: var(--fl-shadow-strong);
}

.fl-about-card::before,
.fl-about-card::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: 0;
}

.fl-about-card::before {
    background: rgba(139, 92, 246, 0.24);
    top: -70px;
    left: -60px;
}

.fl-about-card::after {
    background: rgba(59, 130, 246, 0.24);
    bottom: -80px;
    right: -60px;
}

.fl-about-shell {
    position: relative;
    z-index: 1;
    display: grid;
    gap: var(--fl-space-2xl);
}

.fl-about-header {
    display: grid;
    gap: var(--fl-space-sm);
    max-width: 640px;
}

.fl-about-hero {
    text-align: center;
    justify-items: center;
    margin: 0 auto;
}

.fl-about-title {
    margin: 0;
    font-size: clamp(28px, 4vw, 34px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.fl-about-subtitle {
    margin: 0;
    color: var(--fl-color-text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.fl-about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--fl-space-xl) var(--fl-space-lg);
}

.fl-about-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--fl-space-md);
    align-items: flex-start;
}

.fl-about-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--fl-radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.9), rgba(59, 130, 246, 0.85));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.fl-about-item-title {
    margin: 0 0 2px;
    font-size: 16px;
    font-weight: 700;
}

.fl-about-item-text {
    margin: 0;
    font-size: 14px;
    color: var(--fl-color-text-secondary);
    line-height: 1.6;
}

.fl-about-footer {
    display: flex;
    gap: var(--fl-space-md);
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 960px) {
    .fl-about-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Contact */
.fl-page--contact {
    min-height: 80vh;
    background:
        radial-gradient(circle at 12% -10%, rgba(139, 92, 246, 0.32), transparent 55%),
        radial-gradient(circle at 86% 110%, rgba(59, 130, 246, 0.26), transparent 55%),
        var(--fl-color-background);
    padding: var(--fl-space-2xl) 0 var(--fl-space-3xl);
}

.fl-contact-hero {
    text-align: center;
    display: grid;
    gap: var(--fl-space-sm);
    max-width: 720px;
    margin: 0 auto var(--fl-space-xl);
    padding: 0 var(--fl-space-sm);
}

.fl-contact-shell {
    display: grid;
    gap: var(--fl-space-xl);
}

.fl-contact-title {
    margin: 0;
    font-size: clamp(28px, 4vw, 34px);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.fl-contact-subtitle {
    margin: 0;
    color: var(--fl-color-text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.fl-contact-card {
    position: relative;
    border-radius: var(--fl-radius-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(139, 92, 246, 0.08));
    border: 1px solid var(--fl-color-border-subtle);
    padding: clamp(var(--fl-space-xl), 5vw, var(--fl-space-2xl));
    overflow: hidden;
    box-shadow: var(--fl-shadow-strong);
}

.fl-contact-card::before,
.fl-contact-card::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: 0;
}

.fl-contact-card::before {
    background: rgba(139, 92, 246, 0.22);
    top: -80px;
    left: -60px;
}

.fl-contact-card::after {
    background: rgba(59, 130, 246, 0.22);
    bottom: -90px;
    right: -70px;
}

.fl-contact-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: var(--fl-space-xl);
    align-items: stretch;
}

.fl-panel-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.fl-panel-subtitle {
    margin: 0;
    color: var(--fl-color-text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.fl-contact-form {
    display: grid;
    gap: var(--fl-space-md);
    width: 100%;
}

.fl-field {
    display: grid;
    gap: 6px;
    width: 100%;
}

.fl-field label {
    font-size: 13px;
    color: var(--fl-color-text-secondary);
}

.fl-input,
.fl-textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: var(--fl-radius-md);
    border: 1px solid var(--fl-color-border-subtle);
    background-color: var(--fl-color-surface-subtle);
    color: var(--fl-color-text-primary);
    font-size: 14px;
    padding: 10px 12px;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.12s ease;
}

.fl-input::placeholder,
.fl-textarea::placeholder {
    color: var(--fl-color-text-muted);
}

.fl-input:focus,
.fl-textarea:focus {
    border-color: var(--fl-color-primary);
    box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.55);
    background-color: rgba(17, 24, 39, 0.8);
}

.fl-textarea {
    resize: vertical;
    min-height: 120px;
}

.fl-contact-submit {
    margin-top: var(--fl-space-sm);
    width: 100%;
}

.fl-contact-meta {
    margin: 0;
    font-size: 12px;
    color: var(--fl-color-text-muted);
}

.fl-contact-info {
    display: grid;
    gap: var(--fl-space-md);
}

.fl-contact-info-group {
    display: grid;
    gap: var(--fl-space-xs);
}

.fl-contact-info-block {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--fl-space-sm);
    align-items: center;
    padding: var(--fl-space-sm) 0;
}

.fl-contact-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--fl-radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: var(--fl-color-surface-subtle);
}

.fl-contact-icon--pin {
    background: linear-gradient(135deg, var(--fl-color-secondary), var(--fl-color-primary));
}

.fl-contact-icon--mail {
    background: linear-gradient(135deg, var(--fl-color-primary), var(--fl-color-primary-soft));
}

.fl-contact-icon--phone {
    background: linear-gradient(135deg, #22c55e, var(--fl-color-secondary));
}

.fl-contact-info-label {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
}

.fl-contact-info-text {
    margin: 2px 0 0;
    font-size: 13px;
    color: var(--fl-color-text-secondary);
}

.fl-contact-info-text a {
    color: var(--fl-color-secondary-soft);
    text-decoration: none;
}

.fl-contact-info-text a:hover {
    text-decoration: underline;
}

.fl-contact-small {
    margin: 0;
    font-size: 12px;
    color: var(--fl-color-text-muted);
    line-height: 1.6;
}

.fl-contact-socials {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

@media (max-width: 960px) {
    .fl-contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .fl-contact-card {
        padding: clamp(var(--fl-space-lg), 5vw, var(--fl-space-xl));
    }

    .fl-panel {
        padding: clamp(var(--fl-space-lg), 5vw, var(--fl-space-xl));
    }
}

@media (max-width: 640px) {
    .fl-contact-hero {
        text-align: left;
        margin-bottom: var(--fl-space-lg);
    }

    .fl-contact-card {
        margin: 0 auto;
    }
}
