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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    background: #0a0a0f;
}

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

#ui-overlay {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
}

.status-panel {
    background: rgba(10, 10, 20, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 150, 255, 0.3);
    border-radius: 16px;
    padding: 24px;
    min-width: 320px;
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 50, 150, 0.3);
}

.status-panel h1 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #6fb1fc;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(100, 150, 255, 0.15);
}

.status-item:last-of-type {
    border-bottom: none;
}

.status-item .label {
    font-size: 14px;
    color: #8ba4c9;
    font-weight: 500;
}

.status-item .value {
    font-size: 16px;
    font-weight: 700;
    color: #4ecdc4;
    font-family: 'Courier New', monospace;
}

#phase-display {
    color: #ffd700;
    font-weight: 700;
}

.info-text {
    margin-top: 16px;
    padding: 12px;
    background: rgba(100, 150, 255, 0.1);
    border-radius: 8px;
    font-size: 13px;
    color: #a0b4d0;
    text-align: center;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .status-panel {
 min-width: 280px;
 padding: 20px;
    }
    
    .status-panel h1 {
 font-size: 18px;
    }
    
    .status-item .label {
 font-size: 13px;
    }
    
    .status-item .value {
 font-size: 14px;
    }
}