body {
  margin: 0;
  font-family: Arial, sans-serif;
}


a {
text-decoration: none;
}


.bosh {
text-align: center;
color: #ffffff;
background-color: #59b300;
display: block;
padding: 15px;
font-size: 22px;
font-weight: bold;
transition: 0.5s;
}

.bosh:hover {
background-color: #336600;
transition: 0.5s;
}





.artist-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.artist-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    max-width: 350px;
    width: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    transition: 0.4s ease;
}

.artist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.7);
}

/* Endi rasm HTMLdan keladi */
.artist-image {
margin-top: 10px;
    width: 100%;
    height: 350px;

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain; /* Rasm to‘liq ko‘rinadi */
    background-color: #fff;
}

.artist-info {
    padding: 20px;
}

.artist-info h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.artist-info p {
    font-size: 20px;
    opacity: 0.8;
}

@media (max-width: 500px) {
    .artist-image {
        height: 280px;
    }
}












/* Song Card */
.song-card {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 8px;
    margin: 15px;

    background: rgba(255,255,255,0.06);
    border-radius: 15px;

    text-decoration: none;
    color: #000;

    transition: 0.3s ease;
    backdrop-filter: blur(6px);
box-shadow: 0 3px 11px rgba(0,0,0,0.4);
}

.song-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* Kvadrat rasm */
.song-image {
    width: 80px;
    height: 80px;

    border-radius: 12px;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; /* Bu yerda cover yaxshi ishlaydi */

    flex-shrink: 0;
}

/* Info qismi */
.song-info {
    display: flex;
    flex-direction: column;
}

.song-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.song-artist {
    font-size: 14px;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 500px) {
    .song-image {
        width: 65px;
        height: 65px;
    }

    .song-title {
        font-size: 16px;
    }
}