
.instru-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    padding: 20px;
    background-color: #111;
    color: #fff;
}
.instru-item {
    background: #222;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 0 10px #000;
}
.instru-item img {
    width: 100%;
    border-radius: 8px;
}
.exclusive-label {
    color: #0f0;
    font-size: 12px;
    display: block;
    margin-top: 5px;
}
.play-btn, .buy-btn {
    display: inline-block;
    margin: 10px 5px 0;
    padding: 8px 12px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}
#global-player {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #000;
    padding: 10px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
    z-index: 9999;
}
