/* Partypeople - Vibrant Social & Party Cyber-Glassmorphism Design */
:root {
    --bg-primary: #0a0b10;
    --bg-glass: rgba(16, 20, 32, 0.78);
    --accent-cyan: #00f0ff;
    --accent-violet: #7000ff;
    --accent-pink: #ff007f;
    --accent-gold: #ffd700;
    --text-primary: #f8fafc;
    --text-muted: #94a3b8;
    --border-glass: rgba(0, 240, 255, 0.25);
    --border-pink: rgba(255, 0, 127, 0.35);
    --glow-cyan: 0 0 15px rgba(0, 240, 255, 0.4);
    --glow-pink: 0 0 20px rgba(255, 0, 127, 0.5);
    --glow-violet: 0 0 20px rgba(112, 0, 255, 0.4);
}

.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 240, 255, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    user-select: none;
    -webkit-user-select: none;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--bg-primary);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-primary);
}

#game-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: block;
    z-index: 1;
}

/* Crosshair */
#crosshair {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10;
}
#crosshair::before, #crosshair::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 4px rgba(0, 240, 255, 0.8);
}
#crosshair::before {
    top: 7px;
    left: 0;
    width: 16px;
    height: 2px;
}
#crosshair::after {
    top: 0;
    left: 7px;
    width: 2px;
    height: 16px;
}

/* UI Overlay */
.hud-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 20;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Top Bar - Vorschlag 1: Durchgehende Glassmorphism-Navbar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 52px;
    background: rgba(10, 11, 16, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    gap: 14px;
    pointer-events: auto;
    z-index: 100;
    box-sizing: border-box;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.top-bar-brand {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    user-select: none;
}

.top-bar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.stats-panel {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 6px 14px;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 0.85rem;
    color: #e0e6ed;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.hud-sep {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
    user-select: none;
}

/* Real Encounter Banner */
#encounter-banner {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(214, 51, 132, 0.9), rgba(112, 0, 255, 0.9));
    border: 2px solid var(--accent-pink);
    box-shadow: 0 0 30px rgba(214, 51, 132, 0.8);
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    z-index: 100;
    display: none;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.04); }
    100% { transform: translateX(-50%) scale(1); }
}

/* Bottom Controls & Layer Toolbar */
.bottom-toolbar-container {
    align-self: center;
    margin-bottom: 20px;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 40;
}

.bottom-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid var(--border-glass);
    background: rgba(10, 14, 24, 0.85);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
}

.toolbar-group {
    display: flex;
    align-items: center;
    gap: 6px;
}

.toolbar-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--accent-cyan);
    letter-spacing: 0.8px;
    margin-right: 4px;
}

.toolbar-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 4px;
}

.btn-layer, .btn-mode {
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #c0d0e0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-layer:hover, .btn-mode:hover {
    background: rgba(0, 240, 255, 0.12);
    border-color: var(--accent-cyan);
    color: #fff;
}

.btn-layer.active, .btn-mode.active {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.3), rgba(112, 0, 255, 0.3));
    border-color: var(--accent-cyan);
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
    font-weight: 700;
}

/* Modals & Panels */
.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    color: var(--text-primary);
}

/* Chat Box - Auto-Fade Ghost-Chat */
.chat-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 330px;
    max-height: 250px;
    pointer-events: none;
    z-index: 35;
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.65);
    background: rgba(10, 14, 26, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.chat-container.chat-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.74rem;
    color: var(--accent-cyan);
    font-weight: 700;
    letter-spacing: 0.5px;
    user-select: none;
}

.btn-chat-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-size: 0.85rem;
    padding: 2px 6px;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn-chat-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.chat-messages {
    overflow-y: auto;
    max-height: 180px;
    padding: 10px;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.chat-input-box {
    display: flex;
    padding: 8px;
    border-top: 1px solid var(--border-glass);
}

.chat-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    padding: 6px 10px;
    color: #fff;
    font-size: 0.85rem;
    outline: none;
}

.chat-input:focus {
    border-color: var(--accent-cyan);
}

/* Floating Chat Toggle (Desktop) */
.chat-toggle-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(10, 14, 26, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 240, 255, 0.45);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 34;
    transition: all 0.25s ease;
    padding: 0;
}

.chat-toggle-btn:hover {
    background: rgba(0, 240, 255, 0.25);
    border-color: var(--accent-cyan);
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
}

.chat-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ff007f;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    border-radius: 10px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px #ff007f;
}

/* Action Buttons */
.btn-geo {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(112, 0, 255, 0.3));
    border: 1px solid var(--accent-cyan);
    color: #fff;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-geo:hover {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
    box-shadow: var(--glow-cyan);
}

/* Teleport & Player List Modal */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 150;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
}

.modal-content {
    width: 480px;
    max-width: 90vw;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

/* Welcome / Start Overlay & Party Landing Design */
#start-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 20% 25%, rgba(112, 0, 255, 0.28) 0%, transparent 50%),
                radial-gradient(circle at 80% 75%, rgba(255, 0, 127, 0.25) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(16, 20, 36, 0.95), rgba(8, 9, 14, 0.98));
    z-index: 200;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.start-box {
    width: 520px;
    max-width: 92vw;
    padding: 34px 28px;
    text-align: center;
}

.party-start-card {
    border: 1px solid rgba(255, 0, 127, 0.45);
    background: radial-gradient(ellipse at top, rgba(34, 22, 54, 0.88), rgba(12, 13, 24, 0.94));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75), 0 0 45px rgba(255, 0, 127, 0.25), 0 0 85px rgba(112, 0, 255, 0.18);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.party-badge-wrapper {
    margin-bottom: 12px;
}

.party-pill-badge {
    display: inline-block;
    padding: 5px 16px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #ff3399;
    background: rgba(255, 0, 127, 0.12);
    border: 1px solid rgba(255, 0, 127, 0.45);
    border-radius: 50px;
    box-shadow: 0 0 16px rgba(255, 0, 127, 0.35);
}

.party-logo {
    font-size: 2.75rem !important;
    font-weight: 900 !important;
    letter-spacing: 3px !important;
    background: linear-gradient(135deg, #ff007f 0%, #e024c3 35%, #7000ff 70%, #00f0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 0 22px rgba(255, 0, 127, 0.55));
    animation: partyTitlePulse 3.5s ease-in-out infinite alternate;
}

@keyframes partyTitlePulse {
    0% { filter: drop-shadow(0 0 18px rgba(255, 0, 127, 0.45)); }
    100% { filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.7)); }
}

.party-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 16px 0 20px 0;
    width: 100%;
}

.party-feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    padding: 12px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.party-feature-card:hover {
    background: rgba(255, 0, 127, 0.12);
    border-color: rgba(255, 0, 127, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 0, 127, 0.25);
}

.party-feature-icon {
    font-size: 1.6rem;
    margin-bottom: 4px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.party-feature-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.party-feature-desc {
    font-size: 0.67rem;
    color: var(--text-muted);
    line-height: 1.25;
}

.party-live-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 20px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--accent-cyan);
    margin-bottom: 18px;
}

.party-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 10px #00ff88;
    animation: partyPulse 1.5s infinite;
}

@keyframes partyPulse {
    0% { transform: scale(0.85); opacity: 0.7; box-shadow: 0 0 4px #00ff88; }
    50% { transform: scale(1.35); opacity: 1; box-shadow: 0 0 14px #00ff88; }
    100% { transform: scale(0.85); opacity: 0.7; box-shadow: 0 0 4px #00ff88; }
}

.btn-party-primary {
    background: linear-gradient(135deg, #ff007f 0%, #c41aff 60%, #7000ff 100%) !important;
    border: 1px solid #ff66ba !important;
    color: #ffffff !important;
    box-shadow: 0 0 25px rgba(255, 0, 127, 0.55), 0 4px 15px rgba(0, 0, 0, 0.4) !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    border-radius: 12px !important;
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

.btn-party-primary:hover {
    background: linear-gradient(135deg, #ff1a8c 0%, #d533ff 60%, #851aff 100%) !important;
    box-shadow: 0 0 38px rgba(255, 0, 127, 0.85), 0 0 18px rgba(0, 240, 255, 0.45) !important;
    transform: translateY(-2px) scale(1.02) !important;
}

.btn-party-logout {
    border: 1px solid rgba(255, 0, 127, 0.45) !important;
    background: rgba(255, 0, 127, 0.08) !important;
    color: #f8fafc !important;
    padding: 5px 12px !important;
    font-size: 0.78rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
}

.btn-party-logout:hover {
    border-color: #ff007f !important;
    background: rgba(255, 0, 127, 0.22) !important;
    box-shadow: 0 0 14px rgba(255, 0, 127, 0.45) !important;
    color: #ffffff !important;
}

.start-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 10px 14px;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 16px;
    outline: none;
}

.start-input:focus {
    border-color: var(--accent-pink);
    box-shadow: 0 0 12px rgba(255, 0, 127, 0.4);
}



/* Search results in Navi Modal */
.navi-search-item {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.82rem;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.navi-search-item:hover {
    background: rgba(0, 240, 255, 0.15);
    border-color: var(--accent-cyan);
    color: #fff;
}

/* Cinematic Street Banner */
#street-banner {
    position: fixed;
    top: 74px;
    left: 50%;
    transform: translateX(-50%) translateY(-24px);
    padding: 10px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 45;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    border: 1px solid rgba(0, 240, 255, 0.35);
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 240, 255, 0.2);
    border-radius: 14px;
}

#street-banner.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.street-banner-icon {
    font-size: 1.4rem;
    filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.4));
}

.street-banner-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.street-banner-subtitle {
    font-size: 0.65rem;
    color: var(--accent-cyan);
    letter-spacing: 1.6px;
    font-weight: 700;
    text-transform: uppercase;
}

.street-banner-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.4px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Mobile Touch Controls for Smartphones */
#mobile-controls {
    position: fixed;
    bottom: 24px;
    left: 0;
    width: 100vw;
    display: none;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 20px;
    pointer-events: none;
    z-index: 50;
}

.mobile-dpad {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: rgba(16, 20, 32, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 0, 127, 0.35);
    border-radius: 20px;
    padding: 8px;
    pointer-events: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
}

.mobile-dpad-middle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.mobile-dpad-center {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 0, 127, 0.15);
    border: 1px dashed rgba(255, 0, 127, 0.4);
}

.btn-touch {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    transition: background 0.15s ease, transform 0.1s ease;
}

.btn-touch:active, .btn-touch.active {
    background: linear-gradient(135deg, #ff007f, #7000ff);
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.6);
    transform: scale(0.92);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: auto;
}

.btn-touch-action {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(16, 20, 32, 0.75);
    border: 2px solid var(--accent-pink);
    box-shadow: 0 0 18px rgba(255, 0, 127, 0.4);
    font-size: 1.3rem;
}

.btn-touch-action.active {
    background: linear-gradient(135deg, #ff007f, #00f0ff);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.8);
}

/* Smartphone & Tablet Responsive Layouts */
@media (pointer: coarse), (max-width: 860px) {
    #mobile-controls {
        display: flex;
    }
    .chat-container {
        bottom: 140px;
        left: 14px;
        width: 280px;
        max-height: 180px;
    }
    .chat-toggle-btn {
        display: none !important;
    }
    .bottom-toolbar-container {
        margin-bottom: 96px;
    }
    .top-bar {
        padding: 6px 12px;
        gap: 8px;
    }
    .top-bar-left {
        gap: 8px;
    }
    .stats-panel {
        font-size: 0.76rem;
        padding: 5px 10px;
        gap: 6px;
    }
    .start-box {
        width: 95vw;
        padding: 24px 14px;
        max-height: 90vh;
        overflow-y: auto;
    }
    .party-logo {
        font-size: 2.1rem !important;
    }
    .party-feature-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    .party-feature-card {
        padding: 8px 4px;
    }
    .party-feature-title {
        font-size: 0.72rem;
    }
    .party-feature-desc {
        font-size: 0.6rem;
    }
    #street-banner {
        top: 60px;
        padding: 6px 14px;
    }
    .modal-content {
        max-width: 94vw;
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .party-feature-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .party-feature-card {
        flex-direction: row;
        gap: 10px;
        text-align: left;
        padding: 6px 12px;
    }
    .top-bar-left {
        width: 100%;
        justify-content: space-between;
    }
    .top-bar-brand {
        font-size: 0.9rem;
    }
    .stats-panel {
        font-size: 0.68rem;
        padding: 4px 8px;
    }
    .top-bar-actions {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }
    .top-bar-actions .btn-geo {
        flex: 1 1 calc(50% - 4px);
        text-align: center;
        padding: 6px 6px;
        font-size: 0.72rem;
    }
    #btn-open-pin-party {
        flex: 1 1 100% !important;
    }
}

