* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
    background: #0a0a0a;
    color: #e0e0e0;
    overflow: hidden;
}

#canvas {
    display: block;
    width: 100vw;
    height: 100vh;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 100;
}

#title-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(10, 10, 10, 0.85);
    border-bottom: 1px solid #1a1a1a;
}

#title-bar h1 {
    font-size: 13px;
    color: #00ff88;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#phase-label {
    font-size: 11px;
    color: #444;
    letter-spacing: 1px;
    transition: color 0.4s;
}

#phase-label.active {
    color: #00ff88;
}

#progress-track {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 14px;
    pointer-events: auto;
}

.phase-dot {
    position: relative;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #222;
    transition: background 0.4s, box-shadow 0.4s;
    cursor: default;
}

.phase-dot::after {
    content: attr(data-label);
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    letter-spacing: 0.5px;
    color: #333;
    white-space: nowrap;
    transition: color 0.4s;
}

.phase-dot.active::after {
    color: #00ff88;
}

.phase-dot.done::after {
    color: #006633;
}

.phase-dot.active {
    background: #00ff88;
    box-shadow: 0 0 8px #00ff88, 0 0 16px #00ff8844;
}

.phase-dot.done {
    background: #006633;
}

#info-panel {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid #1a1a1a;
    border-radius: 4px;
    padding: 8px 20px;
    font-size: 10px;
    color: #333;
    letter-spacing: 1px;
    pointer-events: none;
    z-index: 100;
    text-align: center;
}

#status-line {
    font-size: 11px;
    color: #555;
    margin-top: 3px;
}
