.game-detail {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 0 48px;
}

.game-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    padding: 4px 0 18px;
    font-size: 13px;
    color: #888;
}

.game-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.15s;
}

.game-breadcrumb a:hover { color: #ff7f50; }
.game-breadcrumb .sep { color: #ccc; margin: 0 2px; user-select: none; }
.game-breadcrumb .current { color: #222; font-weight: 600; }

.game-detail-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 20px;
    align-items: start;
    width: 100%;
}

.game-main-col {
    width: 100%;
    min-width: 0;
}

.game-hero {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    margin-bottom: 12px;
}

.game-hero-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border: 2px solid #fff;
}

.game-hero-body { flex: 1; min-width: 0; }

.game-hero-body h1 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.game-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.game-tag-free {
    background: #fff0eb;
    color: #ff7f50;
    border: 1px solid #ffd4c4;
}

.game-tag-cat {
    background: #f5f5f5;
    color: #555;
    text-decoration: none;
    border: 1px solid #ececec;
    transition: all 0.15s;
}

.game-tag-cat:hover {
    background: #fff0eb;
    color: #ff7f50;
    border-color: #ffd4c4;
}

.game-tag-guide {
    background: #f0f7ff;
    color: #2563b0;
    text-decoration: none;
    border: 1px solid #cfe0f7;
    transition: all 0.15s;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-tag-guide:hover {
    background: #e8f1fc;
    color: #1d4f8c;
    border-color: #b8d4f5;
}

.game-like-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid #ececec;
    background: #fafafa;
    color: #444;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.15s, background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
}

.game-like-btn .fa {
    font-size: 12px;
    color: #888;
    transition: color 0.15s, transform 0.2s;
}

.game-like-count {
    min-width: 1ch;
    font-variant-numeric: tabular-nums;
}

.game-like-label {
    white-space: nowrap;
}

.game-like-btn:hover:not(:disabled) {
    background: #fff0eb;
    border-color: #ffd4c4;
    color: #ff7f50;
}

.game-like-btn:hover:not(:disabled) .fa {
    color: #ff7f50;
}

.game-like-btn.is-liked,
.game-like-btn:disabled {
    background: #fff0eb;
    border-color: #ffb89e;
    color: #ff7f50;
    cursor: default;
}

.game-like-btn.is-liked .fa,
.game-like-btn:disabled .fa {
    color: #ff7f50;
}

.game-like-btn.is-loading {
    opacity: 0.72;
    pointer-events: none;
}

.game-like-btn.is-animate {
    animation: game-like-pop 0.45s ease;
}

.game-like-btn.is-animate .fa {
    animation: game-like-bump 0.45s ease;
}

@keyframes game-like-pop {
    0% { transform: scale(1); }
    35% { transform: scale(1.06); }
    100% { transform: scale(1); }
}

@keyframes game-like-bump {
    0% { transform: scale(1); }
    35% { transform: scale(1.25); }
    100% { transform: scale(1); }
}

.game-play-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #555;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
}

.game-play-stat .fa {
    color: #ff8e30;
    font-size: 14px;
}

.game-rating {
    margin-top: 10px;
    padding: 0;
    border-radius: 12px;
    background: linear-gradient(145deg, #fffaf7 0%, #fff 55%);
    border: 1px solid rgba(255, 127, 80, 0.12);
    box-shadow: 0 2px 12px rgba(255, 127, 80, 0.06);
    max-width: 100%;
    overflow: visible;
    box-sizing: border-box;
}

.game-rating-inline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    min-width: 0;
    padding: 8px 10px 6px;
}

/* 平均分 */
.game-rating-avg,
.game-rating-empty {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    min-width: 0;
}

.game-rating-avg-main {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.game-rating-empty {
    font-size: 12px;
    color: #aaa;
    white-space: nowrap;
}

.game-rating-empty .fa {
    color: #ddd;
    font-size: 14px;
}

.game-rating-score {
    font-size: 22px;
    font-weight: 800;
    color: #ff7f50;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.game-rating-display-stars {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.game-rating-display-star {
    display: inline-flex;
    width: 16px;
    height: 16px;
    pointer-events: none;
}

.game-rating-display-star .game-rating-star-icon {
    position: relative;
    width: 15px;
    height: 15px;
    font-size: 15px;
}

.game-rating-display-star .game-rating-star-base,
.game-rating-display-star .game-rating-star-fill-track,
.game-rating-display-star .game-rating-star-fill {
    width: 15px;
    height: 15px;
    line-height: 15px;
    font-size: 15px;
}

.game-rating-display-star .game-rating-star-fill-track {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: calc(var(--star-fill, 0) * 1%);
    max-width: 100%;
    overflow: hidden;
}

.game-rating-display-star .game-rating-star-fill-track .game-rating-star-fill {
    position: static;
    clip-path: none;
    display: block;
    color: #ffb020;
}

.game-rating-count {
    font-size: 10px;
    font-weight: 600;
    color: #888;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

.game-rating-divider {
    flex-shrink: 0;
    width: 1px;
    align-self: stretch;
    min-height: 24px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.08), transparent);
}

/* 用户评分 */
.game-rating-vote {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.game-rating-input-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex-shrink: 0;
    min-width: 26px;
    height: 26px;
    padding: 0 6px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #ff7f50;
    background: #fff;
    border: 1px solid rgba(255, 127, 80, 0.15);
    white-space: nowrap;
}

.game-rating-input-label .fa {
    font-size: 11px;
    color: #ff9a3c;
}

.game-rating-yours {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    flex-shrink: 0;
    font-size: 10px;
    font-weight: 700;
    color: #ff7f50;
    padding: 3px 8px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(255, 127, 80, 0.2);
    box-shadow: 0 1px 4px rgba(255, 127, 80, 0.1);
    white-space: nowrap;
}

.game-rating-yours .fa {
    font-size: 9px;
}

.game-rating-yours-short {
    display: none;
}

.game-rating-yours[hidden],
.game-rating-avg[hidden],
.game-rating-empty[hidden] {
    display: none !important;
}

.game-rating-stars {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 2px 4px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
    flex: 1;
    min-width: 0;
    justify-content: center;
}

.game-rating-star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    padding: 0;
    border: 0;
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.12s ease, background 0.12s ease;
    -webkit-tap-highlight-color: transparent;
}

.game-rating-star-icon {
    position: relative;
    display: inline-block;
    width: 17px;
    height: 17px;
    font-size: 17px;
    line-height: 1;
}

.game-rating-star-base,
.game-rating-star-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 17px;
    height: 17px;
    line-height: 17px;
    text-align: center;
}

.game-rating-star-base {
    color: #d0d5de;
}

.game-rating-star-fill {
    color: #ffb020;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.12s ease, color 0.12s ease;
}

.game-rating-stars .game-rating-star.is-selected .game-rating-star-fill {
    clip-path: inset(0 0 0 0);
    color: #ff9a3c;
}

.game-rating-stars .game-rating-star.is-preview .game-rating-star-fill {
    clip-path: inset(0 0 0 0);
    color: #ff7f50;
}

.game-rating-stars .game-rating-star.is-preview {
    transform: scale(1.12);
}

.game-rating-stars .game-rating-star:not(.is-preview):hover {
    transform: scale(1.06);
}

.game-rating-stars.is-loading {
    opacity: 0.55;
    pointer-events: none;
}

.game-rating-note {
    margin: 0;
    padding: 5px 10px 7px;
    font-size: 9px;
    color: #bbb;
    line-height: 1.2;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    background: rgba(255, 255, 255, 0.5);
}

/* 窄屏未命中断点时，投票区自动换行 */
@media (max-width: 720px) {
    .game-rating-inline {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 8px 8px 4px;
    }

    .game-rating-divider {
        display: none;
    }

    .game-rating-avg,
    .game-rating-empty {
        width: 100%;
        justify-content: space-between;
        padding: 6px 8px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(255, 127, 80, 0.1);
        box-sizing: border-box;
    }

    .game-rating-score {
        font-size: 19px;
    }

    .game-rating-vote {
        width: 100%;
        gap: 5px;
        padding: 5px 6px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(255, 127, 80, 0.08);
        box-sizing: border-box;
        min-height: 34px;
    }

    .game-rating-stars {
        padding: 1px 3px;
        background: rgba(250, 251, 253, 0.9);
    }

    .game-rating-input-label {
        min-width: 24px;
        width: 24px;
        height: 24px;
        padding: 0;
    }

    .game-rating-input-text {
        display: none;
    }

    .game-rating-star {
        width: auto;
        flex: 1;
        max-width: 32px;
        height: 28px;
    }

    .game-rating-yours {
        font-size: 9px;
        padding: 2px 7px;
    }

    .game-rating-yours-full {
        display: none;
    }

    .game-rating-yours-short {
        display: inline;
    }

    .game-rating-note {
        padding: 4px 8px 6px;
        font-size: 8px;
    }
}

@media (max-width: 640px) {
    .game-hero {
        flex-wrap: wrap;
        align-items: flex-start;
        padding: 12px 14px;
        gap: 10px;
    }

    .game-hero-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .game-hero-body {
        flex: 1;
        min-width: 0;
    }

    .game-hero-body h1 {
        font-size: 17px;
        margin-bottom: 6px;
        line-height: 1.3;
    }

    .game-tags {
        gap: 6px;
    }

    .game-tag {
        font-size: 11px;
        padding: 3px 9px;
    }

    .game-like-btn {
        padding: 3px 9px;
        font-size: 11px;
        gap: 4px;
    }

    .game-like-label {
        display: none;
    }

    .game-play-stat {
        font-size: 11px;
        padding: 3px 9px;
        gap: 4px;
    }

    .game-play-stat .fa {
        font-size: 12px;
    }

    /* 评分区占满 hero 宽度 */
    .game-rating {
        flex: 1 1 100%;
        width: 100%;
        margin-top: 0;
    }
}

@media (max-width: 400px) {
    .game-rating-count {
        font-size: 9px;
        padding: 2px 6px;
    }

    .game-rating-star-icon,
    .game-rating-star-base,
    .game-rating-star-fill {
        width: 16px;
        height: 16px;
        font-size: 16px;
        line-height: 16px;
    }

    .game-rating-star {
        height: 26px;
        max-width: 28px;
    }
}

.game-guides-block {
    margin-top: 4px;
}

.game-guide-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.game-guide-links li {
    margin: 0;
}

.game-guide-links a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #fafafa;
    text-decoration: none;
    transition: border-color 0.15s, background 0.15s;
}

.game-guide-links a:hover {
    border-color: #ffd4c4;
    background: #fff8f5;
}

.game-guide-links-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
}

.game-guide-links-desc {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.45;
    color: #777;
}

.game-player-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

.game-iframe-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #111;
    background-image: var(--cover-url);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.game-iframe-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.25) 100%);
    pointer-events: none;
    z-index: 1;
}

.game-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: rgba(0, 0, 0, 0.42);
    z-index: 5;
    cursor: pointer;
    transition: background 0.2s;
}

.game-play-overlay:hover { background: rgba(0, 0, 0, 0.52); }
.game-play-overlay.is-hidden { display: none; }

.game-play-label {
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.02em;
}

.game-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    border: none;
    border-radius: 999px;
    background: #ff7f50;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 28px rgba(255, 127, 80, 0.5);
    transition: transform 0.15s, box-shadow 0.15s;
}

.game-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 127, 80, 0.6);
}

.game-play-btn i { font-size: 14px; }

.game-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    position: relative;
    z-index: 2;
}

.game-fullscreen-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.15s;
    backdrop-filter: blur(4px);
}

.game-fullscreen-btn:hover { background: rgba(0, 0, 0, 0.8); }
.game-fullscreen-btn.is-hidden { display: none; }

.game-iframe-wrapper.fullscreen {
    position: fixed;
    inset: 0;
    max-height: none;
    aspect-ratio: unset;
    z-index: 9999;
    border-radius: 0;
}

.game-content-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    padding: 22px 24px;
    margin-top: 12px;
}

.game-content-block + .game-content-block {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid #f0f0f0;
}

.game-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 14px;
    letter-spacing: -0.01em;
}

.game-section-title::before {
    content: '';
    width: 4px;
    height: 18px;
    background: #ff7f50;
    border-radius: 2px;
    flex-shrink: 0;
}

.game-content-block p {
    font-size: 14px;
    line-height: 1.85;
    color: #555;
    margin: 0;
}

.game-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 18px;
    list-style: none;
    padding: 0;
}

.game-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: #fafafa;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    color: #444;
    border: 1px solid #f0f0f0;
}

.game-features li .feat-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #fff0eb;
    color: #ff7f50;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

.game-sidebar-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    padding: 20px 16px;
    position: sticky;
    top: 80px;
}

.game-sidebar-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-game-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-game-item a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 8px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.15s, transform 0.15s;
    border: 1px solid transparent;
}

.sidebar-game-item a:hover {
    background: #fff8f5;
    border-color: #ffe0d4;
    transform: translateX(2px);
}

.sidebar-game-item img {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sidebar-game-item span {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.3;
}

.game-guide-text p {
    font-size: 14px;
    line-height: 1.85;
    color: #555;
    margin: 0 0 12px;
}

.game-guide-text p:last-child { margin-bottom: 0; }

.game-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.game-faq-item {
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    background: #fafafa;
    overflow: hidden;
}

.game-faq-item summary {
    cursor: pointer;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    list-style: none;
}

.game-faq-item summary::-webkit-details-marker { display: none; }

.game-faq-item summary::after {
    content: '+';
    float: right;
    color: #ff7f50;
    font-weight: 700;
}

.game-faq-item[open] summary::after { content: '−'; }

.game-faq-item p {
    margin: 0;
    padding: 0 16px 14px;
    font-size: 14px;
    line-height: 1.75;
    color: #666;
}

.game-related-section { margin-top: 32px; }
.game-related-section .game-section-title { margin-bottom: 18px; }

.related-games-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 14px 12px;
}

.related-game-card a {
    display: block;
    text-decoration: none;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: transform 0.18s, box-shadow 0.18s;
}

.related-game-card a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.related-game-card .thumb-wrap {
    position: relative;
    overflow: hidden;
}

.related-game-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    transition: transform 0.25s;
}

.related-game-card a:hover img { transform: scale(1.05); }

.related-game-card .related-game-name {
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 960px) {
    .game-detail-top {
        grid-template-columns: 1fr;
    }

    .game-sidebar-card {
        position: static;
    }
}

@media (max-width: 1024px) {
    .game-features { grid-template-columns: 1fr; }
    .game-hero-body h1 { font-size: 20px; }
}

@media (max-width: 1200px) {
    .related-games-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .related-games-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px 10px;
    }
}

@media (max-width: 600px) {
    .related-games-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .game-content-card { padding: 20px 18px; }
    .game-play-btn { padding: 13px 28px; font-size: 15px; }
    .related-games-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.game-player-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.game-report-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    background: #fff;
    color: #666;
    font-size: 13px;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.game-report-btn:hover {
    color: #e74c3c;
    border-color: rgba(231, 76, 60, 0.35);
    background: #fff7f6;
}

.game-report-modal[hidden] {
    display: none !important;
}

.game-report-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.game-report-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.game-report-dialog {
    position: relative;
    width: min(100%, 440px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    padding: 22px 22px 18px;
}

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

.game-report-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.game-report-close {
    border: 0;
    background: transparent;
    font-size: 24px;
    line-height: 1;
    color: #999;
    cursor: pointer;
}

.game-report-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin: 0 0 6px;
}

.game-report-select,
.game-report-textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
    margin-bottom: 14px;
    box-sizing: border-box;
}

.game-report-textarea {
    resize: vertical;
    min-height: 96px;
}

.game-report-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 4px;
}

.game-report-cancel,
.game-report-submit {
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 14px;
    cursor: pointer;
    border: 0;
}

.game-report-cancel {
    background: #f3f4f6;
    color: #555;
}

.game-report-submit {
    background: #ff7f50;
    color: #fff;
}

.game-report-submit.is-loading {
    opacity: 0.7;
    pointer-events: none;
}

body.game-report-open {
    overflow: hidden;
}
