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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #1a1a2e;
    color: #e0e0e0;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

header { text-align: center; margin-bottom: 2rem; }
header h1 { font-size: 2.2rem; color: #fff; }
.subtitle { color: #888; font-size: 0.9rem; }

nav {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}
nav a {
    color: #aaa;
    text-decoration: none;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    transition: all 0.2s;
}
nav a:hover, nav a.active { background: #16213e; color: #fff; }

.stats-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #16213e;
    border-radius: 8px;
}
.stat-item { text-align: center; }
.stat-value { display: block; font-size: 1.8rem; font-weight: 700; color: #4fc3f7; }
.stat-label { font-size: 0.8rem; color: #888; }

.mount-card {
    background: #16213e;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.mount-card.offline { opacity: 0.5; }

.mount-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.mount-header h2 { font-size: 1.3rem; color: #fff; }

.btn-play {
    background: #4fc3f7;
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}
.btn-play:hover { background: #81d4fa; }

.now-playing {
    background: #0f3460;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}
.np-label { font-size: 0.75rem; color: #888; text-transform: uppercase; }
.np-title { font-size: 1.1rem; color: #fff; margin-top: 0.2rem; }

.info-table { width: 100%; border-collapse: collapse; }
.info-table td {
    padding: 0.4rem 0;
    border-bottom: 1px solid #1a1a2e;
    font-size: 0.9rem;
}
.info-table td:first-child { color: #888; width: 120px; }
.info-table td:last-child { color: #e0e0e0; }

footer { text-align: center; margin-top: 2rem; color: #555; font-size: 0.8rem; }   
