:root { --accent: #e64f4f; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #000; overflow: hidden; font-family: Arial, sans-serif; }
#container { width: 100vw; height: 100vh; }
#status { display: none; }
#top-bar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 10;
    display: flex; align-items: center; gap: 24px;
    padding: 18px 32px;
    pointer-events: none;
}
#top-bar h1 {
    color: var(--accent); font-size: 48px; font-weight: bold;
}
#top-bar #city {
    color: var(--accent); font-size: 28px; font-weight: bold;
}
#city-info-btn {
    pointer-events: all;
    cursor: pointer;
    background: none;
    border: 2px solid var(--accent);
    color: var(--accent);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}
#city-info-btn:hover {
    background: var(--accent);
    color: #000;
}
#city-tooltip {
    display: none;
    position: fixed;
    top: 80px;
    left: 32px;
    background: rgba(20,20,20,0.95);
    border: 1px solid var(--accent);
    color: #fff;
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 0;
    max-width: 260px;
    z-index: 100;
    pointer-events: none;
}
#city-tooltip.visible {
    display: block;
}
#bottom-bar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 10;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    padding: 0 0 28px 0; pointer-events: all;
}
.dining-btn {
    display: inline-block; color: var(--accent);
    font-size: 18px; font-weight: bold;
    text-decoration: none; border: 2px solid var(--accent);
    padding: 8px 22px; transition: background 0.15s, color 0.15s;
}
.dining-btn:hover { background: var(--accent); color: #000; }
.btn-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; padding: 0 16px; }
.icon-row { display: flex; gap: 24px; margin-top: 4px; }
.icon-row a { color: #fff; transition: color 0.15s; }
#right-panel {
    position: fixed; top: 88px; right: 32px;
    z-index: 10; display: flex; align-items: center; gap: 16px;
    pointer-events: none;
}
#right-panel img {
    width: 72px; height: 72px; border-radius: 50%;
    object-fit: cover; border: 2px solid var(--accent);
}
#right-panel .info { display: flex; flex-direction: column; gap: 4px; }
#right-panel .name {
    color: var(--accent); font-size: 22px; font-weight: bold;
}
#right-panel .title {
    color: #aaa; font-size: 13px;
}
@media (max-width: 600px) {
    #top-bar h1 { font-size: 32px; }
    #top-bar #city { font-size: 18px; }
    #top-bar { padding: 12px 16px; gap: 12px; }
    #right-panel { top: 60px; right: 16px; }
    #right-panel img { width: 52px; height: 52px; }
    #right-panel .name { font-size: 16px; }
    #right-panel .title { font-size: 11px; }
    #city-tooltip { top: 60px; left: 16px; }
}
#debug-toggle,
#road-debug-toggle {
    cursor: pointer;
    pointer-events: auto;
}
