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

body { 
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; 
    text-align: center; 
    background: #05070a; 
    background-image: 
        radial-gradient(at 0% 0%, hsla(222,100%,12%,0.6) 0px, transparent 50%),
        radial-gradient(at 100% 100%, hsla(242,100%,15%,0.4) 0px, transparent 50%);
    color: white; 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.wrapper {
    max-width: 500px;
    width: 100%;
    padding: 40px 24px;
    background: rgba(10, 15, 26, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

h1 { 
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(255,255,255,0.2),
        3px 3px 0px #0052cc,
        -3px -3px 0px #1a0033;
}

p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #8b949e;
    margin-bottom: 12px;
}

.band-tag {
    font-weight: 700;
    color: #ffffff;
    font-size: 1.25rem;
    margin-top: 30px;
    letter-spacing: 0.5px;
    text-shadow: 0 0 15px rgba(0, 82, 204, 0.6);
}

@media (max-width: 400px) {
    h1 { font-size: 2.3rem; }
    p { font-size: 1rem; }
    .band-tag { font-size: 1.1rem; }
}
