/* games.css — oyun kart + UID modal stilleri */

/* Kart başlık + UID rozeti */
.game-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.game-card-head .project-title {
    margin-bottom: 0;
}

.game-uid-count {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.18rem 0.55rem;
    border-radius: 99px;
    text-transform: uppercase;
    flex-shrink: 0;
}

/* Detay/UID butonu (modal aç) */
.game-detail-btn {
    cursor: pointer;
    user-select: none;
}

/* ── Modal İçinde UID Listesi ──────────────────────────── */
.game-modal-section {
    margin-top: 1.1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.game-modal-section-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 0.7rem;
}

.game-modal-thoughts {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.game-uid-list {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.game-uid-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    padding: 0.55rem 0.85rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.game-uid-row:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.18);
}

.game-uid-row:active {
    transform: scale(0.98);
}

.game-uid-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.04em;
}

.game-uid-value {
    font-family: 'Courier New', monospace;
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.game-uid-value::after {
    content: '⧉';
    font-size: 0.85rem;
    opacity: 0.5;
    transition: opacity 0.15s ease;
}

.game-uid-row:hover .game-uid-value::after {
    opacity: 1;
}

.game-uid-row.copied {
    background: rgba(76, 175, 80, 0.18);
    border-color: rgba(76, 175, 80, 0.45);
}

.game-uid-row.copied .game-uid-value::after {
    content: '✓';
    color: #4caf50;
    opacity: 1;
}

.game-uid-empty {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    font-style: italic;
    margin: 0;
}

@media (max-width: 500px) {
    .game-uid-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }
    .game-uid-value {
        font-size: 0.88rem;
    }
}
