.hero-bases {
    background: linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.72)),
                url('img/vocabulaire.jpg') center/cover no-repeat;
    padding: clamp(50px,9vw,90px) 0; text-align: center;
}
.hero-bases h1 { font-size: clamp(1.8rem,5vw,3.5rem); font-weight:700; }
.hero-bases p  { font-size: clamp(1rem,2vw,1.2rem); color:#cbd5e1; }
.bases-section { margin-bottom:60px; }
.bases-section-title {
    font-size: clamp(1.3rem,3vw,1.8rem); font-weight:700;
    border-left:5px solid #dc2626; padding-left:16px;
    margin-bottom:28px; color:#fff;
}

/* Grille animaux */
.animal-grid {
    display:grid;
    grid-template-columns: repeat(auto-fill, minmax(160px,1fr));
    gap:16px;
}
.animal-card {
    background:#1e293b; border-radius:18px; overflow:hidden;
    border:1px solid rgba(255,255,255,.07);
    transition:transform .2s, box-shadow .2s;
    text-align:center;
}
.animal-card:hover { transform:translateY(-5px); box-shadow:0 12px 28px rgba(0,0,0,.5); }

.animal-img-wrap {
    height:130px; display:flex; align-items:center; justify-content:center;
    background:#162032;
}
.animal-img-wrap img {
    max-height:110px; max-width:90%; object-fit:contain;
}
.animal-emoji {
    font-size:4.5rem; line-height:1; user-select:none;
}
.animal-info { padding:12px 12px 16px; }
.animal-fr   { font-size:.95rem; font-weight:700; color:#f1f5f9; margin-bottom:3px; }
.animal-jp   { font-family:'Noto Sans JP',sans-serif; font-size:1.25rem; color:#f87171; font-weight:700; margin-bottom:2px; }
.animal-kanji{ font-family:'Noto Sans JP',sans-serif; font-size:.85rem; color:#94a3b8; margin-bottom:6px; }
.animal-romaji{ font-size:.78rem; color:#cbd5e1; background:#0f172a; border-radius:8px; padding:3px 10px; display:inline-block; }

.memo-bloc {
    background:#0f172a; border-left:5px solid #dc2626;
    border-radius:0 12px 12px 0; padding:14px 18px;
    margin-bottom:22px; font-size:.93rem; color:#cbd5e1; line-height:1.8;
}
.memo-bloc strong { color:#f87171; }

/* Tableau phrases */
.table-bases { width:100%; border-collapse:separate; border-spacing:0; border-radius:16px; overflow:hidden; }
.table-bases thead tr { background:#dc2626; }
.table-bases thead th { padding:12px 16px; color:#fff; font-weight:700; font-size:.88rem; text-align:left; border:none; }
.table-bases tbody tr { background:#1e293b; transition:background .15s; }
.table-bases tbody tr:nth-child(even) { background:#162032; }
.table-bases tbody tr:hover { background:#27374d; }
.table-bases td { padding:10px 16px; color:#e2e8f0; font-size:.93rem; border-top:1px solid rgba(255,255,255,.05); }
.table-bases td.jp { font-family:'Noto Sans JP',sans-serif; font-size:1.1rem; color:#f87171; font-weight:600; }
.table-bases td.romaji { color:#94a3b8; font-size:.85rem; }
