body {
    margin: 0;
    font-family: Inter, sans-serif;
    background: #0f0f0f;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
}

.container {
    width: 90%;
    max-width: 500px;
}

.glass {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}

.cover {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    object-fit: cover;
    margin-bottom: 20px;
}

h1 {
    font-size: 1.4rem;
    margin: 0;
}

h2 {
    font-size: 1rem;
    opacity: 0.8;
    margin: 6px 0 14px 0;
}

#selector {
    opacity: 0.6;
}

/* Status badge */
.status-badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 14px;
    font-size: 0.8rem;
    margin-top: 8px;
}
.status-online { background: #2ecc71; color: #04260a; }
.status-sync   { background: #3498db; color: #ffffff; }
.status-offline{ background: #e74c3c; color: #ffffff; }

/* Small button style */
.small-btn {
    display: inline-block;
    margin-left: 8px;
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    color: white;
    border: 1px solid rgba(255,255,255,0.06);
    cursor: pointer;
}
.small-btn:hover { opacity: 0.9; }
