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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/cover.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(60px) brightness(0.4);
    transform: scale(1.1);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 900px;
    width: 100%;
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

header {
    margin-bottom: 60px;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: sepia(0.2);
    mix-blend-mode: screen;
    opacity: 0.8;
}

main {
    margin-bottom: 80px;
}

.single {
    margin: 0 auto;
}

.single h2 {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #b0b0b0;
}

.cover-wrapper {
    display: inline-block;
    max-width: 500px;
    width: 100%;
}

.cover {
    width: 100%;
    height: auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cover:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.9);
}

.glassy-container {
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(80, 80, 80, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.glassy-container.interactive:hover {
    border-color: rgba(176, 176, 176, 0.4);
    background: rgba(30, 30, 30, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.bio {
    max-width: 700px;
    margin: 40px auto 0;
    padding: 30px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.bio-text {
    flex: 0 0 calc(60% - 15px);
}

.bio-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #a0a0a0;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-align: left;
}

.band-members {
    flex: 0 0 calc(40% - 15px);
    border-left: 1px solid rgba(80, 80, 80, 0.3);
    padding-left: 20px;
}

.band-members h3 {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #b0b0b0;
}

.band-members ul {
    list-style: none;
    padding: 0;
}

.band-members li {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #888;
    font-weight: 300;
    margin-bottom: 15px;
}

.band-members li strong {
    color: #a0a0a0;
    font-weight: 400;
    display: block;
    margin-bottom: 4px;
}

footer {
    padding-top: 40px;
    border-top: 1px solid #222;
}

.contact {
    margin-bottom: 30px;
}

.contact p {
    font-size: 0.9rem;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 300;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 8px 16px;
}

.email-link:hover {
    color: #e0e0e0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.copyright {
    font-size: 0.85rem;
    color: #666;
    letter-spacing: 1px;
}

.streaming-links {
    display: flex;
    gap: 12px;
}

.streaming-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.streaming-icon:hover {
    color: #b0b0b0;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }
    
    .logo {
        max-width: 300px;
    }
    
    header {
        margin-bottom: 40px;
    }
    
    .single h2 {
        font-size: 1rem;
        letter-spacing: 2px;
        margin-bottom: 30px;
    }
    
    .cover-wrapper {
        max-width: 350px;
    }
    
    .bio {
        flex-direction: column;
        gap: 25px;
        padding: 25px;
    }
    
    .bio-text, .band-members {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .band-members {
        border-left: none;
        border-top: 1px solid rgba(80, 80, 80, 0.3);
        padding-left: 0;
        padding-top: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}
