/* General Reset */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Lucida Console", "Monaco", "Courier New", monospace;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* Background Photo (artist-photo1.jpg) */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('artist-photo1.jpg') no-repeat center center;
    background-size: cover;
    
    /* ADJUST SATURATION HERE */
    /* 0% is Black & White, 100% is Normal, 200% is Extra Bright */
    filter: saturate(60%) brightness(60%); 
    
    z-index: -1;
}


#main-container {
    width: 100%;
    max-width: 480px;
    position: relative;
    z-index: 1;
}

.status-bar {
    font-size: 10px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 1px 1px 1px #000;
    letter-spacing: 1px;
}

.profile-card {
    background-color: #ffffff;
    border: 3px solid #000000;
    padding: 25px;
    box-shadow: 8px 8px 0px #000000; 
}

.image-container {
    width: 100%;
    border: 1px solid #000;
    margin-bottom: 20px;
    line-height: 0;
    overflow: hidden;
}

.artist-image {
    width: 100%;
    height: auto;
    /* Keeping this grayscale for the "Pollen Soda" look */
    filter: grayscale(100%); 
}

.artist-name {
    font-size: 1.5rem;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.divider {
    height: 2px;
    background-color: #000;
    margin-bottom: 20px;
}

.bio-section {
    font-size: 13px;
    line-height: 1.6;
}

.footer {
    text-align: center;
    margin-top: 25px;
    font-size: 10px;
    color: #ffffff;
    text-shadow: 1px 1px 1px #000;
}

/* Mobile Friendly Tweak */
@media (max-width: 480px) {
    .profile-card {
        padding: 15px;
    }
}