/* ═══════════════════════════════════════════════════════════════════════════
   AcheiGP.com — Chat Page Styles (TGNHOST)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── CITY GRID ──────────────────────────────────────────────────────────── */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
    margin-bottom: 25px;
}

.city-chip {
    background: #1f222f;
    border: 1px solid #32364c;
    border-radius: 8px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border: none;
    font-family: inherit;
    width: 100%;
}

.city-chip:hover {
    border-color: #ff3366;
    transform: translateY(-2px);
}

.city-chip.active {
    border-color: #25d366;
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.15);
}

.city-chip .city-name {
    display: block;
}

.city-chip .online-badge {
    display: inline-block;
    background: #25d366;
    color: #121212;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    margin-top: 6px;
}

/* ── LOCKED SCREEN ──────────────────────────────────────────────────────── */
.bp-locked {
    max-width: 500px;
    margin: 40px auto;
    text-align: center;
}

/* ── CHAT LAYOUT ────────────────────────────────────────────────────────── */
.chat-page-container {
    display: flex;
    gap: 20px;
    height: calc(100vh - 220px);
    min-height: 500px;
}

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .city-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 8px;
    }

    .chat-container {
        flex-direction: column;
        height: auto;
    }

    .chat-messages {
        height: 350px;
    }

    .chat-users {
        width: 100%;
        max-height: 200px;
    }

    .chat-users-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .chat-user-btn {
        flex: 1;
        min-width: 120px;
    }
}
