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

body { 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
}

.blurred-background {
    transition: opacity 1s ease-in-out;
}

.container { 
    max-width: 1600px; 
    margin: 0 auto; 
    padding: 20px 20px 80px 20px;
    min-height: calc(100vh - 60px);
}

.header {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 25% 1fr 25%;
    gap: 15px;
    align-items: center;
    min-height: 90px;
    width: 100%;
}

.header-controls {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.header-controls h1 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: #333;
}

.header-release {
    text-align: center;
    padding: 0 20px;
}

.header-release-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.header-release-artist {
    font-size: 1rem;
    color: #667eea;
    margin: 5px 0 0 0;
}

.header-cover {
    display: flex;
    justify-content: right;
    align-items: center;
}

.header-cover img {
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.status {
    text-align: center;
    margin: 20px 0;
    font-size: 16px;
}

.loading { color: white; }
.error { color: #e74c3c; }

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 1000;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: white;
}

.header-cover .cover-art {
    width: 100% !important;
    height: 100% !important;
    max-width: 160px !important;
    max-height: 160px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
}

.header-cover .cover-art:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4) !important;
}

.header-cover .cover-placeholder {
    width: 160px !important;
    height: 160px !important;
    background: #f0f0f0 !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #999 !important;
    aspect-ratio: 1 !important;
}