/* ============================================================
   FishingLifeBook - Styles principaux
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0369a1;
    --primary-dark: #075985;
    --primary-light: #0ea5e9;
    --secondary: #0891b2;
    --accent: #f59e0b;
    --success: #059669;
    --danger: #dc2626;
    --warning: #d97706;
    --info: #0284c7;
    --dark: #0f172a;
    --gray-900: #1e293b;
    --gray-800: #334155;
    --gray-700: #475569;
    --gray-600: #64748b;
    --gray-500: #94a3b8;
    --gray-400: #cbd5e1;
    --gray-300: #e2e8f0;
    --gray-200: #f1f5f9;
    --gray-100: #f8fafc;
    --white: #ffffff;
    --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --transition: all 0.2s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--gray-100);
    color: var(--gray-800);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: var(--primary-dark);
}

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

/* ---------- NAVIGATION ---------- */
.navbar {
    background: linear-gradient(135deg, var(--dark) 0%, #1e3a5f 100%);
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.5px;
}
.navbar-brand:hover {
    color: var(--white);
}
.navbar-brand .brand-icon {
    font-size: 28px;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.navbar-menu a {
    color: rgba(255,255,255,0.8);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}
.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-user {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}

/* Mobile menu toggle */
.navbar-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 16px;
        gap: 4px;
    }
    .navbar-menu.open {
        display: flex;
    }
    .navbar-toggle {
        display: block;
    }
}

/* ---------- HERO SECTION ---------- */
.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}
.hero-slide.active {
    opacity: 1;
}
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15,23,42,0.3) 0%, rgba(15,23,42,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 20px;
    max-width: 800px;
}
.hero-content h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-content p {
    font-size: clamp(16px, 2vw, 20px);
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.5;
}
.hero-content .hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.4;
}
.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}
.btn-primary:hover {
    color: white;
    box-shadow: 0 4px 14px rgba(3,105,161,0.4);
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    color: white;
    border-color: rgba(255,255,255,0.5);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-success {
    background: linear-gradient(135deg, var(--success), #10b981);
    color: white;
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger), #ef4444);
    color: white;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 17px;
}

/* ---------- CONTAINER & GRID ---------- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 60px 0;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}
.section-subtitle {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.grid {
    display: grid;
    gap: 24px;
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* ---------- CARDS ---------- */
.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}
.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.card-text {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

.card-footer {
    padding: 12px 20px;
    border-top: 1px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--gray-600);
}

/* Feature cards on homepage */
.feature-card {
    text-align: center;
    padding: 32px 24px;
}
.feature-card .feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}
.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}
.feature-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

/* ---------- STATS ---------- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow);
}
.stat-card .stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.stat-card .stat-label {
    font-size: 13px;
    color: var(--gray-600);
    margin-top: 4px;
}

/* ---------- FORMS ---------- */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font);
    transition: var(--transition);
    background: var(--white);
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(3,105,161,0.1);
}

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

select.form-control {
    cursor: pointer;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ---------- BADGES ---------- */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.badge-info { background: #dbeafe; color: #1e40af; }
.badge-success { background: #d1fae5; color: #065f46; }
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-danger { background: #fee2e2; color: #991b1b; }
.badge-primary { background: #e0f2fe; color: #0369a1; }

/* ---------- ALERTS ---------- */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.alert-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.alert-danger { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.alert-warning { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.alert-info { background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; }

/* ---------- TABLES ---------- */
.table-responsive {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.table th {
    background: var(--gray-200);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 14px;
}
.table tr:hover td {
    background: var(--gray-100);
}

/* ---------- PAGINATION ---------- */
.pagination {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 32px;
}
.pagination a, .pagination span {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
}
.pagination a {
    background: var(--white);
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}
.pagination a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
.pagination .active {
    background: var(--primary);
    color: white;
    border: 1px solid var(--primary);
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
    margin-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.footer h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 16px;
}
.footer a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}
.footer a:hover {
    color: white;
}
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* ---------- DASHBOARD SIDEBAR ---------- */
.dashboard-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: calc(100vh - 64px);
}

.dashboard-sidebar {
    background: var(--white);
    border-right: 1px solid var(--gray-300);
    padding: 24px 0;
}

.sidebar-menu {
    list-style: none;
}
.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}
.sidebar-menu li a:hover,
.sidebar-menu li a.active {
    background: var(--gray-200);
    color: var(--primary);
}
.sidebar-menu li a .menu-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.dashboard-content {
    padding: 32px;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
    }
    .dashboard-sidebar {
        display: none;
    }
}

/* ---------- UTILITIES ---------- */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--gray-600); }
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.font-bold { font-weight: 700; }
.font-lg { font-size: 18px; }
.font-xl { font-size: 24px; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.d-flex { display: flex; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.w-full { width: 100%; }
.hidden { display: none; }

/* ---------- ANIMATIONS ---------- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ---------- PRINT ---------- */
@media print {
    .navbar, .footer, .btn { display: none !important; }
    .dashboard-layout { grid-template-columns: 1fr; }
    body { background: white; }
}


/* =========================================================
   FLB 2026 — Public Beta acquisition layer
   ========================================================= */

.flb-site {
    margin: 0;
    background: #06131a;
    color: #f4f8fa;
}

.flb-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(3, 13, 18, .94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.flb-nav-inner {
    max-width: 1460px;
    margin: auto;
    min-height: 72px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.flb-logo {
    color: #fff;
    text-decoration: none;
    font-size: 21px;
    font-weight: 800;
    white-space: nowrap;
}

.flb-logo span span,
.flb-footer strong span { color: #1b9cff; }

.flb-logo-mark { margin-right: 8px; }

.flb-logo small {
    font-size: 9px;
    color: #07131a;
    background: #38bdf8;
    padding: 3px 5px;
    border-radius: 4px;
    margin-left: 7px;
}

.flb-nav-links {
    display: flex;
    gap: 26px;
    margin-left: auto;
}

.flb-nav-links a {
    color: #d8e2e7;
    text-decoration: none;
    font-size: 14px;
}

.flb-nav-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.flb-lang {
    display: flex;
    gap: 3px;
    margin-right: 8px;
}

.flb-lang a {
    color: #79909b;
    text-decoration: none;
    font-size: 9px;
    padding: 5px;
    border-radius: 4px;
}

.flb-lang a.active {
    color: #fff;
    background: #123344;
}

.flb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    border-radius: 9px;
    padding: 10px 16px;
    font-weight: 700;
    font-size: 14px;
}

.flb-btn.primary {
    background: linear-gradient(135deg,#0798ff,#176bff);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,130,255,.25);
}

.flb-btn.ghost,
.flb-btn.glass {
    color: #fff;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.18);
}

.flb-btn.gold {
    background: #d4a43d;
    color: #081116;
}

.flb-btn.large {
    min-height: 50px;
    padding: 0 22px;
}

.flb-btn.full { width: 100%; }

.flb-hero {
    position: relative;
    min-height: 690px;
    overflow: hidden;
}

.flb-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.flb-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1380px;
    margin: auto;
    min-height: 690px;
    padding: 70px 38px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 70px;
}

.flb-beta-pill {
    display: inline-flex;
    background: rgba(19,148,255,.14);
    border: 1px solid rgba(51,170,255,.40);
    color: #6dc5ff;
    border-radius: 999px;
    padding: 8px 13px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
}

.flb-hero h1 {
    max-width: 770px;
    margin: 22px 0 18px;
    font-size: clamp(50px, 6vw, 86px);
    line-height: .98;
    letter-spacing: -.045em;
}

.flb-hero-copy > p {
    max-width: 720px;
    font-size: 20px;
    line-height: 1.65;
    color: #c3d1d8;
}

.flb-hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.flb-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
    color: #9fb1b9;
    font-size: 13px;
}

.flb-product-preview {
    display: flex;
    justify-content: center;
}

.flb-phone {
    width: min(370px, 90%);
    padding: 18px;
    border-radius: 38px;
    background:
        linear-gradient(160deg,#0a2632,#07161d);
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 35px 90px rgba(0,0,0,.55);
    transform: rotate(2deg);
}

.flb-phone-top {
    padding: 14px 8px 22px;
    display: flex;
    justify-content: space-between;
    font-weight: 800;
}

.flb-phone-top b {
    color: #55b8ff;
    font-size: 11px;
}

.flb-phone-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
    padding: 18px;
    border-radius: 18px;
    background: #0d2530;
    border: 1px solid rgba(255,255,255,.07);
}

.flb-phone-card small { color: #63bfff; }
.flb-phone-card span { color: #9eb0b8; font-size: 12px; }
.flb-phone-card.privacy { border-color: rgba(55,210,145,.25); }

.flb-feature-strip {
    max-width: 1280px;
    margin: -40px auto 70px;
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(6,1fr);
    border-radius: 18px;
    background: #091a22;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 30px 60px rgba(0,0,0,.3);
}

.flb-feature-strip article {
    min-height: 120px;
    padding: 22px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    border-right: 1px solid rgba(255,255,255,.06);
}

.flb-feature-strip b { font-size: 26px; }
.flb-feature-strip span { font-size: 13px; }

.flb-life,
.flb-beta-section,
.flb-pro-section {
    max-width: 1280px;
    margin: auto;
    padding: 80px 28px;
}

.flb-section-head span,
.flb-beta-copy > span,
.flb-pro-section > div > span {
    color: #49b7ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
}

.flb-section-head h2,
.flb-beta-copy h2,
.flb-pro-section h2 {
    font-size: clamp(34px,4vw,56px);
    line-height: 1.05;
    letter-spacing: -.03em;
    margin: 12px 0 32px;
}

.flb-life-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
}

.flb-life-grid article {
    padding: 28px;
    border-radius: 18px;
    min-height: 220px;
    background: #0a1d26;
    border: 1px solid rgba(255,255,255,.07);
}

.flb-life-grid article > span {
    color: #258bd2;
    font-size: 12px;
}

.flb-life-grid p,
.flb-beta-copy p,
.flb-pro-section p {
    color: #a8bac3;
    line-height: 1.65;
}

.flb-beta-section {
    display: grid;
    grid-template-columns: 1fr .86fr;
    gap: 70px;
    align-items: center;
    margin-top: 50px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 15% 20%, rgba(0,142,255,.20), transparent 35%),
        #071820;
}

.flb-beta-points {
    display: grid;
    gap: 12px;
    color: #d8e5ea;
}

.flb-beta-form {
    padding: 28px;
    border-radius: 20px;
    background: #0d2530;
    display: grid;
    gap: 12px;
    border: 1px solid rgba(255,255,255,.08);
}

.flb-beta-form input,
.flb-beta-form select {
    width: 100%;
    box-sizing: border-box;
    min-height: 52px;
    border-radius: 9px;
    border: 1px solid #294650;
    background: #081820;
    color: #fff;
    padding: 0 14px;
}

.flb-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.flb-beta-form small {
    color: #78909b;
    text-align: center;
}

.flb-pro-section {
    margin-top: 75px;
    margin-bottom: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.flb-pro-section > div {
    max-width: 820px;
}

.flb-footer {
    max-width: 1280px;
    margin: auto;
    padding: 35px 28px 55px;
    display: flex;
    justify-content: space-between;
    color: #78909b;
    border-top: 1px solid rgba(255,255,255,.08);
}

.flb-footer strong {
    color: #fff;
    font-size: 18px;
}

.flb-flash-wrap {
    max-width: 1280px;
    margin: 15px auto;
    padding: 0 20px;
}

.flb-flash {
    padding: 14px 18px;
    border-radius: 10px;
    background: #17333f;
}

@media (max-width: 1050px) {
    .flb-nav-links { display: none; }
    .flb-lang { display: none; }

    .flb-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .flb-hero-copy > p { margin-inline: auto; }
    .flb-hero-actions,
    .flb-trust-row { justify-content: center; }

    .flb-product-preview { display: none; }

    .flb-feature-strip {
        grid-template-columns: repeat(3,1fr);
        margin-inline: 20px;
    }

    .flb-life-grid { grid-template-columns: 1fr 1fr; }

    .flb-beta-section {
        margin-inline: 20px;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .flb-nav-inner { padding: 0 15px; }
    .flb-logo { font-size: 17px; }

    .flb-nav-actions .ghost { display: none; }

    .flb-hero {
        min-height: 660px;
    }

    .flb-hero-inner {
        min-height: 660px;
        padding: 55px 20px;
    }

    .flb-hero h1 {
        font-size: 47px;
    }

    .flb-hero-copy > p {
        font-size: 17px;
    }

    .flb-feature-strip {
        grid-template-columns: 1fr 1fr;
    }

    .flb-life-grid { grid-template-columns: 1fr; }

    .flb-form-grid { grid-template-columns: 1fr; }

    .flb-beta-section { padding: 45px 20px; }

    .flb-pro-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .flb-footer {
        flex-direction: column;
        gap: 18px;
    }
}


/* =========================================================
   FLB HERO CAROUSEL
   ========================================================= */

.flb-hero-slides {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.flb-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.025);
    transition:
        opacity 1.4s ease,
        transform 7s ease;
    background-size: cover;
    background-position: center;
}

.flb-hero-slide.active {
    opacity: 1;
    transform: scale(1);
}



/* =========================================================
   FLB HERO — rendu photo plus vivant
   ========================================================= */

.flb-hero-slide {
    filter: saturate(1.08) brightness(1.08);
}

.flb-hero-slide.active {
    filter: saturate(1.10) brightness(1.10);
}


/* ==========================================================
   FLB MEMBER SPACE — 2026
   ========================================================== */

.member-sidebar {
    width: 264px;
    flex: 0 0 264px;
    background:
        linear-gradient(
            180deg,
            #101820 0%,
            #16232b 100%
        );
    min-height: calc(100vh - 72px);
    border-right: 1px solid rgba(255,255,255,.06);
}

.member-sidebar-head {
    padding: 28px 22px 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.member-sidebar-kicker {
    display: block;
    margin-bottom: 5px;
    color: rgba(255,255,255,.48);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.member-sidebar-head strong {
    color: #fff;
    font-size: 19px;
    font-weight: 700;
}

.member-menu {
    padding: 14px 12px 20px;
}

.member-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 46px;
    margin: 3px 0;
    padding: 0 12px;
    border-radius: 10px;
    color: rgba(255,255,255,.72);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition:
        background .18s ease,
        color .18s ease,
        transform .18s ease;
}

.member-menu a:hover {
    background: rgba(255,255,255,.07);
    color: #fff;
}

.member-menu a.active {
    background: rgba(79, 209, 152, .14);
    color: #fff;
    box-shadow:
        inset 3px 0 0 #4fd198;
}

.member-menu-icon {
    width: 22px;
    text-align: center;
    color: #8ddab8;
    font-size: 17px;
    line-height: 1;
}

.member-menu-separator {
    height: 1px;
    margin: 15px 10px;
    background: rgba(255,255,255,.08);
}

.member-menu a.member-logout {
    color: #ffb4b4;
}

.member-menu a.member-logout .member-menu-icon {
    color: #ff9b9b;
}

.dashboard-layout {
    align-items: stretch;
}

.dashboard-content {
    min-width: 0;
    padding: 32px clamp(20px, 3vw, 42px);
}

@media (max-width: 900px) {
    .member-sidebar {
        width: 100%;
        flex-basis: auto;
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .member-sidebar-head {
        padding: 18px 18px 12px;
    }

    .member-menu {
        display: flex;
        gap: 6px;
        overflow-x: auto;
        padding: 10px 12px 14px;
        scrollbar-width: thin;
    }

    .member-menu a {
        flex: 0 0 auto;
        margin: 0;
        padding: 0 13px;
        white-space: nowrap;
    }

    .member-menu-separator {
        width: 1px;
        height: 32px;
        margin: 7px 4px;
        flex: 0 0 1px;
    }
}

/* ==========================================================
   FISHING LIFE BOOK — PREMIUM MEMBER UI
   ========================================================== */

:root {
    --flb-night: #031d28;
    --flb-deep: #062f3d;
    --flb-lake: #0f5968;
    --flb-aqua: #55cec5;
    --flb-mist: #edf4f5;
    --flb-gold: #d6ad67;
    --flb-gold-light: #f5d896;
    --flb-paper: #f7faf9;
}

.premium-member-sidebar {
    background:
        radial-gradient(
            circle at 20% 0%,
            rgba(40,125,142,.22),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            var(--flb-deep),
            var(--flb-night)
        );
    width: 282px;
    flex: 0 0 282px;
    min-height: calc(100vh - 72px);
    border-right:
        1px solid rgba(255,255,255,.07);
    box-shadow:
        14px 0 36px rgba(1,22,30,.10);
}

.premium-member-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 27px 22px 22px;
    border-bottom:
        1px solid rgba(255,255,255,.08);
}

.premium-member-brand > div:last-child {
    min-width: 0;
}

.premium-member-brand span {
    display: block;
    margin-bottom: 3px;
    color: rgba(255,255,255,.49);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.premium-member-brand strong {
    display: block;
    color: white;
    font-size: 19px;
    line-height: 1.15;
}

.premium-member-mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 16px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.09),
            rgba(255,255,255,.02)
        );
    border:
        1px solid rgba(238,205,141,.38);
    box-shadow:
        inset 0 1px rgba(255,255,255,.1),
        0 10px 26px rgba(0,0,0,.14);
}

.premium-member-mark svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: var(--flb-gold-light);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.premium-member-menu {
    padding: 15px 12px 24px;
}

.premium-member-menu a {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 54px;
    margin: 4px 0;
    padding: 6px 10px;
    border-radius: 15px;
    color: rgba(237,248,249,.72);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition:
        transform .18s ease,
        background .18s ease,
        color .18s ease,
        box-shadow .18s ease;
}

.premium-member-menu a:hover {
    transform: translateX(2px);
    color: white;
    background: rgba(255,255,255,.055);
}

.premium-member-menu a.active {
    color: white;
    background:
        linear-gradient(
            100deg,
            rgba(51,157,166,.23),
            rgba(25,98,112,.13)
        );
    box-shadow:
        inset 3px 0 var(--flb-gold),
        0 8px 22px rgba(0,0,0,.10);
}

.premium-member-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 13px;
    color: #a9d9d5;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.075),
            rgba(255,255,255,.025)
        );
    border:
        1px solid rgba(255,255,255,.07);
}

.premium-member-menu a.active
.premium-member-icon {
    color: var(--flb-gold-light);
    border-color:
        rgba(228,191,123,.35);
    box-shadow:
        0 8px 20px rgba(0,0,0,.13),
        inset 0 1px rgba(255,255,255,.08);
}

.premium-member-icon svg {
    width: 25px;
    height: 25px;
}

.premium-member-divider {
    height: 1px;
    margin: 18px 12px 12px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.14),
            transparent
        );
}

.premium-member-menu a.logout {
    color: #e8b0ad;
}

.dashboard-content {
    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(55,170,171,.08),
            transparent 28%
        ),
        var(--flb-paper);
}

.dashboard-content .stat-card,
.dashboard-content .card {
    border-radius: 18px;
    border: 1px solid rgba(5,60,73,.08);
    box-shadow:
        0 9px 28px rgba(2,41,52,.07);
}

.dashboard-content .stat-card {
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f0f6f6
        );
}

.dashboard-content .stat-number {
    color: var(--flb-deep);
    font-weight: 800;
}

.dashboard-content .btn-primary {
    border: 0;
    background:
        linear-gradient(
            135deg,
            var(--flb-lake),
            var(--flb-deep)
        );
    box-shadow:
        0 9px 22px rgba(6,61,76,.18);
}

@media (max-width: 900px) {
    .premium-member-sidebar {
        width: 100%;
        min-height: auto;
        flex: none;
    }

    .premium-member-brand {
        padding: 16px;
    }

    .premium-member-menu {
        display: flex;
        overflow-x: auto;
        gap: 7px;
        padding: 10px 12px 14px;
    }

    .premium-member-menu a {
        flex: 0 0 auto;
        min-height: 48px;
        padding: 5px 9px;
    }

    .premium-member-label {
        white-space: nowrap;
    }

    .premium-member-divider {
        width: 1px;
        height: 34px;
        flex: 0 0 1px;
        margin: 8px 3px;
    }
}

/* ==========================================================
   FLB PREMIUM DASHBOARD
   ========================================================== */

.premium-dashboard {
    background:
        radial-gradient(
            circle at 80% -10%,
            rgba(54,178,180,.13),
            transparent 30%
        ),
        #f2f6f6;
}

.premium-dashboard-hero {
    position: relative;
    overflow: hidden;
    min-height: 310px;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(83,204,197,.30),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #073b4a 0%,
            #052833 55%,
            #031d28 100%
        );
    box-shadow:
        0 20px 50px rgba(1,34,44,.18);
}

.premium-dashboard-hero::before {
    content: "";
    position: absolute;
    inset: auto -5% -35% 34%;
    height: 85%;
    opacity: .55;
    background:
        linear-gradient(
            135deg,
            transparent 45%,
            rgba(141,205,200,.20) 46%,
            transparent 48%
        ),
        linear-gradient(
            45deg,
            transparent 45%,
            rgba(210,177,112,.18) 46%,
            transparent 48%
        );
    transform: skewX(-12deg);
}

.premium-dashboard-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(3,29,40,.98),
            rgba(3,29,40,.62) 60%,
            rgba(3,29,40,.28)
        );
}

.premium-dashboard-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: clamp(34px, 5vw, 58px);
}

.premium-dashboard-kicker,
.premium-section-kicker {
    display: block;
    margin-bottom: 8px;
    color: #d6ad67;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.premium-dashboard-hero h1 {
    margin: 0;
    color: white;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.02;
}

.premium-dashboard-subtitle {
    margin: 12px 0 0;
    color: rgba(230,247,248,.82);
    font-size: 16px;
}

.premium-dashboard-story {
    max-width: 500px;
    margin: 32px 0 0;
    color: white;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 600;
    line-height: 1.35;
}

.premium-dashboard-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.premium-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.premium-action.gold {
    color: #102b31;
    background:
        linear-gradient(
            135deg,
            #f4d18a,
            #c59145
        );
    box-shadow:
        0 12px 28px rgba(181,132,59,.24);
}

.premium-action.glass {
    color: white;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(10px);
}

.premium-action-plus {
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: rgba(5,43,49,.11);
    font-size: 20px;
}

.premium-stats-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 20px 0;
}

.premium-stat-card {
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: center;
    column-gap: 12px;
    min-height: 96px;
    padding: 15px;
    border-radius: 20px;
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #edf4f4
        );
    border: 1px solid rgba(8,75,87,.07);
    box-shadow:
        0 12px 28px rgba(3,43,53,.07);
}

.premium-stat-card strong {
    align-self: end;
    color: #062f3d;
    font-size: 27px;
    line-height: 1;
}

.premium-stat-card > span {
    grid-column: 2;
    align-self: start;
    margin-top: 5px;
    color: #657b81;
    font-size: 12px;
    font-weight: 700;
}

.premium-stat-icon {
    grid-row: 1 / span 2;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    color: #f0cf88;
    background:
        linear-gradient(
            145deg,
            #0f5968,
            #073543
        );
    box-shadow:
        0 10px 22px rgba(8,64,75,.15);
    font-size: 22px;
}

.premium-record-card {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 20px 0;
    padding: 22px;
    border-radius: 20px;
    background:
        linear-gradient(
            110deg,
            #fff8e9,
            #ffffff
        );
    border: 1px solid rgba(205,161,84,.25);
    box-shadow:
        0 12px 30px rgba(109,78,25,.07);
}

.premium-record-medal {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    border-radius: 18px;
    color: #5d431a;
    background:
        linear-gradient(
            145deg,
            #f9dc96,
            #c99648
        );
    font-size: 25px;
}

.premium-record-card h2 {
    margin: 2px 0;
    color: #18343b;
}

.premium-record-card p {
    margin: 0;
    color: #65777c;
}

.premium-dashboard-section {
    margin-top: 28px;
}

.premium-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 14px;
}

.premium-section-head h2 {
    margin: 0;
    color: #102f38;
    font-size: 23px;
}

.premium-section-head a {
    color: #0f5968;
    font-weight: 700;
    text-decoration: none;
}

.premium-latest-catch {
    overflow: hidden;
    border-radius: 24px;
    background: white;
    border: 1px solid rgba(5,67,80,.08);
    box-shadow:
        0 16px 40px rgba(1,38,49,.09);
}

.premium-latest-image {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #0d4d5c,
            #041d26
        );
}

.premium-latest-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-latest-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 30%,
            rgba(2,22,29,.88) 100%
        );
}

.premium-latest-data {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 26px;
    color: white;
}

.premium-latest-label {
    color: #f0cf88;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.premium-latest-data h3 {
    margin: 5px 0;
    font-size: clamp(28px, 4vw, 44px);
}

.premium-latest-data p {
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 16px;
}

.premium-catch-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    color: #5d7379;
    font-size: 13px;
}

.premium-catch-footer a {
    color: #0f5968;
    font-weight: 800;
    text-decoration: none;
}

.premium-gold-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 7px;
    border-radius: 50%;
    background: #d6ad67;
}

.premium-no-photo,
.premium-empty-mark {
    display: grid;
    place-items: center;
    color: #edcf91;
    font-weight: 900;
    letter-spacing: .16em;
}

.premium-no-photo {
    position: absolute;
    inset: 0;
    font-size: 52px;
}

.premium-empty-card {
    display: grid;
    justify-items: center;
    gap: 15px;
    padding: 48px 20px;
    border-radius: 24px;
    background: white;
    text-align: center;
    box-shadow:
        0 12px 30px rgba(3,43,53,.07);
}

.premium-empty-mark {
    width: 74px;
    height: 74px;
    border-radius: 24px;
    color: #f1d08a;
    background:
        linear-gradient(
            145deg,
            #0f5968,
            #052b36
        );
}

.premium-session-list {
    display: grid;
    gap: 9px;
}

.premium-session-row {
    display: grid;
    grid-template-columns:
        54px 1fr 32px;
    align-items: center;
    gap: 12px;
    min-height: 76px;
    padding: 10px 14px;
    border-radius: 18px;
    color: inherit;
    background: white;
    border: 1px solid rgba(7,68,81,.07);
    box-shadow:
        0 8px 24px rgba(3,43,53,.05);
    text-decoration: none;
}

.premium-session-mark {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    color: #ecd08e;
    background:
        linear-gradient(
            145deg,
            #0f5968,
            #07323e
        );
}

.premium-session-mark svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.premium-session-main {
    display: grid;
    gap: 3px;
}

.premium-session-main strong {
    color: #17343c;
}

.premium-session-main span {
    color: #708287;
    font-size: 12px;
}

.premium-session-arrow {
    color: #b58b49;
    font-size: 20px;
}

@media (max-width: 850px) {
    .premium-stats-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .premium-dashboard-hero {
        min-height: 280px;
        border-radius: 22px;
    }

    .premium-dashboard-hero-content {
        padding: 30px 22px;
    }

    .premium-dashboard-actions {
        align-items: stretch;
    }

    .premium-action {
        flex: 1 1 150px;
    }

    .premium-latest-image {
        min-height: 285px;
    }
}

@media (max-width: 480px) {
    .premium-stats-grid {
        gap: 9px;
    }

    .premium-stat-card {
        grid-template-columns: 42px 1fr;
        min-height: 88px;
        padding: 12px;
    }

    .premium-stat-icon {
        width: 42px;
        height: 42px;
    }

    .premium-stat-card strong {
        font-size: 23px;
    }
}

/* ==========================================================
   FLB PREMIUM BRAND V2
   ========================================================== */

.flb-brand-mark {
    display: block;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,.16));
}

.flb-logo {
    gap: 10px !important;
}

@media (max-width: 720px) {
    .flb-brand-mark {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }
}

/* ==========================================================
   FLB PREMIUM HEADER V6
   ========================================================== */

.flb-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 72px;
    border-bottom: 1px solid rgba(6,47,61,.08);
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 8px 30px rgba(6,47,61,.045);
}

.flb-nav-inner {
    width: min(1540px, calc(100% - 34px)) !important;
    min-height: 72px;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: auto minmax(0,1fr) auto;
    align-items: center;
    gap: 24px;
}

.flb-logo {
    display: inline-flex !important;
    align-items: center;
    gap: 10px !important;
    color: #062f3d !important;
    text-decoration: none !important;
    font-size: 20px !important;
    font-weight: 850 !important;
    letter-spacing: -.55px;
    white-space: nowrap;
}

.flb-logo > span {
    display: inline-flex;
    align-items: baseline;
}

.flb-logo > span > span {
    color: #0e6371 !important;
}

.flb-logo small {
    margin-left: 3px;
    padding: 4px 6px;
    border: 1px solid rgba(212,170,98,.38);
    border-radius: 999px;
    color: #94702f !important;
    background: rgba(212,170,98,.10);
    font-size: 11px !important;
    line-height: 1;
    font-weight: 850;
    letter-spacing: .09em;
}

.flb-brand-mark {
    width: 40px !important;
    height: 40px !important;
    flex: 0 0 40px !important;
    filter: drop-shadow(0 5px 12px rgba(6,47,61,.15));
}

.flb-nav-links {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 4px !important;
    min-width: 0;
}

.flb-nav-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 11px !important;
    border-radius: 11px;
    color: #536d74 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 720 !important;
    white-space: nowrap;
    transition:
        background .18s ease,
        color .18s ease,
        transform .18s ease;
}

.flb-nav-links a:hover {
    color: #062f3d !important;
    background: #eef5f6;
    transform: translateY(-1px);
}

.flb-nav-actions {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 8px !important;
}

.flb-lang {
    display: flex !important;
    align-items: center;
    gap: 1px !important;
    padding: 3px;
    border: 1px solid rgba(6,47,61,.08);
    border-radius: 10px;
    background: #f5f8f9;
}

.flb-lang a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 27px;
    padding: 0 5px !important;
    border-radius: 7px;
    color: #819095 !important;
    text-decoration: none !important;
    font-size: 11px !important;
    font-weight: 850 !important;
    letter-spacing: .02em;
}

.flb-lang a:hover {
    color: #0e6371 !important;
    background: #fff;
}

.flb-lang a.active {
    color: #fff !important;
    background: linear-gradient(135deg,#0e6371,#062f3d) !important;
    box-shadow: 0 3px 9px rgba(6,47,61,.16);
}

.flb-nav .flb-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 38px !important;
    padding: 0 13px !important;
    border-radius: 11px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
}

.flb-nav .flb-btn.ghost {
    border: 1px solid rgba(6,47,61,.09) !important;
    color: #183d46 !important;
    background: #fff !important;
}

.flb-nav .flb-btn.ghost:hover {
    border-color: rgba(14,99,113,.19) !important;
    background: #f2f7f8 !important;
}

.flb-nav .flb-btn.primary {
    border: 0 !important;
    color: #102b31 !important;
    background: linear-gradient(135deg,#dfba73,#d4aa62) !important;
    box-shadow: 0 7px 17px rgba(212,170,98,.20);
}

.flb-nav .flb-icon {
    width: 18px !important;
    height: 18px !important;
}

@media (max-width: 1320px) {
    .flb-nav-inner {
        gap: 14px;
    }

    .flb-nav-links a {
        padding: 0 7px !important;
        font-size: 13px !important;
    }

    .flb-lang a {
        min-width: 25px;
        padding: 0 3px !important;
    }
}

@media (max-width: 1100px) {
    .flb-nav-inner {
        grid-template-columns: auto 1fr;
    }

    .flb-nav-links {
        display: none !important;
    }

    .flb-nav-actions {
        grid-column: 2;
    }
}

@media (max-width: 720px) {
    .flb-nav {
        min-height: 62px;
    }

    .flb-nav-inner {
        width: calc(100% - 18px) !important;
        min-height: 62px;
        gap: 8px;
    }

    .flb-brand-mark {
        width: 34px !important;
        height: 34px !important;
        flex-basis: 34px !important;
    }

    .flb-logo {
        font-size: 17px !important;
    }

    .flb-logo small {
        display: none;
    }

    .flb-lang {
        display: none !important;
    }

    .flb-nav .flb-btn {
        min-height: 35px !important;
        padding: 0 9px !important;
    }
}

@media (max-width: 470px) {
    .flb-logo > span {
        font-size: 0;
    }

    .flb-logo > span:after {
        content: "FLB";
        font-size: 18px;
        font-weight: 900;
        letter-spacing: -.5px;
    }
}

/* ==========================================================
   FLB PREMIUM SOCIAL CARDS V7
   ========================================================== */

.flb-social-center {
    min-width: 0;
}

.flb-post-v2 {
    position: relative;
    overflow: hidden;
    margin-bottom: 18px;
    border: 1px solid rgba(6,47,61,.075);
    border-radius: 22px;
    background: #fff;
    box-shadow:
        0 18px 46px rgba(6,47,61,.055),
        0 2px 6px rgba(6,47,61,.025);
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.flb-post-v2:hover {
    transform: translateY(-1px);
    border-color: rgba(14,99,113,.12);
    box-shadow:
        0 22px 52px rgba(6,47,61,.07),
        0 3px 8px rgba(6,47,61,.035);
}

.flb-post-body {
    padding: 18px 19px 15px;
}

.flb-post-head-v2 {
    align-items: flex-start;
}

.flb-post-head-v2 .flb-user-disc {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border: 3px solid #fff;
    box-shadow:
        0 0 0 1px rgba(6,47,61,.08),
        0 6px 16px rgba(6,47,61,.10);
}

.flb-post-author-v2 {
    padding-top: 2px;
}

.flb-post-author-v2 a {
    font-size: 14px;
    font-weight: 850;
    letter-spacing: -.15px;
}

.flb-post-meta-v2 {
    margin-top: 3px;
    font-size: 12px;
    color: #89999d;
}

.flb-post-type {
    min-height: 23px;
    margin-top: 7px;
    padding: 0 8px;
    border: 1px solid rgba(6,47,61,.05);
    font-size: 11px;
    letter-spacing: .06em;
}

.flb-post-copy {
    max-width: 780px;
    margin: 15px 0 2px;
    color: #294951;
    font-size: 15px;
    line-height: 1.62;
}

.flb-pin-v2 {
    margin-top: 2px;
    border: 1px solid rgba(212,170,98,.22);
    background: rgba(212,170,98,.10);
    color: #8e6928;
}

/* PHOTO */

.flb-post-media {
    aspect-ratio: 16 / 9;
    border-top: 0;
    border-bottom: 0;
    background:
        linear-gradient(135deg,#dce9eb,#edf4f5);
}

.flb-post-media:after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow:
        inset 0 1px rgba(255,255,255,.15),
        inset 0 -90px 100px rgba(3,31,42,.08);
}

.flb-post-media img {
    transform: scale(1.001);
}

.flb-post-v2:hover .flb-post-media > img {
    transform: scale(1.018);
}

.flb-post-media-overlay {
    z-index: 2;
    padding: 60px 17px 15px;
    background:
        linear-gradient(
            to top,
            rgba(3,31,42,.66),
            rgba(3,31,42,.17) 45%,
            transparent
        );
}

.flb-post-media-label {
    gap: 8px;
    color: rgba(255,255,255,.96);
    font-size: 12px;
    letter-spacing: .02em;
}

.flb-post-media-brand {
    width: 28px !important;
    height: 28px !important;
    padding: 2px;
    border: 1px solid rgba(255,255,255,.45);
    background: rgba(255,255,255,.94);
}

/* CAPTURE */

.flb-catch-badge {
    z-index: 3;
    top: 15px;
    right: 15px;
    min-height: 31px;
    padding: 0 11px;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(3,31,42,.69);
    box-shadow: 0 6px 20px rgba(0,0,0,.15);
}

.flb-catch-panel {
    grid-template-columns: repeat(4,minmax(0,1fr));
    border-top: 0;
    border-bottom: 1px solid rgba(6,47,61,.075);
    background: rgba(6,47,61,.06);
}

.flb-catch-stat {
    position: relative;
    min-height: 73px;
    padding: 14px 16px;
    background: #fbfdfd;
}

.flb-catch-stat:after {
    content: "";
    position: absolute;
    top: 17px;
    right: 0;
    bottom: 17px;
    width: 1px;
    background: rgba(6,47,61,.06);
}

.flb-catch-stat:last-child:after {
    display: none;
}

.flb-catch-stat small {
    margin-bottom: 7px;
    color: #8b9a9e;
    font-size: 11px;
    letter-spacing: .08em;
}

.flb-catch-stat strong {
    color: #143d47;
    font-size: 15px;
    letter-spacing: -.1px;
}

.flb-catch-stat.primary {
    background:
        linear-gradient(
            135deg,
            rgba(212,170,98,.17),
            rgba(255,255,255,.98)
        );
}

.flb-catch-stat.primary strong {
    color: #7a5b22;
}

/* ACTIONS */

.flb-post-actions-v2 {
    min-height: 51px;
    align-items: center;
    gap: 3px;
    padding: 7px 12px;
    border-top: 0;
    background: #fff;
}

.flb-post-action {
    min-height: 36px;
    padding: 0 11px;
    border: 1px solid transparent;
    border-radius: 11px;
    background: transparent;
    color: #667d83;
    font-size: 14px;
    font-weight: 760;
    transition:
        color .16s ease,
        background .16s ease,
        border-color .16s ease;
}

.flb-post-action:hover {
    color: #0e6371;
    border-color: rgba(14,99,113,.07);
    background: #f1f7f8;
}

.flb-post-action.liked {
    color: #a84b58;
    background: rgba(168,75,88,.055);
}

.flb-post-action.liked svg {
    fill: currentColor;
    stroke: currentColor;
}

.flb-post-actions-v2 .flb-post-action:last-child {
    margin-left: auto;
}

.flb-comment-v2 {
    align-items: center;
    gap: 8px;
    padding: 10px 13px 13px;
    border-top: 1px solid rgba(6,47,61,.055);
    background: #fbfdfd;
}

.flb-comment-v2 input {
    min-height: 39px;
    padding: 0 13px;
    border: 1px solid rgba(6,47,61,.08);
    border-radius: 12px;
    background: #fff;
    color: #294951;
    outline: none;
}

.flb-comment-v2 input:focus {
    border-color: rgba(14,99,113,.28);
    box-shadow: 0 0 0 3px rgba(14,99,113,.055);
}

.flb-comment-v2 button {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    border-radius: 11px;
    background:
        linear-gradient(135deg,#0e6371,#062f3d);
    box-shadow: 0 6px 14px rgba(6,47,61,.14);
}

/* COMPOSER */

.flb-composer-v2 {
    border-radius: 22px;
    border-color: rgba(6,47,61,.075);
    box-shadow:
        0 15px 40px rgba(6,47,61,.045);
}

.flb-composer-v2 textarea {
    min-height: 78px;
    border: 0;
    border-radius: 15px;
    background: #f4f8f9;
}

.flb-compose-tools .flb-tool {
    border: 1px solid rgba(6,47,61,.055);
    background: #f6f9fa;
}

.flb-publish-v2 {
    padding: 0 24px;
    border-radius: 12px;
}

/* FILTRES */

.flb-feed-tabs {
    padding: 5px;
    border-color: rgba(6,47,61,.065);
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(6,47,61,.025);
}

.flb-feed-tab {
    padding: 8px 14px;
    border-radius: 9px;
    font-size: 14px;
    letter-spacing: .01em;
}

.flb-feed-tab.active {
    color: #fff;
    background:
        linear-gradient(135deg,#0e6371,#062f3d);
    box-shadow: 0 5px 13px rgba(6,47,61,.13);
}

/* RESPONSIVE */

@media (max-width: 680px) {
    .flb-post-v2 {
        border-radius: 17px;
    }

    .flb-post-body {
        padding: 15px;
    }

    .flb-post-media {
        aspect-ratio: 4 / 3;
    }

    .flb-catch-panel {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .flb-catch-stat:nth-child(2):after {
        display: none;
    }

    .flb-post-action {
        padding: 0 9px;
    }
}


/* ==========================================================
   FLB PREMIUM LEFT SIDEBAR V8
   ========================================================== */

.flb-social-grid {
    grid-template-columns: 230px minmax(0,1fr) 300px;
    gap: 22px;
}

.flb-social-left {
    top: 88px;
}

.flb-side-menu {
    padding: 12px;
    border: 1px solid rgba(6,47,61,.07);
    border-radius: 22px;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.97),
            rgba(248,251,252,.97)
        );
    box-shadow:
        0 18px 44px rgba(6,47,61,.05);
}

.flb-side-link {
    position: relative;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 13px;
    color: #536e75;
    font-size: 12px;
    font-weight: 760;
    transition:
        background .16s ease,
        color .16s ease,
        transform .16s ease;
}

.flb-side-link svg {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    stroke-width: 1.75;
}

.flb-side-link:hover {
    color: #062f3d;
    background: #eef5f6;
    transform: translateX(2px);
}

.flb-side-link.active {
    color: #fff;
    background:
        linear-gradient(
            135deg,
            #0e6371 0%,
            #084654 52%,
            #062f3d 100%
        );
    box-shadow:
        0 10px 24px rgba(6,47,61,.17);
}

.flb-side-link.active:before {
    content: "";
    position: absolute;
    left: 7px;
    top: 50%;
    width: 3px;
    height: 22px;
    border-radius: 99px;
    transform: translateY(-50%);
    background: #d4aa62;
}

.flb-side-link.active svg {
    stroke-width: 2;
}

.flb-side-separator {
    margin: 12px 6px;
    background: rgba(6,47,61,.07);
}

.flb-side-secondary .flb-side-link {
    min-height: 44px;
    color: #75898f;
    font-size: 11px;
}

.flb-side-secondary .flb-side-link:hover {
    color: #0e6371;
}

/* zone centrale un peu plus respirante */

.flb-social-center {
    width: 100%;
    max-width: 860px;
    justify-self: center;
}

.flb-feed-hero {
    padding: 24px 28px;
    border-radius: 24px;
    border-color: rgba(6,47,61,.065);
    box-shadow:
        0 18px 45px rgba(6,47,61,.045);
}

.flb-feed-hero h1 {
    letter-spacing: -1.35px;
}

.flb-feed-hero p {
    max-width: 620px;
    font-size: 13px;
    line-height: 1.55;
}

/* colonne droite plus cohérente */

.flb-social-right {
    top: 88px;
}

.flb-right-card {
    border-radius: 20px;
    border-color: rgba(6,47,61,.07);
    box-shadow:
        0 16px 40px rgba(6,47,61,.045);
}

.flb-right-title {
    font-size: 12px;
    letter-spacing: -.1px;
}

.flb-explore-link {
    min-height: 42px;
    padding: 10px 2px;
}

/* responsive */

@media (max-width: 1280px) {
    .flb-social-grid {
        grid-template-columns: 210px minmax(0,1fr);
    }

    .flb-social-center {
        max-width: none;
    }
}

@media (max-width: 820px) {
    .flb-social-left {
        margin-bottom: 14px;
    }

    .flb-side-menu {
        border-radius: 16px;
        box-shadow: 0 10px 28px rgba(6,47,61,.04);
    }

    .flb-side-link {
        min-height: 40px;
        padding: 0 12px;
    }

    .flb-side-link.active:before {
        display: none;
    }
}

/* ==========================================================
   FLB SOCIAL POLISH V9
   ========================================================== */

/* COMPOSER */

.flb-composer-v2 {
    position: relative;
    overflow: hidden;
    padding: 17px;
    border: 1px solid rgba(6,47,61,.07);
    border-radius: 22px;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.99),
            rgba(250,252,253,.98)
        );
}

.flb-composer-v2:before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -75px;
    top: -78px;
    border-radius: 50%;
    background: rgba(22,148,176,.055);
}

.flb-composer-row,
.flb-composer-bottom {
    position: relative;
    z-index: 1;
}

.flb-composer-v2 textarea {
    min-height: 86px;
    padding: 16px 17px;
    border: 1px solid rgba(6,47,61,.05);
    border-radius: 16px;
    background: #f5f9fa;
    color: #22434b;
    transition:
        background .16s ease,
        border-color .16s ease,
        box-shadow .16s ease;
}

.flb-composer-v2 textarea:hover {
    background: #f8fbfc;
}

.flb-composer-v2 textarea:focus {
    background: #fff;
    border-color: rgba(14,99,113,.18);
    box-shadow:
        0 0 0 4px rgba(14,99,113,.045);
}

.flb-tool {
    min-height: 38px;
    padding: 0 11px;
    border-radius: 11px;
    color: #5e747a;
    background: #f4f8f9;
    transition:
        background .16s ease,
        color .16s ease,
        transform .16s ease;
}

.flb-tool:hover {
    color: #0e6371;
    background: #eaf3f4;
    transform: translateY(-1px);
}

.flb-tool svg {
    width: 17px;
    height: 17px;
}

.flb-publish-v2 {
    min-height: 40px;
    padding: 0 23px;
    border-radius: 12px;
    background:
        linear-gradient(
            135deg,
            #e1bd76 0%,
            #d4aa62 100%
        );
    color: #183238;
    box-shadow:
        0 7px 18px rgba(212,170,98,.18);
    transition:
        transform .16s ease,
        box-shadow .16s ease;
}

.flb-publish-v2:hover {
    transform: translateY(-1px);
    box-shadow:
        0 9px 22px rgba(212,170,98,.24);
}

.flb-publish-v2:active {
    transform: translateY(0);
}

/* FILTER BAR */

.flb-feed-tabs {
    position: sticky;
    top: 84px;
    z-index: 20;
    gap: 3px;
    margin-bottom: 14px;
    padding: 5px;
    border: 1px solid rgba(6,47,61,.065);
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.flb-feed-tab {
    position: relative;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 13px;
    color: #74888e;
    transition:
        background .16s ease,
        color .16s ease,
        transform .16s ease;
}

.flb-feed-tab:hover {
    color: #0e6371;
    background: #eef5f6;
}

.flb-feed-tab.active {
    color: #fff;
    background:
        linear-gradient(
            135deg,
            #0e6371,
            #062f3d
        );
}

.flb-feed-tab.active:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 18px;
    height: 2px;
    border-radius: 99px;
    transform: translateX(-50%);
    background: rgba(212,170,98,.95);
}

/* HERO */

.flb-feed-hero {
    overflow: hidden;
}

.flb-feed-hero:before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: 12%;
    top: -70px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(14,99,113,.10),
            rgba(14,99,113,0) 68%
        );
}

.flb-feed-hero .flb-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(212,170,98,.10);
    color: #8e6928;
    letter-spacing: .15em;
}

/* ACTION FEEDBACK */

.flb-post-action:active,
.flb-tool:active,
.flb-suggestion-open:active,
.flb-context-link:active {
    transform: scale(.97);
}

.flb-suggestion-open {
    transition:
        background .16s ease,
        color .16s ease,
        transform .16s ease;
}

.flb-suggestion-open:hover {
    color: #fff;
    background:
        linear-gradient(135deg,#0e6371,#062f3d);
}

/* ACCESSIBILITE VISUELLE */

.flb-side-link:focus-visible,
.flb-nav-links a:focus-visible,
.flb-tool:focus-visible,
.flb-publish-v2:focus-visible,
.flb-post-action:focus-visible,
.flb-suggestion-open:focus-visible,
.flb-context-link:focus-visible,
.flb-page-v2:focus-visible {
    outline: 3px solid rgba(22,148,176,.22);
    outline-offset: 2px;
}

/* MOBILE APP FEEL */

@media (max-width: 820px) {
    .flb-social-grid {
        width: min(100% - 12px, 820px);
        padding-top: 10px;
    }

    .flb-social-left {
        position: sticky;
        top: 67px;
        z-index: 50;
        margin-bottom: 10px;
    }

    .flb-side-menu {
        gap: 3px;
        padding: 6px;
        border-radius: 14px;
        background: rgba(255,255,255,.96);
        backdrop-filter: blur(14px);
    }

    .flb-side-link {
        min-height: 42px;
        padding: 0 12px;
        font-size: 13px;
    }

    .flb-side-link svg {
        width: 17px;
        height: 17px;
    }

    .flb-feed-tabs {
        top: 112px;
    }
}

@media (max-width: 580px) {
    .flb-social-grid {
        width: calc(100% - 8px);
    }

    .flb-feed-hero {
        min-height: 96px;
        margin-bottom: 10px;
        padding: 17px;
        border-radius: 16px;
    }

    .flb-feed-hero h1 {
        margin-top: 7px;
        font-size: 28px;
    }

    .flb-feed-hero p {
        font-size: 14px;
    }

    .flb-composer-v2 {
        margin-bottom: 10px;
        padding: 11px;
        border-radius: 16px;
    }

    .flb-composer-row {
        gap: 9px;
    }

    .flb-composer-row .flb-user-disc {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .flb-composer-v2 textarea {
        min-height: 68px;
        padding: 12px;
        border-radius: 13px;
        font-size: 12px;
    }

    .flb-composer-bottom {
        gap: 8px;
        padding-top: 9px;
    }

    .flb-compose-tools {
        gap: 4px;
    }

    .flb-tool {
        min-width: 38px;
        min-height: 36px;
        justify-content: center;
        padding: 0 9px;
    }

    .flb-publish-v2 {
        min-height: 39px;
    }

    .flb-feed-tabs {
        top: 108px;
        margin-bottom: 9px;
        border-radius: 12px;
    }

    .flb-feed-tab {
        min-height: 36px;
        padding: 0 12px;
        font-size: 13px;
    }

    .flb-post-v2 {
        margin-bottom: 10px;
    }

    .flb-post-body {
        padding: 13px;
    }

    .flb-post-copy {
        font-size: 12px;
        line-height: 1.55;
    }

    .flb-post-actions-v2 {
        overflow-x: auto;
        min-height: 47px;
        padding: 6px 9px;
    }

    .flb-post-action {
        flex: 0 0 auto;
        min-height: 40px;
        font-size: 13px;
    }
}


/* ==========================================================
   FLB V3.L — FOND DE PAGE EXTERIEUR
   La photo est derrière le site, pas dans un bloc.
   ========================================================== */

body.flb-site {
    background-color:#eef3f4;

    background-image:
        linear-gradient(
            rgba(6,47,61,.12),
            rgba(6,47,61,.12)
        ),
        url('/assets/feed/flb-hero-community.webp?v=2');

    background-size:cover;
    background-position:center top;
    background-repeat:no-repeat;
    background-attachment:fixed;
}


/*
 * La partie centrale reste lisible.
 * Le paysage apparaît surtout dans les espaces
 * extérieurs gauche et droite.
 */

body.flb-site main {
    position:relative;
}


/*
 * On donne au cœur du site un fond clair,
 * sans étendre ce fond sur toute la largeur de l'écran.
 */

body.flb-site .flb-social-v2 {
    position:relative;
}


/*
 * Sur les écrans étroits il n'y a pratiquement plus
 * de marges extérieures : on repasse sur un fond simple.
 */

@media(max-width:900px) {

    body.flb-site {
        background-image:none;
        background-color:#f4f7f8;
        background-attachment:scroll;
    }
}



/* ==========================================================
   FLB V3.M — HEADER GENERAL PREMIUM
   Référence visuelle finale du header
   ========================================================== */

.flb-nav {
    position:sticky !important;
    top:0 !important;
    z-index:100 !important;

    min-height:74px;

    background:
        linear-gradient(
            90deg,
            #052c38 0%,
            #073a47 48%,
            #052f3b 100%
        ) !important;

    border-bottom:
        1px solid rgba(255,255,255,.09) !important;

    box-shadow:
        0 7px 24px rgba(3,31,42,.18) !important;

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
}


.flb-nav-inner {
    width:min(1540px, calc(100% - 36px)) !important;
    max-width:1540px !important;
    min-height:74px !important;

    margin:0 auto !important;
    padding:0 !important;

    display:flex !important;
    align-items:center !important;
    gap:24px !important;
}


/* LOGO ---------------------------------------------------- */

.flb-logo {
    flex:0 0 auto;

    display:flex !important;
    align-items:center !important;
    gap:9px !important;

    color:#ffffff !important;
    text-decoration:none !important;

    font-size:20px !important;
    font-weight:850 !important;
    letter-spacing:-.35px !important;
}


.flb-brand-mark {
    width:42px !important;
    height:42px !important;
    flex:0 0 42px;

    filter:
        drop-shadow(
            0 5px 10px rgba(0,0,0,.14)
        );
}


.flb-logo > span {
    color:#ffffff !important;
}


.flb-logo > span > span {
    color:#d4aa62 !important;
}


.flb-logo small {
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;

    min-height:22px !important;

    margin-left:2px !important;
    padding:0 7px !important;

    border:
        1px solid rgba(212,170,98,.40) !important;

    border-radius:7px !important;

    background:
        rgba(212,170,98,.14) !important;

    color:#efd49d !important;

    font-size:10px !important;
    font-weight:850 !important;
    letter-spacing:.08em !important;
}


/* NAVIGATION ---------------------------------------------- */

.flb-nav-links {
    min-width:0;

    display:flex !important;
    align-items:center !important;
    gap:3px !important;

    margin-left:auto !important;
}


.flb-nav-links a {
    position:relative;

    min-height:42px;

    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;

    padding:0 11px !important;

    border-radius:10px !important;

    color:
        rgba(241,248,249,.82) !important;

    background:
        transparent !important;

    text-decoration:none !important;

    font-size:14px !important;
    font-weight:720 !important;

    white-space:nowrap;

    transition:
        color .16s ease,
        background .16s ease;
}


.flb-nav-links a:hover {
    color:#ffffff !important;

    background:
        rgba(255,255,255,.075) !important;
}


.flb-nav-links a[href="/feed"] {
    color:#ffffff !important;

    background:
        rgba(255,255,255,.085) !important;
}


.flb-nav-links a[href="/feed"]:after {
    content:"";

    position:absolute;
    left:12px;
    right:12px;
    bottom:3px;

    height:2px;

    border-radius:99px;

    background:#d4aa62;
}


/* ACTIONS ------------------------------------------------- */

.flb-nav-actions {
    flex:0 0 auto;

    display:flex !important;
    align-items:center !important;
    gap:8px !important;
}


/* LANGUES ------------------------------------------------- */

.flb-lang {
    display:flex !important;
    align-items:center !important;
    gap:2px !important;

    margin-right:5px !important;
}


.flb-lang a {
    min-width:30px;
    min-height:34px;

    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;

    padding:0 5px !important;

    border:
        1px solid transparent !important;

    border-radius:8px !important;

    color:
        rgba(226,238,241,.70) !important;

    background:
        transparent !important;

    text-decoration:none !important;

    font-size:11px !important;
    font-weight:800 !important;

    transition:
        color .15s ease,
        background .15s ease,
        border-color .15s ease;
}


.flb-lang a:hover {
    color:#ffffff !important;

    background:
        rgba(255,255,255,.07) !important;
}


.flb-lang a.active {
    color:#fff2d4 !important;

    border-color:
        rgba(212,170,98,.35) !important;

    background:
        rgba(212,170,98,.16) !important;

    box-shadow:none !important;
}


/* BOUTONS ------------------------------------------------- */

.flb-nav .flb-btn {
    min-height:40px !important;

    padding:0 14px !important;

    border-radius:10px !important;

    font-size:14px !important;
    font-weight:800 !important;

    transition:
        background .16s ease,
        border-color .16s ease,
        color .16s ease,
        transform .16s ease;
}


.flb-nav .flb-btn.ghost {
    color:#ffffff !important;

    border:
        1px solid rgba(255,255,255,.14) !important;

    background:
        rgba(255,255,255,.07) !important;
}


.flb-nav .flb-btn.ghost:hover {
    color:#ffffff !important;

    border-color:
        rgba(255,255,255,.22) !important;

    background:
        rgba(255,255,255,.12) !important;
}


.flb-nav .flb-btn.primary {
    color:#173239 !important;

    border:
        1px solid rgba(255,255,255,.15) !important;

    background:
        linear-gradient(
            135deg,
            #e5c27c,
            #d4aa62
        ) !important;

    box-shadow:
        0 7px 18px rgba(0,0,0,.14) !important;
}


.flb-nav .flb-btn.primary:hover {
    transform:translateY(-1px);

    background:
        linear-gradient(
            135deg,
            #ebcb89,
            #ddb66d
        ) !important;
}


/* RESPONSIVE ---------------------------------------------- */

@media(max-width:1320px) {

    .flb-nav-inner {
        width:min(100% - 26px, 1540px) !important;
        gap:14px !important;
    }

    .flb-nav-links a {
        padding:0 8px !important;
        font-size:13px !important;
    }

    .flb-lang a {
        min-width:27px;
        font-size:10px !important;
    }
}


@media(max-width:1100px) {

    .flb-nav-links {
        display:none !important;
    }

    .flb-nav-actions {
        margin-left:auto !important;
    }
}


@media(max-width:720px) {

    .flb-nav {
        min-height:66px;
    }

    .flb-nav-inner {
        min-height:66px !important;
        width:calc(100% - 22px) !important;
    }

    .flb-logo {
        font-size:17px !important;
    }

    .flb-brand-mark {
        width:36px !important;
        height:36px !important;
        flex-basis:36px;
    }

    .flb-lang {
        display:none !important;
    }

    .flb-logo small {
        display:none !important;
    }
}


@media(max-width:520px) {

    .flb-logo > span {
        font-size:16px !important;
    }

    .flb-nav .flb-btn {
        min-height:38px !important;
        padding:0 10px !important;
        font-size:13px !important;
    }
}



/* ==========================================================
   FLB V3.N FIX — MENU LANGUES DEROULANT
   ========================================================== */

.flb-lang-menu {
    position:relative;
    flex:0 0 auto;
}

.flb-lang-menu > summary {
    min-width:62px;
    min-height:40px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;

    padding:0 12px;

    border:1px solid rgba(255,255,255,.18);
    border-radius:10px;

    background:rgba(255,255,255,.08);

    color:#fff;

    list-style:none;
    cursor:pointer;

    font-size:13px;
    font-weight:850;
}

.flb-lang-menu > summary::-webkit-details-marker {
    display:none;
}

.flb-lang-menu > summary:hover {
    background:rgba(255,255,255,.13);
}

.flb-lang-arrow {
    color:#d4aa62;
    font-size:12px;
}

.flb-lang-menu[open] .flb-lang-arrow {
    transform:rotate(180deg);
}

.flb-lang-dropdown {
    position:absolute;
    z-index:200;

    top:calc(100% + 8px);
    right:0;

    min-width:96px;

    padding:6px;

    border:1px solid rgba(6,47,61,.10);
    border-radius:12px;

    background:#fff;

    box-shadow:
        0 16px 36px rgba(3,31,42,.20);
}

.flb-lang-dropdown a {
    min-height:38px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:0 12px;

    border-radius:8px;

    color:#35565e !important;
    background:transparent !important;

    text-decoration:none;

    font-size:13px !important;
    font-weight:800 !important;
}

.flb-lang-dropdown a:hover {
    color:#062f3d !important;
    background:#eef5f6 !important;
}

.flb-lang-dropdown a.active {
    color:#75571e !important;
    background:rgba(212,170,98,.18) !important;
}

@media(max-width:720px) {
    .flb-lang-menu {
        display:none;
    }
}



/* ==========================================================
   FLB V3.O — LANGUES AU SURVOL DESKTOP
   ========================================================== */

@media (hover:hover) and (pointer:fine) {

    .flb-lang-menu:not([open]) .flb-lang-dropdown {
        display:none;
    }

    .flb-lang-menu:hover .flb-lang-dropdown,
    .flb-lang-menu:focus-within .flb-lang-dropdown {
        display:block;
    }

    .flb-lang-menu:hover > summary {
        background:rgba(255,255,255,.13);
        border-color:rgba(255,255,255,.23);
    }
}



/* ==========================================================
   FLB V3.P — LANGUES SURVOL STABLE
   ========================================================== */

.flb-lang-menu {
    position:relative;
}

/*
 * Petit pont invisible entre le bouton et le menu.
 * La souris ne tombe plus dans un "trou" de 8 px.
 */
.flb-lang-menu:after {
    content:"";
    position:absolute;
    z-index:199;
    top:100%;
    right:0;
    width:100%;
    height:10px;
}

/* Le menu reste piloté par l'attribut open */
.flb-lang-menu:not([open]) .flb-lang-dropdown {
    display:none !important;
}

.flb-lang-menu[open] .flb-lang-dropdown {
    display:block !important;
}

