.patch-notes-list {
    display: grid;
    gap: 16px;
}

.patch-note {
    padding: 22px;
    border-radius: 22px;
    background: var(--card);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.patch-note h4 {
    margin-top: 16px;
    margin-bottom: 8px;
    font-size: 1rem;
    color: #e5ebff;
}

.badge-coming {
    margin-left: 8px;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(255, 209, 102, 0.15);
    color: #ffd166;
    border: 1px solid rgba(255, 209, 102, 0.4);
}

.patch-note:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}

.patch-note-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.patch-note-version {
    font-size: 1.08rem;
    font-weight: 800;
}

.patch-note-date {
    color: var(--muted-2);
    font-size: 0.92rem;
}

.patch-note ul {
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.8;
}

.patch-note.empty {
    text-align: center;
    color: var(--muted);
}

.patch-note-coming {
    position: relative;
    overflow: hidden;
}

.patch-note-coming::after {
    content: "A VENIR";
    position: absolute;
    top: 18px;
    right: -60px;
    width: 240px;
    text-align: center;
    padding: 8px 0;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 1px;

    /* 👉 TEXTE lisible */
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);

    /* 👉 double background */
    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), /* voile sombre */
        repeating-linear-gradient(
            45deg,
            #ffd166 0px,
            #ffd166 12px,
            #1a1a1a 12px,
            #1a1a1a 24px
        );

    border: 1px solid rgba(0,0,0,0.3);

    transform: rotate(35deg);
    z-index: 3;
    pointer-events: none;

    box-shadow:
        0 12px 28px rgba(0,0,0,0.35),
        0 0 20px rgba(255, 209, 102, 0.25);

    animation: stripeMove 2s linear infinite;
}

.patch-note-coming::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 209, 102, 0.18);
    border-radius: 22px;
    pointer-events: none;
}

@keyframes stripeMove {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 34px 0;
    }
}