/* Main page styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background: linear-gradient(135deg, #0f3460 0%, #16213e 50%, #221a2e 100%);
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.container {
    max-width: 600px;
    width: calc(100% - 40px);
    max-height: calc(100vh - 40px);
    margin: 20px;
    background: transparent;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 
                0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
}

.header {
    background: transparent;
    color: white;
    padding: 20px;
    text-align: center;
}

.header h1 {
    margin: 0;
    font-size: 2em;
    font-weight: 300;
}

h3 {
    width: 100%;
    font-size: 3rem;
}

@media (max-width: 640px) {
    .container {
        margin: 10px;
        border-radius: 8px;
    }
    
    .header h1 {
        font-size: 1.5em;
    }
}

music-player {
    display: flex;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    background: #1f487d40;
    align-items: center;
}

.glow {
    text-shadow: 0 0 4px rgba(210, 190, 255, 0.3),
                 0 0 8px rgba(180, 160, 255, 0.2),
                 0 0 12px rgba(160, 140, 255, 0.1);
}