:root {
    --bg-color: #121212;
    --card-bg: #1e1e1e;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --accent: #1db954;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

h1 {
    margin-bottom: 5px;
}

p.subtitle {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.player-container {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    text-align: center;
}

.now-playing {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
    min-height: 28px;
}

.status {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 25px;
    min-height: 20px;
}

.controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

button {
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.1s ease;
}

button:active {
    transform: scale(0.95);
}

.play-btn {
    background-color: var(--accent);
    width: 64px;
    height: 64px;
    color: #000;
}

.play-btn svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.station-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.station-btn {
    background-color: #2a2a2a;
    color: var(--text-main);
    border-radius: 8px;
    padding: 15px;
    font-size: 1rem;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    border: 1px solid transparent;
}

.station-btn.active {
    border: 1px solid var(--accent);
    background-color: #223322;
}
