html, body {
    background-color: #131019;
    width: 100%;
    height: 100%;
    margin: 0;
    border: 0;
    overflow: hidden;
    display: block;
    position: relative;
}

#game {
    position: absolute;
    left: 0;
    top: 0;
}

.minijoc-overlay {
    position: fixed;
    right: 12px;
    top: 12px;
    width: min(320px, 92vw);
    max-height: calc(100% - 24px);
    overflow: auto;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
    font-family: "Trebuchet MS", Arial, sans-serif;
    z-index: 5;
}

.minijoc-overlay__summary {
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(15, 23, 42, 0.7);
    list-style: none;
    margin: -4px 0 10px;
}

.minijoc-overlay__summary::-webkit-details-marker {
    display: none;
}

.minijoc-home {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    font-size: 12px;
    text-decoration: none;
    color: #1f2937;
    margin-bottom: 10px;
}

.minijoc-scoreboard-panel h2 {
    margin: 0 0 8px;
    font-size: 16px;
    color: #111827;
}

.minijoc-scoreboard-group {
    border-top: 1px solid rgba(15, 23, 42, 0.12);
    padding-top: 8px;
    margin-top: 8px;
}

.minijoc-scoreboard-group h3 {
    margin: 0 0 6px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(15, 23, 42, 0.6);
}

.minijoc-scoreboard-panel .scoreboard h2 {
    display: none;
}

@media (max-width: 720px) {
    .minijoc-overlay {
        left: 0;
        right: 0;
        top: auto;
        bottom: 0;
        width: 100%;
        max-height: 55vh;
        border-radius: 16px 16px 0 0;
        padding: 10px 12px 12px;
        box-shadow: 0 -10px 24px rgba(0, 0, 0, 0.2);
    }

    .minijoc-overlay__summary {
        margin: 0 0 8px;
        text-align: center;
    }
}
