.new-rocker-regular {
    font-family: "New Rocker", system-ui;
    font-weight: 400;
    font-style: normal;
}

body {
    background-image: url('img/background.jpg');
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Texturina', serif;
    padding: 120px 2rem 2rem;
    min-height: 100vh;
    color: #e0e0e0;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

.centered-popup {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    gap: 4vh;
    align-items: center;
    justify-content: center;
}

.popup {
    background-color: rgb(36 9 2 / 0.9);
    padding: 80px 20px;
    border: solid 4px;
    border-color: black;
    border-radius: 5px;
    color: white !important;
}

.comphero {
    background-color: rgb(90 78 76 / 0.92);
    border: solid;
    border-color: #1E1E1E;
    border-radius: 25px;
    border-width: 8px;
}


nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
    box-sizing: border-box;
}

nav + nav {
    top: 116px;
    z-index: 1000;
}

nav .list-group-item {
    background: transparent !important;
    border: none !important;
}

.dropbtn {
    background-color: #240902;
    color: white;
    padding: 16px;
    font-size: 16px;
    font-family: 'New Rocker', system-ui;
    border: none;
}

nav a {
    font-family: 'New Rocker', system-ui;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #240902;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    filter: drop-shadow(0 0 20px #000000);
}

.dropdown-content a {
    color: #e0e0e0;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #620D14;
    color: #fff;
}

.dropdown:hover .dropdown-content {
    display: block;
}


.forum-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.forum-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.forum-header h1 {
    font-family: 'New Rocker', system-ui;
    font-size: 2.2rem;
    color: #fff;
    text-shadow: 2px 2px 6px #000;
    margin: 0;
}

.btn-forum-new {
    background: #620D14;
    color: #fff;
    border: 2px solid #8b1a1a;
    border-radius: 6px;
    padding: .5rem 1.2rem;
    font-family: 'New Rocker', system-ui;
    font-size: .95rem;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s;
}
.btn-forum-new:hover { background: #8b1a1a; color: #fff; }

.post-card {
    display: flex;
    gap: 0;
    background: rgb(36 9 2 / 0.88);
    border: 1px solid #3d0d0d;
    border-radius: 6px;
    margin-bottom: .8rem;
    overflow: hidden;
    transition: border-color .2s;
}
.post-card:hover { border-color: #620D14; }

.vote-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: .8rem .6rem;
    background: rgb(26 4 2 / 0.6);
    min-width: 52px;
    gap: .15rem;
}

.vote-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    padding: .15rem .3rem;
    border-radius: 3px;
    transition: color .15s, background .15s;
}
.vote-btn.up   { color: #aaa; }
.vote-btn.down { color: #aaa; }
.vote-btn.up:hover,   .vote-btn.up.active   { color: #ff6314; }
.vote-btn.down:hover, .vote-btn.down.active { color: #6ca0dc; }

.vote-score {
    font-family: 'New Rocker', system-ui;
    font-size: .95rem;
    color: #ddd;
    min-width: 1.5rem;
    text-align: center;
}

.post-body {
    flex: 1;
    padding: .75rem 1rem;
}

.post-title {
    font-family: 'New Rocker', system-ui;
    font-size: 1.15rem;
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: .3rem;
}
.post-title:hover { color: #e8a87c; text-decoration: none; }

.post-meta {
    font-size: .78rem;
    color: #888;
}
.post-meta a       { color: #aaa; text-decoration: none; }
.post-meta a:hover { color: #e8a87c; }

.post-comments {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .82rem;
    color: #888;
    margin-top: .4rem;
}
.post-comments:hover { color: #ccc; text-decoration: none; }

.form-card {
    background: rgb(36 9 2 / 0.92);
    border: 2px solid #620D14;
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.form-card h2 {
    font-family: 'New Rocker', system-ui;
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}
.form-card input,
.form-card textarea {
    width: 100%;
    background: #1a0a05;
    border: 1px solid #620D14;
    color: #fff;
    border-radius: 4px;
    padding: .6rem .8rem;
    font-family: 'Texturina', serif;
    font-size: .95rem;
    margin-bottom: .8rem;
    box-sizing: border-box;
}
.form-card input:focus,
.form-card textarea:focus {
    outline: none;
    border-color: #c0392b;
}
.form-card textarea { min-height: 100px; resize: vertical; }

.post-full {
    background: rgb(36 9 2 / 0.92);
    border: 1px solid #3d0d0d;
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.post-full-title {
    font-family: 'New Rocker', system-ui;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: .5rem;
}
.post-full-content {
    white-space: pre-wrap;
    color: #ccc;
    line-height: 1.6;
    margin: 1rem 0;
}
.post-vote-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-top: .8rem;
}

.comments-section { margin-top: 1.5rem; }
.comments-section h2 {
    font-family: 'New Rocker', system-ui;
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.comment-card {
    background: rgb(26 4 2 / 0.75);
    border-left: 3px solid #620D14;
    border-radius: 0 4px 4px 0;
    padding: .75rem 1rem;
    margin-bottom: .7rem;
}
.comment-author {
    font-size: .8rem;
    color: #e8a87c;
    font-family: 'New Rocker', system-ui;
    margin-bottom: .3rem;
}
.comment-text { color: #ccc; font-size: .92rem; white-space: pre-wrap; }

.btn-msg-vote {
    background: none !important;
    border: 1px solid #3d1a1a !important;
    color: #7a3a3a !important;
    font-size: .72rem;
    cursor: pointer;
    padding: .1rem .4rem !important;
    border-radius: 3px;
    font-family: 'Texturina', serif;
    line-height: 1.4;
    transition: color .15s, border-color .15s;
    box-shadow: none !important;
}
.btn-msg-vote:hover { color: #c0392b !important; border-color: #620D14 !important; }
.btn-msg-vote.liked { color: #c0392b !important; border-color: #620D14 !important; }

.post-actions {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-top: .4rem;
}
.post-actions form { margin: 0; }

.btn-edit {
    font-size: .78rem;
    color: #9a7a3a !important;
    text-decoration: none;
    font-family: 'Texturina', serif;
    transition: color .15s;
}
.btn-edit:hover { color: #c9a84c !important; text-decoration: underline; }

.btn-delete {
    background: none !important;
    border: 1px solid #7a2020 !important;
    color: #c0392b !important;
    font-size: .75rem;
    cursor: pointer;
    padding: .2rem .6rem !important;
    border-radius: 4px;
    font-family: 'Texturina', serif;
    line-height: 1.4;
    transition: background .15s, color .15s;
    box-shadow: none !important;
}
.btn-delete:hover {
    background: #7a2020 !important;
    color: #fff !important;
    border-color: #7a2020 !important;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    color: #aaa;
    text-decoration: none;
    font-size: .88rem;
    margin-bottom: 1rem;
}
.back-link:hover { color: #fff; }



.nl-card {
    background: rgb(36 9 2 / 0.90);
    border: 1px solid #3d0d0d;
    border-left: 4px solid #620D14;
    border-radius: 6px;
    padding: 1.4rem 1.6rem;
    margin-bottom: 1.2rem;
    transition: border-color .2s;
}
.nl-card:hover { border-color: #8b1a1a; border-left-color: #c0392b; }

.nl-header    { margin-bottom: .8rem; }

.nl-title {
    font-family: 'New Rocker', system-ui;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: .3rem;
}

.nl-meta {
    font-size: .78rem;
    color: #888;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .3rem;
}
.nl-meta strong { color: #e8a87c; }
.nl-meta form   { margin: 0; }

.nl-content {
    color: #ccc;
    font-size: .95rem;
    line-height: 1.7;
    border-top: 1px solid #3d0d0d;
    padding-top: .8rem;
    margin-top: .4rem;
}



h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 6px #000;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    background: rgb(36 9 2 / 0.92);
    padding: 1rem 1.2rem;
    border: solid 3px black;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    align-items: flex-end;
    color: #fff;
}

.filters label {
    font-size: .85rem;
    color: #ddd;
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.filters input,
.filters select {
    background: #1a0a05;
    border: 2px solid #620D14;
    color: #fff;
    border-radius: 4px;
    padding: .4rem .7rem;
    font-size: .85rem;
    font-family: 'New Rocker', system-ui;
    outline: none;
}

.filters input:focus,
.filters select:focus { border-color: #c0392b; }

.filters select option { background: #240902; color: #fff; }

.btn-reset {
    padding: .45rem 1rem;
    border-radius: 5px;
    border: 2px solid #620D14;
    cursor: pointer;
    font-size: .88rem;
    font-family: 'New Rocker', system-ui;
    background: #240902;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.btn-reset:hover { background: #620D14; color: #fff; }

.meta {
    font-size: .88rem;
    color: #ccc;
    margin-bottom: .8rem;
}

.wrap {
    overflow-x: auto;
    border: 1px solid #620D14;
    border-radius: 8px;
    background: rgb(14 3 1 / 0.95);
    box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.table { color: #e0e0e0 !important; margin-bottom: 0; --bs-table-bg: transparent; }

.table tbody tr { background-color: transparent !important; transition: background-color .12s; }

.table thead th {
    background: linear-gradient(to bottom, #5a0f14, #3d0d0d) !important;
    color: #fff !important;
    border-color: #620D14 !important;
    font-family: 'New Rocker', system-ui;
    font-size: .88rem;
    white-space: nowrap;
    letter-spacing: .05em;
    padding: .75rem 1rem;
}

.table-striped-columns > tbody > tr > td,
.table-striped-columns > tbody > tr > th {
    background-color: transparent !important;
}

.table > tbody > tr                    { border-top: 1px solid rgba(98,13,20,.35); }
.table tbody tr:nth-child(odd) td,
.table tbody tr:nth-child(odd) th      { background-color: rgba(98,13,20,.07) !important; }
.table > tbody > tr:hover > td {
    background-color: rgba(98,13,20,.3) !important;
    color: #fff !important;
}

.table td, .table th {
    border-color: rgba(98,13,20,.3) !important;
    color: #e0e0e0 !important;
    vertical-align: middle;
    padding: .65rem 1rem;
}

.table td span[style*="background-color"] {
    display: inline-block;
    padding: .15rem .6rem;
    border-radius: 4px;
    color: #fff;
    font-size: .8rem;
    font-family: 'New Rocker', system-ui;
}

.action-pill {
    display: inline-block;
    padding: .2rem .65rem;
    border-radius: 4px;
    font-size: .8rem;
    font-weight: 700;
    color: #fff;
    font-family: 'New Rocker', system-ui;
}

.page {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #ffb86c;
    font-family: monospace;
    font-size: .82rem;
}

.detail {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #ddd;
}

.empty {
    text-align: center;
    padding: 3rem;
    color: #aaa;
}

.pagination {
    display: flex;
    gap: .35rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.2rem;
    height: 2.2rem;
    padding: 0 .6rem;
    border-radius: 4px;
    font-size: .9rem;
    text-decoration: none;
    font-family: 'New Rocker', system-ui;
}

.pagination a             { background: rgb(36 9 2 / 0.9); color: #fff; border: 2px solid #620D14; }
.pagination a:hover       { background: #620D14; color: #fff; }
.pagination .cur          { background: #620D14; color: #fff; font-weight: 700; border: 2px solid #8b1a1a; }
.pagination .disabled     { color: #666; cursor: default; }

.status-options {
    display: flex;
    gap: .8rem;
    align-items: center;
    flex-wrap: wrap;
}

.status-option {
    display: flex;
    align-items: center;
    gap: .3rem;
    cursor: pointer;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.2rem;
}


.table-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.member-card {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem 0;
    border-bottom: 1px solid rgba(98,13,20,.2);
}
.member-card:last-child { border-bottom: none; }

.invite-code {
    font-family: monospace;
    background: #1a0a05;
    border: 1px solid #620D14;
    padding: .2rem .5rem;
    border-radius: 4px;
    letter-spacing: .1rem;
    color: #e8a87c;
    font-size: .8rem;
}

.dashboard { max-width: 1200px; width: 100%; margin: 0 auto; padding: 0 1rem; }

.dash-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: rgb(36 9 2 / 0.88);
    border: 1px solid #3d0d0d;
    border-radius: 8px;
    padding: 1.2rem;
    text-align: center;
    transition: border-color .2s;
}
.stat-card:hover { border-color: #620D14; }
.stat-card .stat-value {
    font-family: 'New Rocker', system-ui;
    font-size: 2.2rem;
    color: #e8a87c;
    display: block;
}
.stat-card .stat-label {
    font-size: .85rem;
    color: #aaa;
    margin-top: .3rem;
}
.stat-card .stat-sub {
    font-size: .75rem;
    color: #666;
    margin-top: .2rem;
}

.dash-section {
    background: rgb(36 9 2 / 0.88);
    border: 1px solid #3d0d0d;
    border-radius: 8px;
    padding: 1.2rem 1.4rem;
    margin-bottom: 1.5rem;
}
.dash-section:hover { border-color: #620D14; }

.dash-section h2 {
    font-family: 'New Rocker', system-ui;
    font-size: 1.3rem;
    color: #fff;
    margin: 0 0 1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid #3d0d0d;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dash-section h2 a {
    font-size: .8rem;
    color: #e8a87c;
    text-decoration: none;
}
.dash-section h2 a:hover { color: #fff; text-decoration: underline; }

.dash-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
@media (max-width: 900px) { .dash-columns { grid-template-columns: 1fr; } }

.dash-mini-table { width: 100%; border-collapse: collapse; }
.dash-mini-table th {
    font-family: 'New Rocker', system-ui;
    font-size: .8rem;
    color: #888;
    text-align: left;
    padding: .4rem .5rem;
    border-bottom: 1px solid #3d0d0d;
    font-weight: normal;
    letter-spacing: .04em;
}
.dash-mini-table td {
    padding: .45rem .5rem;
    font-size: .85rem;
    color: #ccc;
    border-bottom: 1px solid rgba(98,13,20,.15);
    vertical-align: middle;
}
.dash-mini-table tr:last-child td { border-bottom: none; }
.dash-mini-table tr:hover td { background: rgba(98,13,20,.15); }

.online-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #26bc26;
    margin-right: .4rem;
}

.role-badge {
    display: inline-block;
    padding: .1rem .5rem;
    border-radius: 4px;
    font-size: .75rem;
    color: #fff;
    font-family: 'New Rocker', system-ui;
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: .8rem;
}
.quick-link {
    display: flex;
    align-items: center;
    gap: .6rem;
    background: rgb(26 4 2 / 0.6);
    border: 1px solid #3d0d0d;
    border-radius: 6px;
    padding: .8rem 1rem;
    color: #ccc;
    text-decoration: none;
    font-size: .9rem;
    transition: border-color .2s, color .2s;
}
.quick-link:hover { border-color: #620D14; color: #fff; }
.quick-link span.ql-icon { font-size: 1.3rem; }

.nl-pending {
    background: rgb(98 13 20 / 0.2);
    border: 1px solid #620D14;
    border-radius: 6px;
    padding: .6rem .8rem;
    margin-bottom: .5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nl-pending:last-child { margin-bottom: 0; }
.nl-pending .nl-p-title { color: #fff; font-size: .9rem; }
.nl-pending .nl-p-meta { color: #888; font-size: .78rem; }


body.container-fluid > .comphero {
    background: rgb(36 9 2 / 0.92);
    border: 3px solid #620D14;
    border-radius: 12px;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0,0,0,.6);
}


body.container-fluid > .comphero h2 {
    font-family: 'New Rocker', system-ui;
    color: #e8a87c;
    font-size: 1.4rem;
    text-shadow: 1px 1px 4px #000;
    border-bottom: 1px solid #620D14;
    padding-bottom: .4rem;
    margin-bottom: .8rem;
}


body.container-fluid > .comphero label {
    font-family: 'New Rocker', system-ui;
    color: #ccc;
    font-size: .9rem;
}


body.container-fluid > .comphero input,
body.container-fluid > .comphero select {
    background: #1a0a05;
    border: 1px solid #620D14;
    color: #fff;
    border-radius: 4px;
    padding: .4rem .6rem;
    font-family: 'Texturina', serif;
    font-size: .9rem;
}

body.container-fluid > .comphero input:focus,
body.container-fluid > .comphero select:focus {
    outline: none;
    border-color: #c0392b;
    box-shadow: 0 0 6px rgba(192,57,43,.3);
}


body.container-fluid > .comphero input[readonly] {
    background: #0e0301;
    color: #e8a87c;
    border-color: #3d0d0d;
}

body.container-fluid > .comphero input[type="number"] {
    width: 70px;
    text-align: center;
}


body.container-fluid > .comphero table {
    border-collapse: collapse;
}

body.container-fluid > .comphero table th {
    font-family: 'New Rocker', system-ui;
    color: #e8a87c;
    font-size: .85rem;
    padding: .4rem .5rem;
    border-bottom: 1px solid #620D14;
    font-weight: normal;
}

body.container-fluid > .comphero table td {
    padding: .3rem .4rem;
    border-bottom: 1px solid rgba(98,13,20,.2);
}

body.container-fluid > .comphero table th[scope="row"] {
    color: #fff;
    font-size: .95rem;
    text-align: left;
    padding-right: .8rem;
}


body.container-fluid > .comphero .form-select {
    background: #1a0a05;
    border: 1px solid #620D14;
    color: #fff;
    font-family: 'Texturina', serif;
}

body.container-fluid > .comphero .form-select:focus {
    border-color: #c0392b;
    box-shadow: 0 0 6px rgba(192,57,43,.3);
}


body.container-fluid > .comphero .btn-outline-secondary {
    border-color: #620D14;
    color: #e8a87c;
    font-family: 'New Rocker', system-ui;
}
body.container-fluid > .comphero .btn-outline-secondary:hover {
    background: #620D14;
    color: #fff;
}

body.container-fluid > .comphero .btn-outline-danger {
    border-color: #7a2020;
    color: #c0392b;
}
body.container-fluid > .comphero .btn-outline-danger:hover {
    background: #7a2020;
    color: #fff;
}


.fiche-sheet {
    background: rgb(36 9 2 / 0.92);
    border: 2px solid #620D14;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,.6);
}

.fiche-top {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #620D14;
}

.fiche-portrait {
    position: relative;
    flex-shrink: 0;
    width: 200px;
}
.fiche-portrait img {
    width: 200px;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #620D14;
}
.fiche-pv {
    text-align: center;
    background: linear-gradient(to right, #c0392b, #620D14);
    color: #fff;
    font-family: 'New Rocker', system-ui;
    font-size: .9rem;
    padding: .2rem 0;
    border-radius: 0 0 6px 6px;
    margin-top: -6px;
}

.fiche-identity { flex: 1; }
.fiche-identity h1 {
    font-family: 'New Rocker', system-ui;
    font-size: 2rem;
    color: #fff;
    margin: 0 0 .5rem;
    text-shadow: 2px 2px 6px #000;
}

.fiche-tags { display: flex; gap: .5rem; margin-bottom: .8rem; }
.fiche-tag {
    background: #333;
    padding: .2rem .7rem;
    border-radius: 4px;
    color: #ccc;
    font-size: .85rem;
    font-family: 'Texturina', serif;
}
.fiche-tag-classe { background: #620D14; color: #fff; }

.fiche-infos {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1.5rem;
    font-size: .88rem;
    color: #aaa;
}


.fiche-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}
@media (max-width: 700px) { .fiche-grid { grid-template-columns: 1fr; } }

.fiche-block {
    background: rgb(26 4 2 / 0.6);
    border: 1px solid #3d0d0d;
    border-radius: 8px;
    padding: 1rem;
}
.fiche-block:hover { border-color: #620D14; }
.fiche-block h2 {
    font-family: 'New Rocker', system-ui;
    font-size: 1.15rem;
    color: #e8a87c;
    margin: 0 0 .8rem;
    padding-bottom: .4rem;
    border-bottom: 1px solid #3d0d0d;
}

.fiche-stats-table {
    width: 100%;
    border-collapse: collapse;
}
.fiche-stats-table th {
    font-family: 'New Rocker', system-ui;
    font-size: .8rem;
    color: #888;
    padding: .3rem .5rem;
    border-bottom: 1px solid #620D14;
    font-weight: normal;
    text-align: center;
}
.fiche-stats-table td {
    padding: .4rem .5rem;
    text-align: center;
    font-size: .95rem;
    color: #ccc;
    border-bottom: 1px solid rgba(98,13,20,.15);
}
.fiche-carac-sigle {
    font-family: 'New Rocker', system-ui;
    color: #e8a87c !important;
    font-size: 1rem !important;
    font-weight: bold;
    text-align: left !important;
}
.fiche-mod {
    font-family: 'New Rocker', system-ui;
    font-size: 1rem !important;
    color: #fff !important;
    background: #1a0a05;
    border-radius: 4px;
}

.fiche-combat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .6rem;
}
.fiche-combat-item {
    background: #1a0a05;
    border: 1px solid #3d0d0d;
    border-radius: 6px;
    padding: .5rem;
    text-align: center;
}
.fiche-combat-label {
    display: block;
    font-size: .75rem;
    color: #888;
    font-family: 'New Rocker', system-ui;
    margin-bottom: .2rem;
}
.fiche-combat-value {
    font-family: 'New Rocker', system-ui;
    font-size: 1.2rem;
    color: #fff;
}