/* ── Global reset + shell ───────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 20px 20px;
    color: #fff;
}

.container { width: 100%; text-align: center; }

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #e94560, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle { color: #888; margin-bottom: 20px; font-size: 1.1rem; }

.guitar-icon { font-size: 3rem; margin-bottom: 20px; }

footer { margin-top: 40px; color: #555; font-size: 0.9rem; }

.loading-msg { color: #888; padding: 40px; font-size: 1rem; }
