
    .poissopedia-hero {
        position: relative;
        width: 100%;
        height: 40vh;
        min-height: 350px;
        max-height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background: linear-gradient(180deg, #0B3C5D 0%, #1565A0 50%, #1CA7EC 100%);
        margin-bottom: 0;
        padding-bottom: 100px;
    }

    .poissopedia-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url("../images/fond-peche1.webp");
        background-size: cover;
        background-position: center;
        opacity: 0.25;
        animation: subtle-zoom 20s ease-in-out infinite alternate;
        z-index: 0;
    }

    .poissopedia-hero::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 150px;
        background: linear-gradient(to bottom, transparent, rgba(11, 60, 93, 0.7));
        z-index: 1;
    }

    @keyframes subtle-zoom {
        from {
            transform: scale(1);
        }

        to {
            transform: scale(1.05);
        }
    }

    .hero-content-wrapper {
        position: relative;
        z-index: 10;
        text-align: center;
        padding: 0 20px;
        max-width: 900px;
    }

    .hero-title-main {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2.5rem, 8vw, 5rem);
        font-weight: 900;
        color: #fff;
        margin: 0 0 15px 0;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        letter-spacing: 2px;
        animation: fade-in-up 1s ease-out;
        text-transform: uppercase;
    }

    .hero-subtitle-main {
        font-family: 'Inter', sans-serif;
        font-size: clamp(0.9rem, 2.5vw, 1.2rem);
        font-weight: 300;
        color: rgba(255, 255, 255, 0.95);
        margin: 0 0 30px 0;
        letter-spacing: 1px;
        animation: fade-in-up 1.2s ease-out;
    }

    .hero-search-bar {
        position: relative;
        max-width: 600px;
        margin: 0 auto;
        animation: fade-in-up 1.4s ease-out;
    }

    .hero-search-input {
        width: 100%;
        padding: 18px 60px 18px 25px;
        font-size: 1rem;
        border: none;
        border-radius: 50px;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }

    .hero-search-input:focus {
        outline: none;
        background: #fff;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
        transform: translateY(-2px);
    }

    .hero-search-btn {
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        background: linear-gradient(135deg, #1CA7EC, #0B7BBE);
        border: none;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        color: white;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .hero-search-btn:hover {
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 5px 20px rgba(28, 167, 236, 0.5);
    }

    .hero-wave {
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
        z-index: 5;
        pointer-events: none;
    }

    .hero-wave svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 120px;
    }

    .hero-wave .shape-fill {
        fill: var(--background-light, #FFFFFF);
    }

    body.dark-mode .hero-wave .shape-fill {
        fill: var(--background-dark, #192026);
    }

    @keyframes fade-in-up {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .poissopedia-filters {
        padding: 80px 20px 20px;
        text-align: center;
        max-width: 1400px;
        margin: -60px auto 0;
        position: relative;
        z-index: 10;
    }

    body.dark-mode .poissopedia-filters {
        background: transparent;
    }

    .filter-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
        max-width: 800px;
        margin: 0 auto 30px;
    }

    .filter-btn {
        padding: 12px 28px;
        border: 2px solid #1CA7EC;
        background: transparent;
        color: #0B3C5D;
        border-radius: 30px;
        font-weight: 500;
        font-size: 15px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: 'Inter', sans-serif;
    }

    .filter-btn:hover {
        background: #E3F4FC;
        transform: translateY(-2px);
    }

    .filter-btn.active {
        background: linear-gradient(135deg, #1CA7EC, #0B7BBE);
        color: white;
        border-color: #1CA7EC;
        box-shadow: 0 4px 15px rgba(28, 167, 236, 0.3);
    }

    body.dark-mode .filter-btn {
        color: #E0E0E0;
        border-color: #1CA7EC;
    }

    body.dark-mode .filter-btn:hover {
        background: rgba(28, 167, 236, 0.15);
    }

    .poissopedia-species-section {
        padding: 0 20px 80px;
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        z-index: 10;
    }

    .species-grid {
        margin-top: 0;
        position: relative;
        z-index: 10;
    }

    .fish-card-elegant {
        position: relative;
        background: var(--card-light, #FFFFFF);
        border-radius: 20px;
        overflow: visible;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
        text-decoration: none;
        color: inherit;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .fish-card-elegant:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

    body.dark-mode .fish-card-elegant {
        background: var(--card-dark, #2D443C);
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    }

    body.dark-mode .fish-card-elegant:hover {
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    }

    .fish-card-image-container {
        position: relative;
        height: 220px;
        overflow: hidden;
        border-radius: 20px 20px 0 0;
        background: linear-gradient(135deg, #E3F4FC 0%, #B8E1F5 100%);
    }

    body.dark-mode .fish-card-image-container {
        background: linear-gradient(135deg, #1e3a44 0%, #0B3C5D 100%);
    }

    .fish-card-image-main {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        object-fit: cover;
        transform: scale(1);
        transition: transform 0.4s ease;
        filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
        z-index: 2;
    }

    .fish-card-elegant:hover .fish-card-image-main {
        transform: scale(1.08);
    }

    .fish-card-badge-habitat {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(255, 255, 255, 0.95);
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        color: #1CA7EC;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
        z-index: 3;
    }

    body.dark-mode .fish-card-badge-habitat {
        background: rgba(45, 68, 60, 0.95);
        color: #6DD5FA;
    }

    .fish-card-body-content {
        padding: 25px 20px;
        position: relative;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .fish-card-name-title {
        font-family: 'Playfair Display', serif;
        font-size: 1.6rem;
        font-weight: 700;
        color: #0B3C5D;
        margin: 0 0 8px 0;
        line-height: 1.3;
    }

    body.dark-mode .fish-card-name-title {
        color: #E0F2F7;
    }

    .fish-card-scientific-name {
        font-family: 'Inter', sans-serif;
        font-size: 0.95rem;
        font-style: italic;
        color: #7A7A7A;
        margin: 0 0 15px 0;
    }

    body.dark-mode .fish-card-scientific-name {
        color: #A0A0A0;
    }

    .fish-card-description-text {
        font-family: 'Inter', sans-serif;
        font-size: 0.9rem;
        line-height: 1.6;
        color: #555;
        margin: 0 0 20px 0;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    body.dark-mode .fish-card-description-text {
        color: #C0C0C0;
    }

    .fish-card-meta-tags {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin-bottom: 20px;
        margin-top: auto;
    }

    .fish-meta-tag {
        padding: 5px 12px;
        background: #F0F9FF;
        color: #0B7BBE;
        border-radius: 15px;
        font-size: 12px;
        font-weight: 500;
    }

    body.dark-mode .fish-meta-tag {
        background: rgba(28, 167, 236, 0.15);
        color: #6DD5FA;
    }

    .fish-card-cta-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #1CA7EC;
        font-weight: 600;
        font-size: 14px;
        transition: gap 0.3s ease;
        padding-top: 15px;
        border-top: 1px solid #f1f5f9;
        width: 100%;
    }

    body.dark-mode .fish-card-cta-link {
        color: #6DD5FA;
        border-top-color: rgba(255, 255, 255, 0.05);
    }

    .fish-card-elegant:hover .fish-card-cta-link {
        gap: 12px;
    }

    .fish-card-container {
        opacity: 0;
        transform: translateY(40px);
    }

    .fish-card-container.animate-in {
        animation: slide-up 0.6s ease forwards;
    }

    @keyframes slide-up {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .no-results-message {
        text-align: center;
        padding: 60px 20px;
        font-family: 'Inter', sans-serif;
        color: #666;
    }

    body.dark-mode .no-results-message {
        color: #A0A0A0;
    }

    .no-results-icon {
        font-size: 4rem;
        color: #1CA7EC;
        margin-bottom: 20px;
    }

    .no-results-text {
        font-size: 1.2rem;
        font-weight: 500;
    }

    @media (max-width: 600px) {
        .poissopedia-filters {
            padding: 50px 12px 16px;
        }

        .filter-buttons {
            gap: 8px;
            margin-bottom: 20px;
        }

        .filter-btn {
            padding: 8px 16px;
            font-size: 13px;
            border-radius: 22px;
        }
    }
