body {
    background: #000;
}

.bn-app {
    color: #fff;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.bn-hero {
    padding: 40px 0;
}

.bn-hero h1 {
    font-size: 40px;
}

.bn-hero p {
    color: #aaa;
}

.bn-row {
    margin-bottom: 40px;
}

.bn-row-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bn-row-header h2 {
    border-left: 4px solid #e50914;
    padding-left: 10px;
}

.bn-nav span {
    cursor: pointer;
    margin-left: 10px;
    font-size: 20px;
}

.bn-slider {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    scroll-behavior: smooth;
    padding-top: 15px;
}

.bn-slider::-webkit-scrollbar {
    display: none;
}

.bn-item {
    min-width: 160px;
    transition: transform 0.3s ease;
}

.bn-item:hover {
    transform: scale(1.1);
}

.bn-art {
    height: 180px;
    background-size: cover;
    border-radius: 8px;
    position: relative;
}

.bn-play {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #e50914;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

.bn-item:hover .bn-play {
    opacity: 1;
    transform: scale(1.1);
}

.bn-item p {
    font-size: 13px;
    margin-top: 8px;
}
