.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.buttons img {
    width: 88px;
    height: 31px;
}

.content-box {
    position: relative;
    max-width: 960px;
}

#mouse {
    position: absolute;
    bottom: -15px;
    left: -20px;
    transform: rotate(-10deg);
    width: 40px;
    height: auto;
    z-index: 10;
}

#internet-explorer {
    position: absolute;
    top: -15px;
    right: -20px;
    transform: rotate(10deg);
    width: 40px;
    height: auto;
    z-index: 10;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
    margin-top: 15px;
}

.album-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s;
}

.album-card:hover {
    transform: scale(1.05);
}

.album-card img {
    width: 100%;
    height: auto;
}

.album-info {
    padding: 10px;
}

.album-name {
    font-weight: bold;
    font-size: 1em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.artist-name {
    font-size: 0.9em;
    color: #666;
}

.play-count {
    font-size: 0.7em;
    color: #999;
}

.album-info a {
    text-decoration: none;
    color: inherit;
}

.album-info a:hover {
    text-decoration: underline;
}
