* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1180px;
    margin: auto;
}

.top-header {
    background: #061b4e;
    padding: 18px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 600px) {
    .logo img {
        height: 48px;
    }
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 22px;
    font-weight: 600;
}

.main-nav a:hover,
.nav-highlight {
    color: #ffcc00 !important;
}

.hero {
    min-height: 520px;
    background: linear-gradient(rgba(6,27,78,.75), rgba(6,27,78,.75)), url('../img/hero-volley.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 22px;
    max-width: 600px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: #ffcc00;
    color: #061b4e;
    padding: 14px 26px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

.section {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title h2 {
    color: #061b4e;
    font-size: 36px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,.12);
    overflow: hidden;
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    color: #061b4e;
    margin-bottom: 12px;
}

.beach-section {
    background: #f4f7fb;
}

.price-card {
    text-align: center;
    padding: 35px;
}

.price {
    font-size: 42px;
    color: #061b4e;
    font-weight: bold;
    margin: 20px 0;
}

.site-footer {
    background: #061b4e;
    color: #fff;
    padding-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.site-footer a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    background: #031238;
}

@media screen and (max-width: 850px) {
    .header-content {
        flex-direction: column;
        gap: 18px;
    }

    .main-nav {
        text-align: center;
    }

    .main-nav a {
        display: inline-block;
        margin: 8px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .cards-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.admin-form {
    max-width: 700px;
    margin: auto;
}

.admin-form p {
    margin-bottom: 18px;
}

.admin-form label {
    font-weight: bold;
    color: #061b4e;
}

.admin-form input[type="text"],
.admin-form input[type="date"],
.admin-form input[type="number"],
.admin-form textarea {
    width: 100%;
    padding: 13px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: Arial, sans-serif;
}

.admin-form textarea {
    resize: vertical;
}

.beach-hero {
    background: linear-gradient(rgba(6,27,78,.65), rgba(6,27,78,.65)), url('../img/beach-volley.jpg');
    background-size: cover;
    background-position: center;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.admin-table th,
.admin-table td {
    padding: 14px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.admin-table th {
    background: #061b4e;
    color: #fff;
}

.admin-table tr:hover {
    background: #f4f7fb;
}
.agenda-list {
    max-width: 850px;
    margin: auto;
}

.agenda-item {
    display: flex;
    gap: 25px;
    background: #fff;
    margin-bottom: 22px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.agenda-date {
    min-width: 90px;
    text-align: center;
    background: #061b4e;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
}

.agenda-date strong {
    display: block;
    font-size: 28px;
}

.agenda-date span {
    font-size: 14px;
}

.agenda-content h3 {
    color: #061b4e;
    margin-bottom: 10px;
}

@media screen and (max-width: 650px) {
    .agenda-item {
        flex-direction: column;
    }

    .agenda-date {
        width: 100%;
    }
}
.photo-admin-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.photo-admin-card {
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    border-radius: 8px;
    overflow: hidden;
}

.photo-admin-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.photo-admin-card div {
    padding: 14px;
}

@media screen and (max-width: 900px) {
    .photo-admin-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 550px) {
    .photo-admin-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,.12);
    background: #fff;
}

.gallery-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 15px;
}

.gallery-caption strong {
    color: #061b4e;
}

@media screen and (max-width: 850px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.beach-buttons {
    text-align: center;
    margin: 30px 0;
}

.beach-buttons .btn {
    margin: 8px;
}

.beach-deadline {
    text-align: center;
    font-weight: bold;
    color: #061b4e;
}

.beach-programme {
    max-width: 850px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.beach-programme img {
    width: 100%;
    max-width: 650px;
    display: block;
    margin: 25px auto;
    border-radius: 8px;
}

.beach-text {
    font-size: 18px;
    line-height: 1.8;
}
.beach-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.beach-main {
    background: #fff;
    padding: 35px;
    border-radius: 8px;
}

.beach-main h2 {
    color: #061b4e;
    font-size: 32px;
    margin-bottom: 25px;
}

.beach-description {
    font-size: 18px;
    line-height: 1.8;
}

.beach-description p {
    margin-bottom: 18px;
}

.beach-programme-page {
    margin-top: 45px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.beach-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-box {
    background: #fff;
    padding: 22px;
    margin-bottom: 22px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.sidebar-box h3 {
    color: #061b4e;
    margin-bottom: 14px;
}

.sidebar-box a {
    color: #0b63ce;
    text-decoration: none;
}

.tag {
    display: inline-block;
    background: #f0f0f0;
    padding: 8px 12px;
    border-radius: 5px;
}

.sidebar-actions {
    display: grid;
    gap: 12px;
}

.sidebar-btn {
    display: block;
    text-align: center;
    background: #2878c9;
    color: #fff;
}

.sidebar-btn:hover {
    background: #061b4e;
}

@media screen and (max-width: 900px) {
    .beach-layout {
        grid-template-columns: 1fr;
    }

    .beach-sidebar {
        position: static;
    }
}
.menu-toggle {
    display: none;
    background: #ffcc00;
    color: #061b4e;
    border: none;
    font-size: 26px;
    font-weight: bold;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
}

@media screen and (max-width: 900px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: #061b4e;
        padding: 20px;
        z-index: 999;
    }

    .main-nav.open {
        display: block;
    }

    .main-nav a {
        display: block;
        margin: 14px 0;
        text-align: center;
    }

    .top-header {
        position: relative;
    }
}

/* =========================
   RESPONSIVE GLOBAL
========================= */

img {
    max-width: 100%;
    height: auto;
}

table {
    width: 100%;
}

.admin-table {
    overflow-x: auto;
    display: block;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.card-grid,
.photo-admin-grid,
.gallery-grid {
    gap: 20px;
}

@media screen and (max-width: 900px) {

    .section {
        padding: 50px 20px;
    }

    .hero {
        padding: 80px 20px;
        text-align: center;
    }

    .hero h1 {
        font-size: 42px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 18px;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .card-grid,
    .photo-admin-grid,
    .gallery-grid {
        grid-template-columns: 1fr !important;
    }

    .agenda-item {
        flex-direction: column;
    }

    .agenda-date {
        width: 100%;
    }

    .beach-layout {
        grid-template-columns: 1fr;
    }

    .beach-sidebar {
        position: static;
    }

    .beach-main {
        padding: 25px;
    }

    .beach-main h2 {
        font-size: 34px;
    }

    .sidebar-box {
        padding: 18px;
    }

    .beach-programme {
        padding: 20px;
    }
}

@media screen and (max-width: 600px) {

    body {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 12px;
    }

    .sidebar-actions .btn {
        width: 100%;
    }

    .beach-main h2 {
        font-size: 28px;
    }

    .beach-description {
        font-size: 16px;
    }

    .beach-text {
        font-size: 16px;
    }

    .agenda-date strong {
        font-size: 22px;
    }

    .photo-admin-card img,
    .gallery-card img {
        height: auto;
    }
}

.page-hero {
    padding: 90px 0;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.about-page-hero {
    background:
        linear-gradient(rgba(6,27,78,.45), rgba(255,204,0,.45)),
        url('/assets/img/about-hero.jpg');
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-player {
    position: relative;
    z-index: 2;
    max-height: 520px;
}

.volley-ball {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 35%, #fff 0 12%, transparent 13%),
        conic-gradient(
            #ffcc00 0deg 70deg,
            #1f5db8 70deg 140deg,
            #fff 140deg 190deg,
            #ffcc00 190deg 250deg,
            #1f5db8 250deg 320deg,
            #fff 320deg 360deg
        );
    box-shadow: 0 18px 35px rgba(0,0,0,.18);
    z-index: 1;
    animation: spinBall 8s linear infinite;
}

@keyframes spinBall {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.about-text h2 {
    color: #061b4e;
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 18px;
}

.about-feature {
    display: flex;
    gap: 18px;
    margin: 25px 0;
}

.about-feature span {
    font-size: 34px;
}

.about-feature h3 {
    color: #2878c9;
    margin-bottom: 5px;
}

.staff-section {
    background: #f6f8fb;
}

.staff-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
}

.staff-card {
    text-align: center;
}

.staff-card img {
    width: 190px;
    height: 190px;
    object-fit: cover;
    border-radius: 50%;
    background: #dff5ff;
    border: 3px solid #bdefff;
}

.staff-card div {
    background: #2878c9;
    color: #fff;
    margin-top: -35px;
    padding: 45px 15px 20px;
    border-radius: 0 0 45px 45px;
}

.staff-card h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.staff-card p {
    font-size: 14px;
}

@media screen and (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: 380px;
    }

    .volley-ball {
        width: 260px;
        height: 260px;
    }

    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .staff-grid {
        grid-template-columns: 1fr;
    }

    .about-text h2 {
        font-size: 28px;
    }
}

.home-intro {
    padding-top: 90px;
}

.home-team-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
}

.home-team-card {
    position: relative;
    width: 210px;
    height: 330px;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 8px 25px rgba(0,0,0,.12);
    border: 4px solid #2878c9;
}

.home-team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(6,27,78,.25), rgba(6,27,78,.7));
    color: #fff;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
}

.home-team-overlay h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.home-events {
    background: #fff;
}

.home-prices {
    background: #f6f8fb;
}

@media screen and (max-width: 700px) {
    .home-team-card {
        width: 100%;
        max-width: 280px;
    }
}
.btn-yellow {
    background: #ffcc00;
    color: #061b4e;
    font-weight: bold;
}

.btn-yellow:hover {
    background: #e6b800;
    color: #061b4e;
}

.footer-logo img {
    height: 70px;
    width: auto;
    margin-bottom: 15px;
}
.equipes-page-hero {
    background:
        linear-gradient(rgba(6,27,78,.65), rgba(6,27,78,.65)),
        url('/assets/img/hero-volley.jpg');
    background-size: cover;
    background-position: center;
}

.equipes-intro {
    background: #fff;
}

.team-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.team-nav a {
    background: #061b4e;
    color: #fff;
    padding: 10px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
}

.team-nav a:hover {
    background: #ffcc00;
    color: #061b4e;
}

.team-detail {
    background: #fff;
}

.team-alt {
    background: #f6f8fb;
}

.team-detail-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 50px;
    align-items: center;
}

.team-alt .team-image {
    order: 2;
}

.team-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,.15);
    border: 5px solid #2878c9;
}

.team-info h2 {
    color: #061b4e;
    font-size: 38px;
    margin-bottom: 18px;
}

.team-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.team-tabs span {
    background: #ffcc00;
    color: #061b4e;
    padding: 8px 14px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

.team-meta {
    background: #f4f7fb;
    border-left: 5px solid #2878c9;
    padding: 18px;
    margin-bottom: 22px;
    border-radius: 8px;
}

.team-meta p,
.team-description p,
.team-box p {
    margin-bottom: 10px;
}

.team-box {
    margin: 22px 0;
    padding: 20px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
}

.team-box h3 {
    color: #2878c9;
    margin-bottom: 10px;
}

@media screen and (max-width: 900px) {
    .team-detail-grid {
        grid-template-columns: 1fr;
    }

    .team-alt .team-image {
        order: 0;
    }

    .team-image img {
        height: auto;
    }

    .team-info h2 {
        font-size: 30px;
    }
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}

.partner-card {
    background: #fff;
    padding: 28px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    text-align: center;
}

.partner-card img {
    max-width: 180px;
    max-height: 110px;
    object-fit: contain;
    margin-bottom: 20px;
}

.partner-card h3 {
    color: #061b4e;
    margin-bottom: 10px;
}

@media screen and (max-width: 900px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 550px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

.home-news {
    background: #f6f8fb;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.news-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,.1);
}

.news-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.news-content {
    padding: 24px;
}

.news-date {
    display: inline-block;
    color: #2878c9;
    font-weight: bold;
    margin-bottom: 10px;
}

.news-content h3 {
    color: #061b4e;
    margin-bottom: 12px;
}

.news-content p {
    margin-bottom: 18px;
}

@media screen and (max-width: 900px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}
.news-detail {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.news-detail-image img {
    width: 100%;
    height: auto;
    max-height: 900px;
    object-fit: contain;
    border-radius: 12px;
    display: block;
}

.news-detail-content {
    font-size: 18px;
    line-height: 1.8;
}

.news-detail-content p {
    margin-bottom: 18px;
}

.home-teams-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.home-team-card {
    position: relative;
    height: 340px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.home-team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.home-team-card:hover img {
    transform: scale(1.08);
}

.home-team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(6,27,78,.95),
        rgba(6,27,78,.25)
    );

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 25px;
    color: white;
}

.home-team-overlay h3 {
    color: white;
    margin-bottom: 10px;
}

.home-team-overlay p {
    margin-bottom: 15px;
}

.home-team-overlay .btn {
    width: fit-content;
}
.home-teams-modern {
    background: #f6f8fb;
}

.modern-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.modern-team-card {
    position: relative;
    height: 300px;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0,0,0,.14);
}

.modern-team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.modern-team-card:hover img {
    transform: scale(1.08);
}

.modern-team-overlay {
    position: absolute;
    inset: 0;
    padding: 28px;
    color: #fff;
    background: linear-gradient(
        to top,
        rgba(6,27,78,.95),
        rgba(6,27,78,.25)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.modern-team-overlay span {
    display: inline-block;
    width: fit-content;
    background: #ffcc00;
    color: #061b4e;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    font-size: 13px;
}

.modern-team-overlay h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.modern-team-overlay p {
    font-size: 16px;
    line-height: 1.4;
}

@media screen and (max-width: 950px) {
    .modern-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 650px) {
    .modern-team-grid {
        grid-template-columns: 1fr;
    }

    .modern-team-card {
        height: 260px;
    }
}

.home-partners {
    background: #fff;
}

.partners-slider {
    overflow: hidden;
    background: #f6f8fb;
    border-radius: 14px;
    padding: 25px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.partners-track {
    display: flex;
    width: max-content;
    animation: partnersScroll 28s linear infinite;
}

.partner-slide {
    width: 220px;
    height: 120px;
    margin: 0 18px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    box-shadow: 0 4px 14px rgba(0,0,0,.06);
}

.partner-slide img {
    max-width: 170px;
    max-height: 80px;
    object-fit: contain;
}

.partner-slide a {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes partnersScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.partners-slider:hover .partners-track {
    animation-play-state: paused;
}

@media screen and (max-width: 650px) {
    .partner-slide {
        width: 170px;
        height: 100px;
    }

    .partner-slide img {
        max-width: 130px;
        max-height: 65px;
    }
}
.cotisations-section {
    background: #f6f8fb;
}

.cotisations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.cotisation-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.cotisation-top {
    background: #061b4e;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}

.cotisation-top h3 {
    color: #fff;
    margin-bottom: 15px;
}

.cotisation-price {
    font-size: 42px;
    font-weight: bold;
    color: #ffcc00;
}

.cotisation-content {
    padding: 25px;
}

.cotisations-infos {
    margin-top: 50px;
}

.cotisation-box {
    background: #e7f5e3;
    border-left: 5px solid #56b45d;
    padding: 30px;
    border-radius: 10px;
    line-height: 1.9;
    margin-top: 25px;
}

.cotisation-extra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 35px;
}

.cotisation-extra-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

.cotisation-extra-card h3 {
    margin-bottom: 15px;
    color: #061b4e;
}

@media screen and (max-width: 950px) {

    .cotisations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cotisation-extra-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 650px) {

    .cotisations-grid {
        grid-template-columns: 1fr;
    }
}

.cotisation-info-highlight {
    background: #fff8dc;
    border-left: 5px solid #ffcc00;
    padding: 22px 28px;
    border-radius: 10px;
    margin-top: 22px;
    box-shadow: 0 6px 18px rgba(0,0,0,.05);
}

.cotisation-info-highlight h3 {
    color: #061b4e;
    margin-bottom: 12px;
}

.cotisation-info-highlight p {
    line-height: 1.8;
}

.agenda-filters {
    display: flex;
    gap: 18px;
    align-items: end;
    justify-content: center;
    flex-wrap: wrap;
    background: #f6f8fb;
    padding: 25px;
    border-radius: 14px;
    margin-bottom: 40px;
}

.agenda-filters p {
    margin: 0;
}

.agenda-filters label {
    display: block;
    font-weight: bold;
    color: #061b4e;
    margin-bottom: 6px;
}

.agenda-filters input,
.agenda-filters select {
    padding: 12px;
    min-width: 220px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.agenda-month-title {
    text-align: center;
    margin-bottom: 35px;
}

.agenda-month-title h2 {
    color: #061b4e;
    font-size: 34px;
}

.agenda-list-modern {
    max-width: 950px;
    margin: auto;
}

.agenda-card-modern {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 25px;
    background: #fff;
    border-radius: 14px;
    padding: 25px;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.agenda-card-date {
    background: #061b4e;
    color: #fff;
    border-radius: 12px;
    text-align: center;
    padding: 18px 10px;
    height: fit-content;
}

.agenda-card-date span {
    display: block;
    font-size: 42px;
    font-weight: bold;
    color: #ffcc00;
}

.agenda-card-date small {
    font-size: 14px;
}

.agenda-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.agenda-badges span {
    background: #ffcc00;
    color: #061b4e;
    padding: 5px 10px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: bold;
}

.agenda-card-content h3 {
    color: #061b4e;
    margin-bottom: 12px;
}

@media screen and (max-width: 700px) {
    .agenda-card-modern {
        grid-template-columns: 1fr;
    }

    .agenda-card-date {
        width: 100%;
    }

    .agenda-filters input,
    .agenda-filters select {
        width: 100%;
        min-width: auto;
    }
}
.match-teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 18px;
    align-items: center;
    margin: 18px 0;
    padding: 18px;
    background: #f6f8fb;
    border-radius: 12px;
}

.match-team {
    text-align: center;
    font-weight: bold;
    color: #061b4e;
}

.match-team img {
    height: 58px;
    max-width: 90px;
    object-fit: contain;
    display: block;
    margin: 0 auto 8px;
}

.match-vs {
    background: #ffcc00;
    color: #061b4e;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 50px;
}

@media screen and (max-width: 600px) {
    .match-teams {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .match-vs {
        width: fit-content;
        margin: auto;
    }
}

.match-display {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    gap: 25px;
    margin: 25px 0;
    background: #f6f8fb;
    padding: 22px;
    border-radius: 14px;
}

.team-block {
    text-align: center;
    font-weight: bold;
    color: #061b4e;
}

.team-block img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    display: block;
    margin: 0 auto 10px;
}

.vs-block {
    background: #ffcc00;
    color: #061b4e;
    font-weight: bold;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

@media screen and (max-width: 700px) {
    .match-display {
        grid-template-columns: 1fr;
    }
}

.agenda-match-box {
    width: 100%;
    display: grid !important;
    grid-template-columns: 1fr 90px 1fr !important;
    align-items: center !important;
    gap: 25px;
    margin: 25px 0;
    padding: 25px;
    background: #f6f8fb;
    border-radius: 16px;
}

.agenda-match-team {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    color: #061b4e;
}

.agenda-match-team img {
    width: 90px !important;
    height: 90px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto 12px auto !important;
}

.agenda-match-team strong {
    display: block;
    font-size: 16px;
    line-height: 1.35;
}

.agenda-match-vs {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ffcc00;
    color: #061b4e;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: auto;
}

@media screen and (max-width: 700px) {
    .agenda-match-box {
        grid-template-columns: 1fr !important;
    }

    .agenda-match-vs {
        margin: 10px auto;
    }
}

.news-detail-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.news-detail-content li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.news-detail-content h2 {
    color: #061b4e;
    margin-bottom: 18px;
}

.news-detail-content a {
    color: #2878c9;
    font-weight: bold;
}

.menu-membres {
    margin-left: auto;
}

.menu-membres a {
    color: #ffffff;
    font-weight: bold;
    text-decoration: underline;
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-membres a:hover {
    color: #ffd400;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}
header nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    width: 100%;
}

header nav {
    flex: 1;
}

.menu-membres {
    margin-left: auto !important;
}

.menu-membres a {
    text-decoration: underline !important;
    font-weight: bold;
}

.header .container,
.site-header .container,
header .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
}

header nav {
    flex: 1 !important;
}

header nav ul {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-wrap: nowrap !important;
    gap: 24px !important;
    list-style: none !important;
}

header nav ul li {
    white-space: nowrap !important;
}

.menu-membres {
    margin-left: 30px !important;
    order: 99 !important;
}

.menu-membres a {
    text-decoration: underline !important;
    font-weight: bold !important;
}

header nav ul {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    flex-wrap: nowrap;
}

.dropdown-menu {
    position: relative;
}

.dropdown-content {
    display: none !important;
    position: absolute;
    right: 0;
    top: 100%;
    background: #061b4e;
    min-width: 210px;
    padding: 12px 0;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
    z-index: 9999;
}

.dropdown-content li {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 12px 18px;
    color: #fff;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background: #ffcc00;
    color: #061b4e;
}

.dropdown-menu:hover .dropdown-content {
    display: block !important;
}

.header-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.logo img {
    height: 60px !important;
    width: auto !important;
    display: block !important;
}

.main-menu {
    display: flex !important;
    align-items: center !important;
    gap: 28px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.main-menu > li {
    position: relative;
    white-space: nowrap;
}

.main-menu > li > a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

.dropdown-menu {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    background: #061b4e !important;
    min-width: 230px !important;
    padding: 12px 0 !important;
    list-style: none !important;
    z-index: 99999 !important;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 12px 25px rgba(0,0,0,.25);
}

.dropdown:hover .dropdown-menu {
    display: block !important;
}

.dropdown-menu li {
    display: block !important;
}

.dropdown-menu li a {
    display: block !important;
    padding: 12px 18px !important;
    color: #fff !important;
    text-decoration: none !important;
}

.dropdown-menu li a:hover {
    background: #ffcc00 !important;
    color: #061b4e !important;
}

.site-header {
    background: #061b4e !important;
    width: 100%;
    z-index: 9999;
}

.site-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.site-logo img {
    height: 65px !important;
    width: auto !important;
    display: block !important;
}

.site-nav > ul {
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.site-nav li {
    list-style: none !important;
    position: relative;
}

.site-nav a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 15px;
    white-space: nowrap;
}

.site-nav a:hover,
.site-nav .beach-link {
    color: #ffcc00 !important;
}

.site-dropdown > ul {
    display: none !important;
    position: absolute !important;
    right: 0;
    top: 100%;
    background: #061b4e;
    min-width: 230px;
    padding: 10px 0 !important;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 12px 25px rgba(0,0,0,.25);
    z-index: 99999;
}

.site-dropdown:hover > ul {
    display: block !important;
}

.site-dropdown > ul li a {
    display: block !important;
    padding: 12px 18px !important;
}

.site-dropdown > ul li a:hover {
    background: #ffcc00 !important;
    color: #061b4e !important;
}
.classement-table-wrapper {
    overflow-x: auto;
}

.classement-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.classement-table thead {
    background: #061b4e;
    color: #ffffff;
}

.classement-table th,
.classement-table td {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid #eeeeee;
}

.club-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.club-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.hermalle-row {
    background: #fff7d6 !important;
    font-weight: bold;
}

.points-cell {
    font-size: 20px;
    font-weight: bold;
    color: #061b4e;
}