/* ===== SECTION AVIS ===== */
#ios26-feedback * { box-sizing: border-box; }

#ios26-feedback {
    font-family: 'Syne', sans-serif;
    background: #111;
    border-top: 1px solid #222;
    border-radius: 16px;
    padding: 3rem 1.75rem;
    margin-top: 3rem;
}

#ios26-feedback .section-label {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    color: #555;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

#ios26-feedback h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin: 0 0 0.3rem;
    color: #f0f0f0;
    line-height: 1.15;
    border-bottom: none;
    padding-bottom: 0;
}

#ios26-feedback .subtitle {
    font-size: 0.88rem;
    color: #444;
    margin-bottom: 2rem;
}

#ios26-feedback .form-wrap {
    background: #0d0d0d;
    border: 1px solid #1e1e1e;
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
}

#ios26-feedback .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

@media (max-width: 480px) {
    #ios26-feedback .row { grid-template-columns: 1fr; }
}

#ios26-feedback label {
    display: block;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: #444;
    text-transform: uppercase;
    margin-bottom: 6px;
}

#ios26-feedback input,
#ios26-feedback select,
#ios26-feedback textarea {
    width: 100%;
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 8px;
    color: #e0e0e0;
    font-family: 'Syne', sans-serif;
    font-size: 0.88rem;
    padding: 10px 13px;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    -webkit-appearance: none;
}

#ios26-feedback input:focus,
#ios26-feedback select:focus,
#ios26-feedback textarea:focus {
    border-color: #333;
}

#ios26-feedback textarea {
    resize: vertical;
    min-height: 95px;
    line-height: 1.6;
    margin-bottom: 12px;
}

#ios26-feedback select option {
    background: #0d0d0d;
    color: #e0e0e0;
}

#ios26-feedback .star-label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    display: block;
}

#ios26-feedback .stars {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
}

#ios26-feedback .star {
    font-size: 22px;
    cursor: pointer;
    color: #222;
    transition: color 0.15s, transform 0.1s;
    user-select: none;
    line-height: 1;
}

#ios26-feedback .star.active { color: #30c59b; }
#ios26-feedback .star:hover { transform: scale(1.15); }

#ios26-feedback .btn-submit {
    background: #efefef;
    color: #0a0a0a;
    border: none;
    border-radius: 8px;
    padding: 11px 22px;
    font-family: 'Syne', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

#ios26-feedback .btn-submit:hover { background: #fff; }
#ios26-feedback .btn-submit:active { transform: scale(0.98); }
#ios26-feedback .btn-submit:disabled { background: #1e1e1e; color: #333; cursor: not-allowed; }

#ios26-feedback .toast {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    padding: 10px 16px;
    border-radius: 8px;
    margin-top: 12px;
    display: none;
}

#ios26-feedback .toast.ok { background: #0f2018; color: #4ade80; border: 1px solid #1a3d27; }
#ios26-feedback .toast.err { background: #200f0f; color: #f87171; border: 1px solid #3d1a1a; }

#ios26-feedback .comments-title {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    color: #444;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

#ios26-feedback .comment-card {
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    margin-bottom: 10px;
    background: #0a0a0a;
    animation: fadeUp 0.3s ease forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

#ios26-feedback .comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 6px;
}

#ios26-feedback .comment-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

#ios26-feedback .comment-pseudo {
    font-weight: 600;
    font-size: 0.88rem;
    color: #d0d0d0;
}

#ios26-feedback .comment-os {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: #666;
    background: #131313;
    border: 1px solid #1e1e1e;
    border-radius: 4px;
    padding: 2px 7px;
}

#ios26-feedback .role-badge {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    padding: 2px 7px;
    font-weight: 500;
}

#ios26-feedback .role-badge.dev {
    background: #0a1628;
    color: #4d9fff;
    border: 1px solid #1a3a6a;
}

#ios26-feedback .role-badge.meilleuramis {
    background: #0a1a12;
    color: #30c59b;
    border: 1px solid #1a3d27;
}

#ios26-feedback .role-badge.vip {
    background: #1a1400;
    color: #d4a017;
    border: 1px solid #3d3000;
}

#ios26-feedback .role-badge.larry {
    background: #1a1400;
    color: #e50b0bbb;
    border: 1px solid #cf10107a;
}

#ios26-feedback .role-badge.licorne {
    background: #17001a;
    color: #f707fff6;
    border: 1px solid #ba00edaf;
}

#ios26-feedback .role-badge.amis {
    background: #1a1400;
    color: #17fe1f;
    border: 1px solid #06ff37;
}

#ios26-feedback .role-badge.personne {
    background: #1a1400;
    color: #d8f806;
    border: 1px solid #f7ff067d;
}

#ios26-feedback .role-badge.lelobotomisateur {
    background: #1a1400;
    color: #fe1717;
    border: 1px solid #ff060680;
}

#ios26-feedback .role-badge.corecteur {
    background: #1a1400;
    color: #17fe3ab9;
    border: 1px solid #17fe3aa4;
}

#ios26-feedback .role-badge.lecteur {
    display: none;
}

#ios26-feedback .comment-stars {
    font-size: 13px;
    letter-spacing: 1px;
    color: #30c59b;
}

#ios26-feedback .comment-date {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: #555;
}

#ios26-feedback .comment-message {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.65;
    margin: 0;
}

#ios26-feedback .empty-state {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    color: #2e2e2e;
    padding: 1rem 0;
}

#ios26-feedback .loading-dots { display: inline-flex; gap: 4px; }
#ios26-feedback .loading-dots span {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: #333;
    animation: blink 1.2s infinite;
}
#ios26-feedback .loading-dots span:nth-child(2) { animation-delay: 0.2s; }
#ios26-feedback .loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes blink {
    0%, 80%, 100% { opacity: 0.2; }
    40% { opacity: 1; }
}

/* ===== NAVIGATION ARTICLE ===== */
.article-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.article-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-color-secondary);
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-nav a:hover {
    color: #ffffff;
    border-color: rgba(13, 14, 14, 0.269);
    background: rgba(13, 14, 14, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.article-nav a:first-child:hover { transform: translateX(-3px) translateY(-2px); }
.article-nav a:last-child:hover  { transform: translateX(3px)  translateY(-2px); }

@media (max-width: 768px) {
    .article-nav { flex-direction: column; }
    .article-nav a { justify-content: center; }
    .article-nav a:first-child:hover,
    .article-nav a:last-child:hover { transform: translateY(-2px); }
}