body {
    background: #121212;
    color: #e0e0e0;
    font-family: 'Inter', -apple-system, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

#app {
    background: #1e1e1e;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    width: 350px;
    text-align: center;
}

.header h1 {
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    color: #4facfe;
}

.status-indicator {
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 20px;
    background: #333;
    display: inline-block;
    margin-bottom: 1rem;
}

.overlay {
    margin: 20px 0;
    padding: 20px;
    background: rgba(79, 172, 254, 0.1);
    border: 1px dashed #4facfe;
    border-radius: 12px;
}

.overlay p {
    font-size: 0.8rem;
    margin-top: 10px;
    color: #888;
}

#start-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
}

.hidden {
    display: none !important;
}

.status-indicator.connected {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
}

.controls {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

button {
    background: #4facfe;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}

button:hover {
    background: #00f2fe;
}

button.muted {
    background: #ff4b2b;
}

.volume-slider {
    text-align: left;
}

.volume-slider label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.8rem;
}

input[type="range"] {
    width: 100%;
}

#active-players h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

li {
    padding: 5px 0;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
}