html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg,
        #0f0f0f 0%,
        #101a2a 30%,
        #1a0f12 60%,
        #141414 100%);
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    min-height: 100%;
}

/* ── Layout principal ────────────────────────────────────── */
.detail-container {
    display: grid;
    grid-template-columns: 220px 1fr 240px;
    gap: 32px;
    max-width: 952px;
    margin: 0 auto;
    padding: 100px 0 60px;
}

/* ── Columna izquierda ───────────────────────────────────── */
.detail-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-poster {
    width: 100%;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

.detail-meta {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid #1e1e1e;
    gap: 8px;
}

.meta-row--tags {
    flex-direction: column;
    gap: 6px;
}

.meta-label {
    color: #666;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    padding-top: 1px;
}

.meta-value {
    color: #ccc;
    font-size: 13px;
    font-weight: 400;
    text-align: right;
}

.meta-score {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.meta-score-sub {
    color: #555;
    font-size: 12px;
    font-weight: 400;
}

.status-airing {
    color: #4ade80;
}

.meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.meta-tag {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #aaa;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
}

.meta-divider {
    height: 1px;
    background: #222;
    margin: 8px 0;
}

/* ── Columna central ─────────────────────────────────────── */
.detail-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.detail-titles {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 8px;
}

.detail-title {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.detail-title-jp {
    color: #555;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    cursor: default;
}

.tag--genre {
    background: #1a1a2e;
    color: #7b8cde;
    border: 1px solid #2a2a4a;
}

.tag--theme {
    background: #1a2a1a;
    color: #6abf6a;
    border: 1px solid #2a3a2a;
}

.tag--demo {
    background: #2a1a1a;
    color: #de8c7b;
    border: 1px solid #3a2a2a;
}

.detail-synopsis {
    color: #bbb;
    font-size: 14px;
    line-height: 1.7;
}

.detail-synopsis p {
    margin: 0;
}

/* ── Tabs ────────────────────────────────────────────────── */
.detail-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 0;
}

.detail-tab {
    background: none;
    border: none;
    color: #555;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 0 0 10px;
    margin-right: 24px;
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
}

.detail-tab.active {
    color: #fff;
}

.detail-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff3b3b, #ff7a18);
    border-radius: 2px;
}

.tab-separator {
    height: 2px;
    background: linear-gradient(90deg,
        #ff3b3b 0%,
        #ff7a18 40%,
        rgba(255,255,255,0.05) 100%);
    border-radius: 2px;
    margin-bottom: 20px;
}

.tab-content.hidden {
    display: none;
}

.tab-empty {
    color: #555;
    font-size: 14px;
}

.link-red {
    color: #ff3b3b;
    cursor: pointer;
    font-weight: 700;
}

/* ── Characters ──────────────────────────────────────────── */
.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
}

.character-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.character-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.character-img--placeholder {
    background: #1a1a1a;
    border: 1px solid #222;
}

.character-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.character-name {
    color: #ddd;
    font-size: 12px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.character-role {
    color: #555;
    font-size: 11px;
    margin: 0;
}

.role--main {
    color: #ff7a18;
}

/* ── Details tab ─────────────────────────────────────────── */
.details-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 16px;
    border-bottom: 1px solid #1a1a1a;
}

.detail-row-label {
    color: #555;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-row-text {
    color: #aaa;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.trailer-link {
    color: #ff3b3b;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.trailer-link:hover {
    text-decoration: underline;
}

/* ── Reviews ─────────────────────────────────────────────── */
.btn-write-review {
    background: none;
    border: 1px solid #ff3b3b;
    color: #ff3b3b;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background 0.2s, color 0.2s;
}

.btn-write-review:hover {
    background: #ff3b3b;
    color: #fff;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.review-item {
    background: #111;
    border: 1px solid #1e1e1e;
    border-radius: 8px;
    padding: 16px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.review-username {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.review-date {
    color: #444;
    font-size: 12px;
}

.review-body {
    color: #aaa;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.review-textarea {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    padding: 10px 14px;
    outline: none;
    resize: vertical;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.review-textarea:focus {
    border-color: #ff3b3b;
}

/* ── Columna derecha ─────────────────────────────────────── */
.detail-right {
    padding-top: 8px;
}

.sign-in-box {
    background: #111;
    border: 1px solid #1e1e1e;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sign-in-box p {
    color: #aaa;
    font-size: 14px;
    margin: 0;
}

.list-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.list-status-buttons {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.status-btn {
    width: 100%;
    padding: 10px 14px;
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    color: #aaa;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.2s, color 0.2s;
}

.status-btn:hover {
    border-color: #ff3b3b;
    color: #fff;
}

.status-btn--active {
    border-color: #ff3b3b;
    color: #fff;
    background: #1a0a0a;
}

.score-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.score-label {
    color: #555;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.score-stars {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.star {
    width: 28px;
    height: 28px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    color: #555;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.star--active {
    background: #ff7a18;
    border-color: #ff7a18;
    color: #fff;
}

.btn-update {
    width: 100%;
    padding: 10px;
    background: linear-gradient(90deg, #ff3b3b, #ff7a18);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-update:hover {
    opacity: 0.88;
}

.btn-remove {
    display: block;
    text-align: center;
    color: #555;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

.btn-remove:hover {
    color: #ff3b3b;
}

/* ── Action icons (Letterboxd style) ────────────────────── */
.action-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #111;
    border: 1px solid #1e1e1e;
    border-radius: 10px;
    padding: 14px 4px 10px;
    margin-bottom: 16px;
    gap: 4px;
}

.action-icon-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    color: #444;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: color 0.2s;
    padding: 4px 0;
    width: 100%;
}

.action-icon-btn:hover {
    color: #aaa;
}

.action-icon-btn--active {
    color: #ff3b3b;
}

.action-icon-btn--active svg {
    stroke: #ff3b3b;
}

.action-icon-btn:hover {
    color: #aaa;
}

.action-icon-btn--active {
    color: #ff3b3b;
}

.action-icon-btn--active svg {
    stroke: #ff3b3b;
}

/* ── Score form ──────────────────────────────────────────── */
.score-form {
    background: #111;
    border: 1px solid #1e1e1e;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ── Custom lists ────────────────────────────────────────── */
.custom-lists-section {
    background: #111;
    border: 1px solid #1e1e1e;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.custom-lists {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.custom-list-btn {
    width: 100%;
    padding: 8px 12px;
    background: #161616;
    border: 1px solid #222;
    border-radius: 6px;
    color: #777;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border-color 0.2s, color 0.2s;
}

.custom-list-btn:hover {
    border-color: #ff3b3b;
    color: #fff;
}

.custom-list-btn--active {
    border-color: #ff3b3b;
    color: #fff;
    background: #1a0a0a;
}

/* ── Write review button (sidebar) ──────────────────────── */
.btn-write-review-side {
    width: 100%;
    padding: 10px 14px;
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    color: #777;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
    transition: border-color 0.2s, color 0.2s;
}

.btn-write-review-side:hover {
    border-color: #ff3b3b;
    color: #fff;
}

/* ── Reviews section ─────────────────────────────────────── */
.reviews-section {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #1a1a1a;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.reviews-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

/* ── Genres section ──────────────────────────────────────── */
.genres-section {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #1a1a1a;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.genres-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.genres-label {
    color: #555;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* ── Load more card ──────────────────────────────────────── */
.load-more-card {
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.load-more-card:hover {
    opacity: 1;
}

.load-more-img {
    background: #1a1a1a;
    border: 1px dashed #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff3b3b;
    font-size: 18px;
    font-weight: 700;
}

.action-icon-btn span {
    white-space: nowrap;
    font-size: 9px;
}

/* ── Add to list button ──────────────────────────────────── */
.btn-add-to-list {
    width: 100%;
    padding: 10px 14px;
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    color: #777;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
    transition: border-color 0.2s, color 0.2s;
}

.btn-add-to-list:hover {
    border-color: #ff3b3b;
    color: #fff;
}

/* ── List modal ──────────────────────────────────────────── */
.list-modal {
    max-width: 440px;
    max-height: 80vh;
    overflow-y: auto;
}

.list-modal-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 4px;
}

.list-modal-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #161616;
    border: 1px solid #222;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    user-select: none;
}

.list-modal-item input[type="checkbox"] {
    display: none;
}

.list-modal-item:hover {
    border-color: #333;
    background: #1a1a1a;
}

.list-modal-item--active {
    border-color: #ff3b3b;
    background: #1a0a0a;
}

.list-modal-item-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.list-modal-item-name {
    color: #ddd;
    font-size: 13px;
    font-weight: 700;
}

.list-modal-item--active .list-modal-item-name {
    color: #fff;
}

.list-modal-item-meta {
    color: #555;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.list-modal-check {
    color: #333;
    display: flex;
    align-items: center;
    transition: color 0.15s;
}

.list-modal-item--active .list-modal-check {
    color: #ff3b3b;
}

/* ── New list section ────────────────────────────────────── */
.new-list-section {
    margin-top: 16px;
    border-top: 1px solid #1e1e1e;
    padding-top: 14px;
}

.btn-new-list {
    background: none;
    border: none;
    color: #555;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    transition: color 0.2s;
}

.btn-new-list:hover {
    color: #ff3b3b;
}

.new-list-form {
    margin-top: 14px;
}

.visibility-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #777;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.visibility-toggle input {
    accent-color: #ff3b3b;
}

/* ── Reacciones en reviews ───────────────────────────────── */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.review-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-reactions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.reaction-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: 1px solid #222;
    border-radius: 6px;
    color: #555;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    cursor: pointer;
    transition: all 0.15s;
}

.reaction-btn:hover {
    border-color: #444;
    color: #aaa;
}

.reaction-btn--liked {
    border-color: #4ade80;
    color: #4ade80;
}

.reaction-btn--liked:hover {
    border-color: #4ade80;
    color: #4ade80;
    opacity: 0.8;
}

.reaction-btn--disliked {
    border-color: #ff3b3b;
    color: #ff3b3b;
}

.reaction-btn--disliked:hover {
    border-color: #ff3b3b;
    color: #ff3b3b;
    opacity: 0.8;
}

.review-home-reactions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.synopsis-toggle {
    display: none;
}

@media (max-width: 900px) {

    .detail-container {
        grid-template-columns: 160px 1fr 180px;
        gap: 20px;
        padding-top: 88px; 
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 60px;
    }

    .detail-synopsis {
    position: relative;
    }

    .detail-synopsis.collapsed p {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .synopsis-toggle {
        background: none;
        border: none;
        color: #ff3b3b;
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        font-weight: 700;
        padding: 4px 0 0;
        cursor: pointer;
        display: block;
    }

    .review-header {
    flex-wrap: wrap;
    gap: 6px;
    }

    .review-header-left {
        flex-wrap: wrap;
        gap: 4px;
        align-items: center;
    }

    .review-date {
        font-size: 10px;
        white-space: nowrap;
    }

    .review-username {
        font-size: 12px;
    }

    .review-reactions {
        margin-left: auto;
    }
}

@media (max-width: 680px) {

    .detail-container {
        grid-template-columns: 120px 1fr 140px;
        gap: 14px;
        padding-top: 80px; 
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 60px;
    }

    .detail-poster {
        border-radius: 6px;
    }

    .meta-label { font-size: 10px; }
    .meta-value { font-size: 11px; }
    .meta-score { font-size: 14px; }
    .meta-tag { font-size: 10px; padding: 2px 6px; }

    .detail-title { font-size: 18px; }
    .detail-title-jp { font-size: 11px; }
    .detail-synopsis { font-size: 12px; line-height: 1.6; }

    .detail-tab { font-size: 12px; margin-right: 14px; padding-bottom: 8px; }

    .characters-grid {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
        gap: 8px;
    }
    .character-name { font-size: 10px; }
    .character-role { font-size: 9px; }

    .action-icons {
        padding: 10px 2px 8px;
        gap: 2px;
    }
    .action-icon-btn {
        font-size: 8px;
        gap: 3px;
    }
    .action-icon-btn svg {
        width: 20px;
        height: 20px;
    }
    .action-icon-btn span { font-size: 8px; }

    .score-form { padding: 10px; }
    .score-label { font-size: 10px; }
    .star { width: 20px; height: 20px; font-size: 9px; }
    .score-stars { gap: 2px; }
    .btn-update { padding: 8px; font-size: 11px; }

    .btn-add-to-list { font-size: 10px; padding: 7px 8px; }
    .btn-write-review-side { font-size: 10px; padding: 7px 8px; }
    .sign-in-box { padding: 12px; }
    .sign-in-box p { font-size: 12px; }

    .review-item { padding: 10px; }
    .review-username { font-size: 12px; }
    .review-body { font-size: 12px; }
    .review-date { font-size: 11px; }

    .tag { font-size: 10px; padding: 3px 7px; }
    .meta-tag { font-size: 10px; }

    .reviews-title { font-size: 14px; }

    .detail-synopsis {
    position: relative;
    }

    .detail-synopsis.collapsed p {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .synopsis-toggle {
        background: none;
        border: none;
        color: #ff3b3b;
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        font-weight: 700;
        padding: 4px 0 0;
        cursor: pointer;
        display: block;
    }

    .review-header {
    flex-wrap: wrap;
    gap: 6px;
    }

    .review-header-left {
        flex-wrap: wrap;
        gap: 4px;
        align-items: center;
    }

    .review-date {
        font-size: 10px;
        white-space: nowrap;
    }

    .review-username {
        font-size: 12px;
    }

    .review-reactions {
        margin-left: auto;
    }
}

@media (max-width: 480px) {

    .detail-container {
        grid-template-columns: 90px 1fr 110px;
        gap: 10px;
        padding-top: 72px; 
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 60px;
    }

    .detail-title { font-size: 14px; line-height: 1.2; }
    .detail-title-jp { font-size: 10px; }
    .detail-synopsis { font-size: 11px; }

    .meta-label { font-size: 9px; }
    .meta-value { font-size: 10px; }
    .meta-score { font-size: 13px; }

    .action-icon-btn svg { width: 16px; height: 16px; }
    .action-icon-btn span { display: none; }
    .action-icons { padding: 8px 2px 6px; }

    .star { width: 17px; height: 17px; font-size: 8px; }
    .btn-update { font-size: 10px; padding: 7px; }
    .btn-add-to-list { font-size: 9px; padding: 6px; }
    .btn-write-review-side { font-size: 9px; padding: 6px; }

    .detail-tab { font-size: 11px; margin-right: 10px; }

    .characters-grid {
        grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
        gap: 6px;
    }

    .detail-synopsis {
    position: relative;
    }

    .detail-synopsis.collapsed p {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .synopsis-toggle {
        background: none;
        border: none;
        color: #ff3b3b;
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        font-weight: 700;
        padding: 4px 0 0;
        cursor: pointer;
        display: block;
    }

    .review-header {
    flex-wrap: wrap;
    gap: 6px;
    }

    .review-header-left {
        flex-wrap: wrap;
        gap: 4px;
        align-items: center;
    }

    .review-date {
        font-size: 10px;
        white-space: nowrap;
    }

    .review-username {
        font-size: 12px;
    }

    .review-reactions {
        margin-left: auto;
    }
}

.score-current {
    color: #555;
    font-size: 12px;
    font-weight: 700;
    margin: 4px 0 0;
    text-align: center;
}

.score-current strong {
    color: #ff7a18;
}

.report-btn {
    margin-left: 4px;
    opacity: 0.3;
    color: #666;
    transition: opacity 0.2s, color 0.2s;
}

.report-btn:hover {
    opacity: 0.7;
    color: #aaa;  /* gris en hover, no rojo */
}

.report-btn.reported {
    opacity: 1;
    color: #ff3b3b;  /* rojo solo cuando está marcado */
}

.report-btn.reported:hover {
    opacity: 0.7;
    color: #ff3b3b;
}