        :root {
            --fcbb-blue: #0f3d91;
            --fcbb-blue-dark: #0a2b67;
            --fcbb-red: #c62828;
            --fcbb-gold: #f2b705;
            --fcbb-light: #f5f7fb;
            --fcbb-text: #1c2430;
            --fcbb-muted: #5f6b7a;
            --fcbb-white: #ffffff;
            --fcbb-border: #dbe3ee;
            --shadow-soft: 0 10px 30px rgba(15, 61, 145, 0.10);
            --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.08);
            --radius-xl: 24px;
            --radius-lg: 18px;
            --radius-md: 12px;
            --container: 1200px;
        }
        * {
            box-sizing: border-box;
        }
       html {
           scroll-behavior: smooth;
           scroll-padding-top: 110px;
        }
       section[id] {
           scroll-margin-top: 110px;
        }
        body {
            margin: 0;
            font-family: Arial, Helvetica, sans-serif;
            background: var(--fcbb-light);
            color: var(--fcbb-text);
            line-height: 1.6;
        }
        img {
            max-width: 100%;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        .container {
            width: min(var(--container), calc(100% - 32px));
            margin: 0 auto;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid var(--fcbb-border);
        }

        .site-header-inner {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 14px;
            padding: 10px 0;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 0;
            flex: 0 0 auto;
        }

        .brand img {
            width: 120px;
            height: 120px;
            object-fit: contain;
            background: transparent;
            border-radius: 0;
            border: 0;
            padding: 0;
        }

        .brand-text {
            min-width: 0;
        }

        .brand-text strong {
            display: block;
            font-size: 1.18rem;
            color: var(--fcbb-blue-dark);
        }

        .brand-text span {
            display: block;
            font-size: 0.92rem;
            color: var(--fcbb-muted);
        }

        .main-nav {
            display: flex;
            flex-wrap: nowrap;
            gap: 12px;
            justify-content: flex-start;
            margin-left: 10px;
            white-space: nowrap;
        }

        .main-nav a {
            font-size: 0.88rem;
            font-weight: 700;
            color: var(--fcbb-blue-dark);
        }

        .main-nav a:hover {
            color: var(--fcbb-red);
        }

        .hero {
            position: relative;
            overflow: hidden;
            background:
                linear-gradient(135deg, rgba(10, 43, 103, 0.96), rgba(15, 61, 145, 0.92)),
                linear-gradient(45deg, rgba(242, 183, 5, 0.15), rgba(198, 40, 40, 0.10));
            color: var(--fcbb-white);
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at top left, rgba(255,255,255,0.15), transparent 30%),
                radial-gradient(circle at bottom right, rgba(255,255,255,0.12), transparent 25%);
            pointer-events: none;
        }

        .hero-inner {
            position: relative;
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 40px;
            align-items: center;
            padding: 72px 0 56px;
        }

        .hero-badge {
            display: inline-block;
            padding: 8px 14px;
            border: 1px solid rgba(255,255,255,0.28);
            border-radius: 999px;
            background: rgba(255,255,255,0.10);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .hero h1 {
            margin: 0 0 18px;
            font-size: clamp(2.2rem, 5vw, 4.2rem);
            line-height: 1.08;
        }

        .hero-lead {
            margin: 0 0 14px;
            font-size: 1.15rem;
            color: rgba(255,255,255,0.92);
            max-width: 720px;
        }

        .hero-sublead {
            margin: 0 0 26px;
            font-size: 1rem;
            color: rgba(255,255,255,0.84);
            max-width: 720px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .btn {
            display: inline-block;
            padding: 13px 20px;
            border-radius: 999px;
            font-weight: 700;
            transition: 0.2s ease;
        }

        .btn-primary {
            background: var(--fcbb-white);
            color: var(--fcbb-blue-dark);
        }

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

        .btn-secondary {
            border: 1px solid rgba(255,255,255,0.35);
            color: var(--fcbb-white);
            background: rgba(255,255,255,0.06);
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.12);
        }

        .hero-card {
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.16);
            border-radius: 28px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            backdrop-filter: blur(6px);
            max-width: 430px;
            margin-left: auto;
        }

        .hero-card img {
            width: 100%;
            height: 520px;
            object-fit: cover;
            object-position: center top;
        }

        .hero-card-body {
            padding: 18px 20px 22px;
            background: rgba(255,255,255,0.92);
            color: var(--fcbb-text);
            text-align: center;
        }

        .hero-card-body strong {
            display: block;
            font-size: 1.15rem;
            color: var(--fcbb-blue-dark);
        }

        .hero-card-body span {
            display: block;
            color: var(--fcbb-muted);
            font-size: 0.95rem;
        }

        .section {
            padding: 60px 0;
        }

        .section-header {
            margin-bottom: 24px;
        }

        .eyebrow {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--fcbb-red);
            margin-bottom: 10px;
        }

        .section h2 {
            margin: 0;
            font-size: clamp(1.8rem, 4vw, 2.7rem);
            color: var(--fcbb-blue-dark);
        }

        .section-intro {
            margin-top: 10px;
            max-width: 860px;
            color: var(--fcbb-muted);
            font-size: 1rem;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 28px;
            align-items: stretch;
        }

        .card {
            background: var(--fcbb-white);
            border: 1px solid var(--fcbb-border);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-card);
        }

        .card-body {
            padding: 28px;
        }

        .president-block img {
            width: 100%;
            height: auto;
            object-fit: contain;
            object-position: center top;
            border-radius: 16px;
            margin-bottom: 18px;
        }

        .president-block p,
        .mission-list p,
        .history-card p,
        .portal-card p {
            margin: 0 0 14px;
            color: var(--fcbb-text);
            text-align: justify;
        }

        .small-note {
            color: var(--fcbb-muted);
            font-size: 0.95rem;
        }

        .side-stack {
            display: grid;
            gap: 20px;
        }

        .history-card {
            background: linear-gradient(135deg, #ffffff, #f8fbff);
        }

        .portal-card {
            background: linear-gradient(135deg, #0a2b67, #123f97);
            color: var(--fcbb-white);
            border: none;
        }

        .portal-card h3,
        .history-card h3,
        .president-block h3,
        .news-card h3,
        .club-card h3,
        .stats-card h3 {
            margin: 0 0 12px;
            font-size: 1.35rem;
        }

        .portal-card p {
            color: rgba(255,255,255,0.90);
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .news-card {
            overflow: hidden;
        }

        .news-thumb {
            height: 180px;
            background:
                linear-gradient(135deg, rgba(15,61,145,0.18), rgba(242,183,5,0.20)),
                linear-gradient(45deg, rgba(198,40,40,0.15), rgba(15,61,145,0.08));
            border-bottom: 1px solid var(--fcbb-border);
        }

        .news-card .card-body p {
            margin: 0;
            color: var(--fcbb-muted);
            text-align: justify;
        }

        .events-grid {
            display: grid;
            grid-template-columns: 0.95fr 1.05fr;
            gap: 22px;
        }

        .event-item {
            display: flex;
            gap: 14px;
            align-items: flex-start;
            padding: 16px;
            border: 1px solid var(--fcbb-border);
            border-radius: 16px;
            margin-bottom: 14px;
            background: #fbfdff;
        }

        .event-icon {
            flex: 0 0 44px;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: grid;
            place-items: center;
            background: rgba(15, 61, 145, 0.10);
            color: var(--fcbb-blue-dark);
            font-weight: 700;
        }

        .event-item strong {
            display: block;
            color: var(--fcbb-blue-dark);
        }

        .event-item span {
            color: var(--fcbb-muted);
            font-size: 0.95rem;
        }

        .clubs-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-top: 22px;
        }

        .club-card {
            text-align: center;
            padding: 18px 14px;
        }

        .club-card img {
            width: 90px;
            height: 90px;
            object-fit: contain;
            margin: 0 auto 12px;
            background: #fff;
            border-radius: 50%;
            border: 1px solid var(--fcbb-border);
            padding: 8px;
        }

        .club-card span {
            display: block;
            font-weight: 700;
            font-size: 0.92rem;
            color: var(--fcbb-blue-dark);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .stats-card {
            text-align: center;
            padding: 28px 22px;
        }

        .stats-number {
            font-size: 2.5rem;
            line-height: 1;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--fcbb-blue-dark);
        }

        .stats-card p {
            margin: 0;
            color: var(--fcbb-muted);
            text-align: center;
        }

        .site-footer {
            background: #081d49;
            color: rgba(255,255,255,0.88);
            padding: 36px 0;
            margin-top: 30px;
        }

        .site-footer strong {
            color: #fff;
            display: block;
            margin-bottom: 8px;
        }

        .site-footer p {
            margin: 6px 0;
        }

        @media (max-width: 1100px) {
            .hero-inner,
            .grid-2,
            .events-grid {
                grid-template-columns: 1fr;
            }

            .hero-card {
                margin: 0;
                max-width: 100%;
            }

            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .clubs-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 760px) {
            .site-header-inner {
                flex-direction: column;
                align-items: flex-start;
            }

            .main-nav {
                justify-content: flex-start;
                gap: 12px 16px;
            }

            .hero {
                text-align: left;
            }

            .hero-inner {
                padding: 52px 0 42px;
            }

            .hero-card img {
                height: 420px;
            }

            .news-grid,
            .clubs-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .section {
                padding: 46px 0;
            }

            .card-body {
                padding: 22px;
            }
        }

        @media (max-width: 480px) {
            .container {
                width: min(var(--container), calc(100% - 20px));
            }

            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .btn {
                text-align: center;
            }

            .news-grid,
            .clubs-grid {
                grid-template-columns: 1fr;
            }

            .hero-card img {
                height: 340px;
            }
        }
        @media (max-width: 760px) {
            .hero-card img {
                height: auto;
                object-fit: contain;
            }
            .brand img {
                width: 60px;
                height: 60px;
            }
        }
        .footer-meta {
            margin-top: 18px;
            font-size: 0.8rem;
            color: rgba(255,255,255,0.6);
            display: flex;
            justify-content: space-between;
            gap: 10px;
        }

        .news-link {
            display: inline-block;
            margin-top: 12px;
            color: var(--fcbb-red);
            font-weight: 700;
            text-decoration: none;
        }

        .news-link:hover {
            text-decoration: underline;
        }

        .article-content a {
            color: var(--fcbb-red);
            font-weight: 700;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .article-content a:hover {
            color: var(--fcbb-blue);
        }

        .contact-form {
            max-width: 980px;
            margin: 0 auto;
        }

        .contact-form .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 22px;
            margin-bottom: 22px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            min-height: 56px;
            padding: 16px 18px;
            border: 1px solid #d7dce8;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            background: #ffffff;
        }

        .contact-form textarea {
            min-height: 240px;
            resize: vertical;
            line-height: 1.7;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: #0033a0;
            box-shadow: 0 0 0 4px rgba(0, 51, 160, 0.12);
        }

        .contact-actions {
            display: flex;
            justify-content: center;
            margin-top: 26px;
        }

        .contact-actions .btn {
            min-width: 240px;
            text-align: center;
        }

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

        .gallery-grid {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            padding: 12px 4px 20px;
            scroll-snap-type: x mandatory;
        }

        .gallery-item {
            flex: 0 0 220px;
            margin: 0;
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(7, 29, 73, 0.10);
            scroll-snap-align: start;
        }

        .gallery-item a {
            display: block;
            text-decoration: none;
            color: inherit;
        }

        .gallery-item img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            display: block;
        }

        .gallery-item figcaption {
            padding: 10px 12px;
            font-size: 0.9rem;
            color: #4b5563;
        }

        .gallery-grid {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            padding: 12px 4px 20px;
            scroll-snap-type: x mandatory;
        }

        .gallery-item {
            flex: 0 0 220px;
            margin: 0;
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(7, 29, 73, 0.10);
            scroll-snap-align: start;
        }

        .gallery-trigger {
            width: 100%;
            border: 0;
            padding: 0;
            background: none;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            display: block;
        }

        .gallery-item figcaption {
            padding: 10px 12px;
            font-size: 0.9rem;
            color: #4b5563;
        }

        .gallery-lightbox {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: rgba(0, 0, 0, 0.88);
            align-items: center;
            justify-content: center;
        }

        .gallery-lightbox.is-open {
            display: flex;
        }

        .gallery-lightbox figure {
            max-width: 90vw;
            max-height: 86vh;
            margin: 0;
            text-align: center;
        }

        .gallery-lightbox img {
            max-width: 90vw;
            max-height: 78vh;
            object-fit: contain;
            border-radius: 12px;
        }

        .gallery-lightbox figcaption {
            margin-top: 12px;
            color: #fff;
        }

        .gallery-close,
        .gallery-prev,
        .gallery-next {
            position: absolute;
            border: 0;
            background: rgba(255,255,255,0.15);
            color: #fff;
            cursor: pointer;
            border-radius: 999px;
        }

        .gallery-close {
            top: 24px;
            right: 28px;
            font-size: 36px;
            width: 48px;
            height: 48px;
        }

        .gallery-prev,
        .gallery-next {
            top: 50%;
            transform: translateY(-50%);
            font-size: 54px;
            width: 58px;
            height: 58px;
        }

        .gallery-prev { left: 28px; }
        .gallery-next { right: 28px; }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
        }

        .video-card {
            overflow: hidden;
        }

        .video-frame {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            background: #000;
        }

        .video-frame iframe,
        .video-frame video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* FCBB - Centrage bouton portail */
        .portal-actions {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 2rem;
            text-align: center;
        }

        .portal-actions .btn {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto;
        }

        .event-item.last-event {
            margin-bottom: 0;
        }