:root {
    --bs-body-bg: var(--bst-bg);
    --bs-body-color: var(--bst-text);
    --bs-link-color: var(--bst-text);
    --bs-link-hover-color: var(--bst-accent);
    --bs-border-color: var(--bst-border);
    --bs-border-radius: 0;
    --bs-border-radius-sm: 0;
    --bs-border-radius-lg: 0;
    --bs-primary: var(--bst-accent);
    --bs-primary-rgb: 224, 169, 109;
}

* {
    box-sizing: border-box;
}

html {
    background: var(--bst-bg);
}

body,
.bst-body {
    margin: 0;
    padding: 0;
    background: var(--bst-bg);
    color: var(--bst-text);
    font-family: var(--bst-font);
    font-size: 15px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 600;
    color: var(--bst-text);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

a {
    color: var(--bst-text);
    text-decoration: none;
    transition: color var(--bst-transition);
}

a:hover {
    color: var(--bst-accent);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
}

.bst-text-secondary { color: var(--bst-text-secondary); }
.bst-text-muted { color: var(--bst-text-muted); }

.bst-duration,
.bst-views,
.bst-hot,
.bst-rank-num {
    font-variant-numeric: tabular-nums;
}

.only-pc { display: block; }
.only-mobile { display: none; }
@media (max-width: 991.98px) {
    .only-pc { display: none; }
    .only-mobile { display: block; }
}

.bst-nav-spacer {
    height: var(--bst-nav-h);
}

.bst-navbar {
    background: var(--bst-bg-nav);
    border-bottom: 1px solid var(--bst-border);
    min-height: var(--bst-nav-h);
    padding: 0 16px;
    backdrop-filter: none;
}

.bst-navbar .container-fluid {
    max-width: var(--bst-content-max);
    padding: 0;
    min-height: var(--bst-nav-h);
    align-items: center;
    margin: 0 auto;
}

.bst-navbar .navbar-brand {
    color: var(--bst-text);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.01em;
    padding: 0;
    margin: 0 24px 0 0;
    display: flex;
    align-items: center;
    height: var(--bst-nav-h);
}

.bst-navbar .navbar-brand img {
    max-height: 28px;
    width: auto;
}

.bst-navbar .navbar-nav {
    gap: 0;
    align-items: center;
}

.bst-navbar .nav-link {
    color: var(--bst-text-secondary);
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 0;
    position: relative;
    transition: color var(--bst-transition);
}

.bst-navbar .nav-link:hover,
.bst-navbar .nav-link:focus {
    color: var(--bst-accent);
    background: transparent;
}

.bst-navbar .nav-item.dropdown .dropdown-toggle::after {
    margin-left: 6px;
    border-top-color: currentColor;
}

.bst-navbar .nav-item.dropdown {
    position: relative;
}

.bst-navbar .navbar-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: auto;
    z-index: 1050;
}

.bst-dropdown-menu {
    background: var(--bst-bg-surface);
    border: 1px solid var(--bst-border);
    border-radius: 0;
    padding: 4px 0;
    min-width: 180px;
    margin-top: 0 !important;
}

.bst-dropdown-menu .dropdown-item {
    color: var(--bst-text-secondary);
    font-size: 14px;
    padding: 8px 14px;
    transition: color var(--bst-transition), background var(--bst-transition);
}

.bst-dropdown-menu .dropdown-item:hover,
.bst-dropdown-menu .dropdown-item:focus {
    color: var(--bst-accent);
    background: var(--bst-bg-card-hover);
}

.bst-nav-search {
    position: relative;
    width: 260px;
}

.bst-nav-search .form-control {
    background: var(--bst-bg-input);
    border: 1px solid var(--bst-border);
    color: var(--bst-text);
    font-size: 14px;
    height: 36px;
    padding: 0 36px 0 12px;
    border-radius: 0;
    box-shadow: none;
    transition: border-color var(--bst-transition);
}

.bst-nav-search .form-control:focus {
    background: var(--bst-bg-input);
    color: var(--bst-text);
    border-color: var(--bst-accent);
    box-shadow: none;
    outline: none;
}

.bst-nav-search .form-control::placeholder {
    color: var(--bst-text-muted);
}

.bst-search-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 36px;
    width: 36px;
    background: transparent;
    border: 0;
    color: var(--bst-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--bst-transition);
}

.bst-search-btn:hover {
    color: var(--bst-accent);
}

.bst-header-ads {
    display: none;
    flex: 1 1 auto;
    min-width: 0;
    max-width: min(46vw, 220px);
    margin: 0 8px;
    overflow: hidden;
}

.bst-txt-ads {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.bst-txt-ads::-webkit-scrollbar {
    display: none;
}

.bst-txt-ad-item {
    flex: 0 0 auto;
    min-width: 0;
}

.bst-txt-ad-item a {
    display: inline-flex;
    align-items: center;
    max-width: 132px;
    height: 28px;
    padding: 0 10px;
    border: 1px solid var(--bst-border);
    border-radius: 0;
    background: var(--bst-bg-card);
    color: var(--bst-accent);
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
}

.bst-txt-ad-item a:hover,
.bst-txt-ad-item a:focus {
    color: var(--bst-text);
    border-color: var(--bst-accent);
    background: var(--bst-bg-card-hover);
}

.bst-txt-ad-item a span {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    .bst-navbar .navbar-brand {
        flex: 0 1 auto;
        max-width: 36vw;
        margin-right: 0;
        overflow: hidden;
    }

    .bst-header-ads {
        display: block;
    }
}

.bst-nav-search .search-history-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    min-width: 260px;
    display: none;
    overflow: hidden;
    background: var(--bst-bg-surface);
    border: 1px solid var(--bst-border);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.32);
    z-index: 2000;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity var(--bst-transition), transform var(--bst-transition);
}

.bst-nav-search .search-history-dropdown.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.bst-nav-search .search-history-header {
    padding: 14px 16px 8px;
}

.bst-nav-search .search-history-title {
    margin: 0;
    color: var(--bst-text);
    font-size: 14px;
    font-weight: 600;
}

.bst-nav-search .search-history-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 38px;
    padding: 0 16px;
    color: var(--bst-text-secondary);
    cursor: pointer;
}

.bst-nav-search .search-history-item:hover {
    background: var(--bst-bg-card-hover);
    color: var(--bst-text);
}

.bst-nav-search .search-history-text {
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
}

.bst-nav-search .search-history-delete {
    flex: 0 0 auto;
    padding-left: 12px;
    color: var(--bst-text-muted);
    font-size: 18px;
    line-height: 1;
}

.bst-nav-search .search-history-delete:hover {
    color: var(--bst-accent);
}

.bst-nav-search .search-history-footer {
    padding: 10px 16px 14px;
    border-top: 1px solid var(--bst-border);
}

.bst-nav-search .search-history-clear-all {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--bst-accent);
    font-size: 13px;
    text-align: center;
}

.bst-nav-search .search-history-clear-all:hover {
    color: var(--bst-accent-hover);
}

.navbar-toggler {
    padding: 6px 8px;
    border: 1px solid var(--bst-border);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23A9A9B0' stroke-width='2' stroke-linecap='round' d='M4 8h22M4 15h22M4 22h22'/%3E%3C/svg%3E");
    width: 22px;
    height: 22px;
}

.bst-offcanvas {
    background: var(--bst-bg);
    border-right: 1px solid var(--bst-border);
    color: var(--bst-text);
    width: 280px;
}

.bst-offcanvas .offcanvas-header {
    border-bottom: 1px solid var(--bst-border);
    padding: 14px 16px;
}

.bst-offcanvas .offcanvas-title {
    color: var(--bst-text);
    font-size: 16px;
    font-weight: 600;
}

.bst-offcanvas .btn-close {
    filter: invert(1) grayscale(1) opacity(0.7);
    box-shadow: none;
    border-radius: 0;
}

.bst-offcanvas .nav-link {
    color: var(--bst-text-secondary);
    padding: 12px 16px;
    border-bottom: 1px solid var(--bst-border);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bst-offcanvas .nav-link:hover {
    color: var(--bst-accent);
    background: transparent;
}

.bst-offcanvas .collapse .nav-link {
    padding-left: 28px;
    font-size: 13px;
    border-bottom: 1px solid var(--bst-border);
}

.bst-main {
    max-width: var(--bst-content-max);
    margin: 0 auto;
    padding: 24px 16px 48px;
}

.bst-home-title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    margin: 8px 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--bst-border);
}

.bst-main > .bst-home-list {
    max-width: none;
    padding: 0;
}

.bst-category-list-page {
    padding: 16px 16px 48px;
}

@media (max-width: 767.98px) {
    .bst-home-page {
        padding-left: 8px;
        padding-right: 8px;
    }

    .bst-category-list-page {
        padding-left: 8px;
        padding-right: 8px;
    }
}

.bst-section {
    margin-bottom: var(--bst-section-gap);
    padding-top: 8px;
    border-top: 1px solid var(--bst-border);
}

.bst-section:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.bst-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-left: 12px;
    position: relative;
    min-height: 24px;
}

.bst-section-header::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 3px;
    background: var(--bst-accent);
}

.bst-section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--bst-text);
    margin: 0;
    letter-spacing: -0.01em;
}

.bst-more-btn {
    color: var(--bst-text-secondary);
    font-size: 13px;
    padding: 4px 0;
    border: 0;
    background: transparent;
    transition: color var(--bst-transition);
}

.bst-more-btn:hover {
    color: var(--bst-accent);
}

.bst-more-btn::after {
    content: " →";
}

.bst-grid {
    display: grid;
    grid-template-columns: repeat(var(--bst-grid-cols-desktop), minmax(0, 1fr));
    gap: var(--bst-gap);
}

.bst-home-list .bst-section .bst-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bst-category-list-page .bst-grid {
    display: flex;
    flex-wrap: wrap;
}

.bst-category-list-page .bst-card {
    flex: 1 1 calc((100% - 60px) / 6);
    min-width: 0;
}

@media (max-width: 1199.98px) {
    .bst-grid {
        grid-template-columns: repeat(var(--bst-grid-cols-tablet), minmax(0, 1fr));
    }

    .bst-home-list .bst-section .bst-grid {
        grid-template-columns: repeat(var(--bst-grid-cols-tablet), minmax(0, 1fr));
    }

    .bst-category-list-page .bst-card {
        flex-basis: calc((100% - 24px) / 3);
    }
}

@media (max-width: 767.98px) {
    .bst-grid {
        grid-template-columns: repeat(var(--bst-grid-cols-mobile), minmax(0, 1fr));
        gap: 10px;
    }

    .bst-home-list .bst-section .bst-grid {
        grid-template-columns: repeat(var(--bst-grid-cols-mobile), minmax(0, 1fr));
    }

    .bst-category-list-page .bst-card {
        flex-basis: calc((100% - 10px) / 2);
    }
}

.bst-card {
    background: var(--bst-bg-card);
    border: 1px solid var(--bst-border);
    border-radius: 0;
    overflow: hidden;
    position: relative;
    transition: border-color var(--bst-transition);
}

.bst-card:hover {
    border-color: var(--bst-border-strong);
}

.bst-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: transparent;
    transition: background var(--bst-transition);
    pointer-events: none;
}

.bst-card:hover::after {
    background: var(--bst-accent);
}

.bst-card a {
    display: block;
    color: inherit;
}

.bst-card-cover {
    position: relative;
    overflow: hidden;
    background: var(--bst-bg-surface);
    border-bottom: 1px solid var(--bst-border);
}

.bst-card-cover img {
    width: 100%;
    height: auto;
    display: block;
}

.bst-duration {
    position: absolute;
    right: 6px;
    bottom: 6px;
    background: rgba(11, 11, 13, 0.85);
    color: var(--bst-text);
    font-size: 11px;
    padding: 2px 6px;
    border: 1px solid var(--bst-border);
    font-variant-numeric: tabular-nums;
}

.bst-card-body {
    padding: 10px 12px 12px;
}

.bst-card-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--bst-text);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 8px;
    min-height: 2.8em;
}

.bst-card:hover .bst-card-title {
    color: var(--bst-accent);
}

.bst-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: var(--bst-text-muted);
    font-size: 12px;
}

.bst-views {
    color: var(--bst-text-muted);
    white-space: nowrap;
}

.bst-views::before {
    content: "▶ ";
    color: var(--bst-accent);
}

.bst-card-tags {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    overflow: hidden;
    max-height: 1.4em;
    justify-content: flex-end;
    flex: 1;
}

.bst-tag {
    font-size: 11px;
    color: var(--bst-text-secondary);
    background: transparent;
    border: 1px solid var(--bst-border);
    padding: 1px 6px;
    border-radius: 0;
    cursor: pointer;
    transition: color var(--bst-transition), border-color var(--bst-transition);
    display: inline-block;
    line-height: 1.4;
}

.bst-tag:hover {
    color: var(--bst-accent);
    border-color: var(--bst-accent);
}

.bst-carousel {
    margin-bottom: 24px;
    border: 1px solid var(--bst-border);
    aspect-ratio: 1920 / 700;
    overflow: hidden;
    position: relative;
    background: var(--bst-bg-surface);
}

.bst-carousel .carousel {
    height: 100%;
}

.bst-carousel .carousel-inner {
    height: 100%;
}

.bst-carousel .carousel-item {
    height: 100%;
    overflow: hidden;
    background: var(--bst-bg-surface);
    position: relative;
    transition: none;
}

.bst-carousel .carousel-item img {
    width: 100%;
    height: 100%;
}

.bst-carousel .bst-carousel-ambient {
    position: absolute;
    inset: 0;
    display: flex;
    overflow: hidden;
    filter: blur(8px) saturate(1.08);
    transform: scale(1.025);
    opacity: 0.82;
    z-index: 0;
    pointer-events: none;
    background: var(--bst-bg-surface);
}

.bst-carousel .bst-carousel-ambient::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.04) 28%, rgba(0, 0, 0, 0.04) 72%, rgba(0, 0, 0, 0.12));
}

.bst-carousel .bst-carousel-ambient-img {
    flex: 1 1 0;
    min-width: 0;
    width: 33.333%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.bst-carousel .bst-carousel-ambient-img--current {
    flex-basis: 42%;
    opacity: 0.96;
}

.bst-carousel .bst-carousel-img {
    position: relative;
    z-index: 1;
    object-fit: contain;
    background: transparent;
}

.bst-carousel .carousel-indicators {
    margin-bottom: 10px;
}

.bst-carousel .carousel-indicators [data-bs-target] {
    width: 24px;
    height: 3px;
    border-radius: 0;
    background: rgba(237, 237, 240, 0.4);
    border: 0;
    opacity: 1;
    margin: 0 3px;
}

.bst-carousel .carousel-indicators .active {
    background: var(--bst-accent);
}

.bst-carousel .carousel-control-prev,
.bst-carousel .carousel-control-next {
    width: 48px;
    opacity: 0.7;
}

.bst-carousel .carousel-control-prev:hover,
.bst-carousel .carousel-control-next:hover {
    opacity: 1;
}

@media (max-width: 1367px) {
    .bst-carousel {
        aspect-ratio: 375 / 210;
        margin-bottom: 18px;
    }
}

.bst-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--bst-text-muted);
    padding: 0 0 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--bst-border);
    flex-wrap: wrap;
}

.bst-breadcrumb a {
    color: var(--bst-text-secondary);
}

.bst-breadcrumb a:hover {
    color: var(--bst-accent);
}

.bst-breadcrumb-sep {
    color: var(--bst-text-muted);
    margin: 0 2px;
}

.bst-breadcrumb-current {
    color: var(--bst-text);
}

.bst-back-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--bst-border);
    background: transparent;
    color: var(--bst-text-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-right: 6px;
    transition: color var(--bst-transition), border-color var(--bst-transition);
}

.bst-back-btn:hover {
    color: var(--bst-accent);
    border-color: var(--bst-accent);
}

.bst-detail-page {
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--bst-sidebar-w);
    gap: 24px;
}

.bst-detail-main {
    min-width: 0;
}

@media (max-width: 991.98px) {
    .bst-detail-page {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.bst-player-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border: 1px solid var(--bst-border);
    overflow: hidden;
}

#vd-box {
    width: 100%;
    height: 100%;
}

.bst-video-pause-box {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bst-preview-cta {
    display: block;
    margin-top: 12px;
    padding: 12px 16px;
    background: var(--bst-accent);
    color: var(--bst-accent-ink);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border: 0;
    border-radius: 0;
    transition: background var(--bst-transition);
}

.bst-preview-cta:hover {
    background: var(--bst-accent-hover);
    color: var(--bst-accent-ink);
}

.bst-video-info {
    padding: 20px 0;
    border-bottom: 1px solid var(--bst-border);
}

.bst-video-title {
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}

.bst-video-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 20px;
    color: var(--bst-text-muted);
    font-size: 13px;
    margin-bottom: 14px;
    font-variant-numeric: tabular-nums;
}

.bst-video-meta span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.bst-video-meta span a {
    color: var(--bst-text-secondary);
}

.bst-video-meta span a:hover {
    color: var(--bst-accent);
}

.bst-video-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.bst-video-tags .bst-tag {
    font-size: 12px;
    padding: 3px 8px;
}

.bst-video-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    align-items: center;
}

.bst-phone-play {
    position: relative;
    background: transparent;
    color: var(--bst-text);
    border: 1px solid var(--bst-border);
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 0;
    cursor: pointer;
    transition: color var(--bst-transition), border-color var(--bst-transition);
}

.bst-phone-play:hover {
    color: var(--bst-accent);
    border-color: var(--bst-accent);
}

.bst-phone-popup {
    position: absolute;
    left: 0;
    top: calc(100% + 6px);
    z-index: 20;
    background: var(--bst-bg-surface);
    border: 1px solid var(--bst-border);
    padding: 10px;
    display: none;
    min-width: 160px;
    text-align: center;
}

.bst-phone-play:hover .bst-phone-popup,
.bst-phone-play:focus .bst-phone-popup,
.bst-phone-play:focus-within .bst-phone-popup {
    display: block;
}

.bst-phone-qr {
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.bst-video-actions .btn {
    background: transparent;
    color: var(--bst-text);
    border: 1px solid var(--bst-border);
    border-radius: 0;
    font-size: 13px;
    padding: 8px 14px;
    transition: color var(--bst-transition), border-color var(--bst-transition);
}

.bst-video-actions .btn:hover,
.bst-video-actions .btn:focus {
    color: var(--bst-accent);
    border-color: var(--bst-accent);
    background: transparent;
    box-shadow: none;
}

.bst-video-desc {
    color: var(--bst-text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--bst-border);
    white-space: pre-wrap;
}

.bst-sidebar {
    border-left: 1px solid var(--bst-border);
    padding-left: 24px;
}

@media (max-width: 991.98px) {
    .bst-sidebar {
        border-left: 0;
        border-top: 1px solid var(--bst-border);
        padding-left: 0;
        padding-top: 20px;
        margin-top: 20px;
    }
}

.bst-sidebar-title {
    font-size: 16px;
    font-weight: 700;
    padding: 0 0 10px 12px;
    margin: 0 0 14px;
    border-bottom: 1px solid var(--bst-border);
    position: relative;
}

.bst-sidebar-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 12px;
    width: 3px;
    background: var(--bst-accent);
}

.bst-sidebar-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--bst-border);
    color: var(--bst-text);
    transition: color var(--bst-transition);
}

.bst-sidebar-item:last-of-type {
    border-bottom: 0;
}

.bst-sidebar-item:hover {
    color: var(--bst-accent);
}

.bst-sidebar-cover {
    position: relative;
    overflow: hidden;
    background: var(--bst-bg-surface);
    border: 1px solid var(--bst-border);
}

.bst-sidebar-cover img {
    width: 100%;
    height: auto;
    display: block;
}

.bst-sidebar-item h4 {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    color: inherit;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bst-related-mobile {
    display: none;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--bst-border);
}

@media (max-width: 991.98px) {
    .bst-related-mobile {
        display: block;
    }
    .bst-sidebar {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .bst-detail-main-page {
        padding: 16px 12px 36px;
    }

    .bst-breadcrumb {
        gap: 4px;
        padding-bottom: 12px;
        margin-bottom: 12px;
    }

    .bst-video-info {
        padding: 16px 0;
    }

    .bst-video-title {
        font-size: 20px;
        line-height: 1.35;
    }

    .bst-video-meta {
        gap: 6px 12px;
        font-size: 12px;
    }

    .bst-video-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .bst-phone-play,
    .bst-video-actions .btn {
        min-height: 44px;
        width: 100%;
        padding: 0 10px;
    }

    .bst-phone-popup {
        left: 0;
        right: auto;
    }

    .bst-video-desc {
        font-size: 13px;
    }
}

.bst-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin: 32px 0 16px;
    flex-wrap: wrap;
    font-variant-numeric: tabular-nums;
}

.bst-page-item {
    display: inline-flex;
}

.bst-page-link {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bst-border);
    color: var(--bst-text-secondary);
    font-size: 13px;
    border-radius: 0;
    transition: color var(--bst-transition), border-color var(--bst-transition), background var(--bst-transition);
}

a.bst-page-link:hover {
    color: var(--bst-accent);
    border-color: var(--bst-accent);
}

.bst-page-item.active .bst-page-link {
    background: var(--bst-accent);
    color: var(--bst-accent-ink);
    border-color: var(--bst-accent);
    font-weight: 600;
}

.bst-page-ellipsis {
    border-color: transparent;
    cursor: default;
}

.bst-rank-section {
    margin-top: 24px;
}

.bst-rank-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0 0 10px 12px;
    margin: 0 0 12px;
    border-bottom: 1px solid var(--bst-border);
    position: relative;
}

.bst-rank-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 12px;
    width: 3px;
    background: var(--bst-accent);
}

.bst-rank-item {
    display: grid;
    grid-template-columns: 40px 140px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--bst-border);
    color: var(--bst-text);
    transition: color var(--bst-transition);
}

.bst-rank-item:hover {
    color: var(--bst-accent);
}

.bst-rank-num {
    font-size: 20px;
    font-weight: 700;
    color: var(--bst-text-muted);
    text-align: center;
    font-variant-numeric: tabular-nums;
}

.bst-rank-num.top0,
.bst-rank-num.top1,
.bst-rank-num.top2 {
    color: var(--bst-accent);
}

.bst-rank-cover {
    position: relative;
    overflow: hidden;
    background: var(--bst-bg-surface);
    border: 1px solid var(--bst-border);
}

.bst-rank-cover img {
    width: 100%;
    height: auto;
    display: block;
}

.bst-rank-info h3 {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 6px;
    color: inherit;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bst-rank-info .bst-card-tags {
    justify-content: flex-start;
}

.bst-hot {
    font-size: 12px;
    color: var(--bst-text-muted);
    font-variant-numeric: tabular-nums;
}

.bst-search-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0 16px;
    border-bottom: 1px solid var(--bst-border);
    margin-bottom: 16px;
}

.bst-search-input {
    flex: 1;
    background: var(--bst-bg-input);
    border: 1px solid var(--bst-border);
    color: var(--bst-text);
    height: 36px;
    padding: 0 12px;
    font-size: 14px;
    border-radius: 0;
}

.bst-search-input:focus {
    outline: none;
    border-color: var(--bst-accent);
}

.bst-search-action-btn {
    background: var(--bst-accent);
    color: var(--bst-accent-ink);
    border: 0;
    height: 36px;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0;
    transition: background var(--bst-transition);
}

.bst-search-action-btn:hover {
    background: var(--bst-accent-hover);
}

.bst-history-tag {
    display: inline-block;
    font-size: 13px;
    color: var(--bst-text-secondary);
    border: 1px solid var(--bst-border);
    padding: 4px 10px;
    margin: 0 6px 6px 0;
    transition: color var(--bst-transition), border-color var(--bst-transition);
}

.bst-history-tag:hover {
    color: var(--bst-accent);
    border-color: var(--bst-accent);
}

.bst-404-wrap {
    max-width: 560px;
    margin: 80px auto;
    padding: 0 16px;
    text-align: center;
}

.bst-404-card {
    border: 1px solid var(--bst-border);
    padding: 48px 28px;
    background: var(--bst-bg-surface);
}

.bst-404-code {
    font-size: clamp(64px, 12vw, 120px);
    font-weight: 800;
    color: var(--bst-accent);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
    font-variant-numeric: tabular-nums;
}

.bst-404-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px;
}

.bst-404-desc {
    color: var(--bst-text-secondary);
    font-size: 14px;
    margin: 0 0 24px;
    line-height: 1.6;
}

.bst-404-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.bst-404-btn {
    display: inline-block;
    padding: 10px 24px;
    background: var(--bst-accent);
    color: var(--bst-accent-ink);
    font-weight: 600;
    font-size: 14px;
    border: 0;
    border-radius: 0;
    transition: background var(--bst-transition);
}

.bst-404-btn:hover {
    background: var(--bst-accent-hover);
    color: var(--bst-accent-ink);
}

.bst-404-search {
    display: flex;
    gap: 0;
    width: 100%;
    max-width: 360px;
}

.bst-404-search input {
    flex: 1;
    background: var(--bst-bg-input);
    border: 1px solid var(--bst-border);
    color: var(--bst-text);
    height: 36px;
    padding: 0 12px;
    font-size: 14px;
    border-radius: 0;
}

.bst-404-search input:focus {
    outline: none;
    border-color: var(--bst-accent);
}

.bst-404-search button {
    background: transparent;
    border: 1px solid var(--bst-border);
    border-left: 0;
    color: var(--bst-text);
    padding: 0 16px;
    font-size: 13px;
    cursor: pointer;
    transition: color var(--bst-transition), border-color var(--bst-transition);
}

.bst-404-search button:hover {
    color: var(--bst-accent);
    border-color: var(--bst-accent);
}

.bst-static-page {
    max-width: 860px;
    margin: 0 auto;
}

.bst-static-card {
    background: var(--bst-bg-surface);
    border: 1px solid var(--bst-border);
    padding: 32px 28px;
}

.bst-static-header {
    border-bottom: 1px solid var(--bst-border);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.bst-static-header h1 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.bst-static-body {
    color: var(--bst-text-secondary);
    font-size: 14px;
    line-height: 1.75;
}

.bst-static-body p {
    margin: 0 0 14px;
}

.bst-static-section {
    margin-bottom: 24px;
}

.bst-static-section-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--bst-text);
    margin: 0 0 10px;
    padding-left: 10px;
    position: relative;
}

.bst-static-section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: var(--bst-accent);
}

.bst-static-section-content {
    color: var(--bst-text-secondary);
    font-size: 14px;
    line-height: 1.75;
}

.bst-static-faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bst-static-faq-item {
    padding: 14px 0;
    border-bottom: 1px solid var(--bst-border);
    color: var(--bst-text);
    font-size: 15px;
    font-weight: 500;
}

.bst-static-faq-item:last-child {
    border-bottom: 0;
}

.bst-static-faq-answer {
    margin-top: 8px;
    color: var(--bst-text-secondary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}

.bst-static-link-btn {
    display: inline-block;
    padding: 8px 16px;
    margin: 4px 8px 4px 0;
    background: transparent;
    color: var(--bst-text);
    border: 1px solid var(--bst-border);
    font-size: 14px;
    transition: color var(--bst-transition), border-color var(--bst-transition);
}

.bst-static-link-btn:hover {
    color: var(--bst-accent);
    border-color: var(--bst-accent);
}

.bst-age-modal .modal-content {
    background: var(--bst-bg-surface);
    border: 1px solid var(--bst-border);
    border-radius: 0;
    color: var(--bst-text);
}

.bst-age-modal .modal-header {
    border-bottom: 1px solid var(--bst-border);
    padding: 16px 20px;
}

.bst-age-modal .modal-title {
    font-weight: 700;
    font-size: 16px;
}

.bst-age-modal .modal-body {
    padding: 20px;
    font-size: 14px;
    line-height: 1.7;
}

.bst-age-enter,
.bst-age-leave {
    width: 100%;
    max-width: 280px;
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 0;
    cursor: pointer;
    font-weight: 600;
    transition: background var(--bst-transition), color var(--bst-transition), border-color var(--bst-transition);
}

.bst-age-enter {
    background: var(--bst-accent);
    color: var(--bst-accent-ink);
    border: 1px solid var(--bst-accent);
}

.bst-age-enter:hover {
    background: var(--bst-accent-hover);
    border-color: var(--bst-accent-hover);
}

.bst-age-leave {
    background: transparent;
    color: var(--bst-text-secondary);
    border: 1px solid var(--bst-border);
}

.bst-age-leave:hover {
    color: var(--bst-text);
    border-color: var(--bst-border-strong);
}

.bst-share-modal .modal-content {
    background: var(--bst-bg-surface);
    border: 1px solid var(--bst-border);
    border-radius: 0;
    color: var(--bst-text);
}

.bst-share-modal .modal-header {
    border-bottom: 1px solid var(--bst-border);
    padding: 14px 20px;
}

.bst-share-modal .modal-title {
    font-size: 15px;
    font-weight: 700;
}

.bst-share-modal .btn-close {
    filter: invert(1) grayscale(1) opacity(0.7);
    box-shadow: none;
    border-radius: 0;
}

.bst-share-modal .modal-body {
    padding: 20px;
    font-size: 14px;
}

.bst-share-url {
    display: block;
    background: var(--bst-bg-input);
    border: 1px solid var(--bst-border);
    padding: 8px 12px;
    color: var(--bst-text);
    word-break: break-all;
    font-family: var(--bst-font-mono);
    font-size: 12px;
    margin: 10px 0 6px;
}

.bst-copy-btn {
    background: var(--bst-accent);
    color: var(--bst-accent-ink);
    border: 0;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0;
    transition: background var(--bst-transition);
}

.bst-copy-btn:hover {
    background: var(--bst-accent-hover);
}

.bst-float-banner {
    position: fixed;
    right: 16px;
    bottom: 88px;
    z-index: 1000;
    max-width: 180px;
    border: 1px solid var(--bst-border);
    background: var(--bst-bg-surface);
}

.bst-float-banner img {
    display: block;
    width: 100%;
    height: auto;
}

.bst-float-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 22px;
    height: 22px;
    background: var(--bst-bg);
    border: 1px solid var(--bst-border);
    color: var(--bst-text-secondary);
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    cursor: pointer;
    transition: color var(--bst-transition), border-color var(--bst-transition);
}

.bst-float-close:hover {
    color: var(--bst-accent);
    border-color: var(--bst-accent);
}

.bst-scroll-top {
    position: fixed;
    right: 16px;
    bottom: 24px;
    width: 40px;
    height: 40px;
    background: var(--bst-bg-surface);
    border: 1px solid var(--bst-border);
    color: var(--bst-text-secondary);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: color var(--bst-transition), border-color var(--bst-transition);
}

.bst-scroll-top.show {
    display: flex;
}

.bst-scroll-top:hover {
    color: var(--bst-accent);
    border-color: var(--bst-accent);
}

.bst-scroll-top svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bst-text-adv-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 16px 0;
}

@media (max-width: 767.98px) {
    .bst-text-adv-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.bst-text-adv-item {
    display: block;
    padding: 10px 12px;
    background: var(--bst-bg-surface);
    border: 1px solid var(--bst-border);
    color: var(--bst-text-secondary);
    font-size: 13px;
    text-align: center;
    border-radius: 0;
    transition: color var(--bst-transition), border-color var(--bst-transition);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bst-text-adv-item:hover {
    color: var(--bst-accent);
    border-color: var(--bst-accent);
}

.bst-scroll-container {
    position: relative;
    overflow: hidden;
    margin: 12px 0;
}

.bst-scroll-wrapper {
    --bst-scroll-item: 78px;
    --bst-scroll-gap: 6px;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: var(--bst-scroll-item);
    gap: var(--bst-scroll-gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
    scrollbar-width: thin;
    scrollbar-color: var(--bst-border) transparent;
}

.bst-scroll-wrapper--marquee {
    overflow: hidden;
    scroll-snap-type: none;
    padding-bottom: 0;
    scrollbar-width: none;
}

.bst-scroll-wrapper::-webkit-scrollbar {
    height: 4px;
}

.bst-scroll-wrapper--marquee::-webkit-scrollbar {
    display: none;
}

.bst-scroll-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.bst-scroll-wrapper::-webkit-scrollbar-thumb {
    background: var(--bst-border);
}

.bst-scroll-wrapper a {
    scroll-snap-align: start;
    display: block;
    width: var(--bst-scroll-item);
    flex: 0 0 var(--bst-scroll-item);
    min-width: 0;
    text-align: center;
    color: var(--bst-text-secondary);
    transition: color var(--bst-transition);
}

.bst-scroll-wrapper a:hover {
    color: var(--bst-accent);
}

.bst-scroll-wrapper img {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    display: block;
    border: 1px solid var(--bst-border);
}

.bst-scroll-track {
    display: flex;
    width: max-content;
    animation: bst-app-ad-scroll-left 32s linear infinite;
    will-change: transform;
}

.bst-scroll-wrapper--marquee:hover .bst-scroll-track,
.bst-scroll-wrapper--marquee:focus-within .bst-scroll-track {
    animation-play-state: paused;
}

.bst-scroll-track-group {
    display: flex;
    flex: 0 0 auto;
    gap: var(--bst-scroll-gap);
    padding-right: var(--bst-scroll-gap);
}

@keyframes bst-app-ad-scroll-left {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .bst-scroll-track {
        animation: none;
    }

    .bst-scroll-wrapper--marquee {
        overflow-x: auto;
        scrollbar-width: thin;
    }
}

.bst-app-title {
    font-size: 11px;
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bst-card--ad {
    border-radius: 0;
    grid-column: auto / span 3;
}

.bst-category-list-page .bst-card--ad {
    flex: 0 0 calc(50% - var(--bst-gap) / 2);
    max-width: calc(50% - var(--bst-gap) / 2);
    align-self: flex-start;
}

.bst-card--ad .bst-card-cover {
    width: 100%;
    height: var(--ad-slot-strip-li-h, 6.875rem);
    min-height: var(--ad-slot-strip-li-h, 6.875rem);
    overflow: visible;
    border-radius: 0;
}

.bst-card--ad .bst-card-cover img {
    height: 100%;
    object-fit: fill;
    border-radius: 0;
}

@media (max-width: 1199.98px) {
    .bst-card--ad {
        grid-column: 1 / -1;
    }

    .bst-category-list-page .bst-card--ad {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .bst-card--ad .bst-card-cover {
        height: var(--ad-slot-strip-li-h-sm, 2.8125rem);
        min-height: var(--ad-slot-strip-li-h-sm, 2.8125rem);
    }
}

.bst-footer {
    background: var(--bst-bg-footer);
    color: var(--bst-text-secondary);
    border-top: 1px solid var(--bst-border);
    padding: 40px 0 24px;
    margin-top: 40px;
}

.bst-footer-inner {
    max-width: var(--bst-content-max);
    margin: 0 auto;
    padding: 0 16px;
}

.bst-footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(140px, 1fr));
    gap: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--bst-border);
}

@media (max-width: 1023.98px) {
    .bst-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bst-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767.98px) {
    .bst-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .bst-footer-brand {
        grid-column: auto;
    }
}

.bst-footer-brand .bst-footer-logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--bst-text);
    margin-bottom: 12px;
}

.bst-footer-brand-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.bst-footer-home-link {
    display: none;
}

.bst-footer-brand .bst-footer-logo img {
    max-height: 30px;
    width: auto;
}

.bst-footer-desc {
    font-size: 13px;
    line-height: 1.8;
    color: var(--bst-text-muted);
}

.bst-footer-desc p {
    margin: 0 0 4px;
}

.bst-footer-desc a {
    color: var(--bst-text-secondary);
}

.bst-footer-desc a:hover {
    color: var(--bst-accent);
}

.bst-footer-col h4 {
    color: var(--bst-text);
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--bst-border);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.bst-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bst-footer-col li {
    margin: 0 0 6px;
}

.bst-footer-col a {
    color: var(--bst-text-secondary);
    font-size: 13px;
    transition: color var(--bst-transition);
}

.bst-footer-col a:hover {
    color: var(--bst-accent);
}

@media (max-width: 767.98px) {
    .bst-footer {
        padding: 24px 0 18px;
        margin-top: 28px;
    }

    .bst-footer-inner {
        padding: 0 16px;
    }

    .bst-footer-grid {
        gap: 18px;
        padding-bottom: 18px;
        border-bottom: 0;
    }

    .bst-footer-brand {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--bst-border);
        border-radius: 8px;
        padding: 16px;
    }

    .bst-footer-brand-head {
        align-items: center;
        margin-bottom: 10px;
    }

    .bst-footer-brand .bst-footer-logo {
        font-size: 17px;
        margin-bottom: 0;
    }

    .bst-footer-brand .bst-footer-logo img {
        max-height: 26px;
    }

    .bst-footer-home-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 30px;
        padding: 0 14px;
        border: 1px solid var(--bst-border);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.04);
        color: var(--bst-text-secondary);
        font-size: 12px;
        white-space: nowrap;
    }

    .bst-footer-desc {
        font-size: 12px;
        line-height: 1.7;
    }

    .bst-footer-desc p {
        margin-bottom: 2px;
        overflow-wrap: anywhere;
    }

    .bst-footer-desc-tagline,
    .bst-footer-desc-email {
        display: none;
    }

    .bst-footer-col h4 {
        margin-bottom: 10px;
        padding-bottom: 0;
        border-bottom: 0;
        font-size: 14px;
        text-transform: none;
        letter-spacing: 0;
    }

    .bst-footer-col ul {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .bst-footer-col li {
        margin: 0;
        min-width: 0;
    }

    .bst-footer-col a {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 42px;
        padding: 0 12px;
        border: 1px solid var(--bst-border);
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.03);
        font-size: 13px;
        line-height: 1.25;
        overflow-wrap: anywhere;
        touch-action: manipulation;
    }

    .bst-footer-col--protocol a::before {
        content: "";
        flex: 0 0 auto;
        width: 5px;
        height: 5px;
        margin-right: 8px;
        border-radius: 50%;
        background: var(--bst-accent);
    }

    .bst-copyright {
        padding-top: 4px;
        border-top: 1px solid var(--bst-border);
    }

    .bst-copyright p {
        margin: 0;
        font-size: 12px;
    }
}

@media (max-width: 359.98px) {
    .bst-footer-col ul {
        grid-template-columns: 1fr;
    }
}

.bst-friend-links {
    padding: 20px 0;
    border-bottom: 1px solid var(--bst-border);
}

.bst-friend-links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.bst-friend-links-grid a {
    color: var(--bst-text-muted);
    font-size: 12px;
    transition: color var(--bst-transition);
}

.bst-friend-links-grid a:hover {
    color: var(--bst-accent);
}

.bst-copyright {
    padding-top: 20px;
    text-align: center;
    color: var(--bst-text-muted);
    font-size: 12px;
}

.bst-copyright p {
    margin: 0;
}

.bst-top-banners {
    margin: 12px 0;
}

.bst-top-banners ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bst-list-banners {
    margin: 12px 0;
}

.btn {
    border-radius: 0;
    transition: color var(--bst-transition), background var(--bst-transition), border-color var(--bst-transition);
}

.btn:focus,
.btn:active {
    box-shadow: none !important;
}

.btn-primary,
.btn-primary:focus,
.btn-primary:active {
    background: var(--bst-accent);
    border-color: var(--bst-accent);
    color: var(--bst-accent-ink);
}

.btn-primary:hover {
    background: var(--bst-accent-hover);
    border-color: var(--bst-accent-hover);
    color: var(--bst-accent-ink);
}

.btn-outline-light {
    color: var(--bst-text);
    border-color: var(--bst-border);
}

.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:active {
    background: transparent;
    color: var(--bst-accent);
    border-color: var(--bst-accent);
}

.form-control:focus {
    box-shadow: none;
}

.modal-backdrop.show {
    opacity: 0.75;
}

.offcanvas-backdrop.show {
    opacity: 0.6;
}

::selection {
    background: var(--bst-accent);
    color: var(--bst-accent-ink);
}

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: var(--bst-bg);
}

body::-webkit-scrollbar-thumb {
    background: var(--bst-border-strong);
}

body::-webkit-scrollbar-thumb:hover {
    background: var(--bst-accent);
}
