*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body.bwf-body {
    margin: 0;
    background: #15161a;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

body.bwf-body a {
    color: inherit;
    text-decoration: none;
}

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

.bwf-page {
    min-height: 100vh;
}

.bwf-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

/* Header */

.bwf-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding-top: 10px;
    background: linear-gradient(to bottom, rgba(21,22,26,.98), rgba(21,22,26,.86));
    backdrop-filter: blur(16px);
}

.bwf-header-inner {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 18px;
    background: #222329;
    border-radius: 14px 14px 0 0;
    border-bottom: 3px solid #ef233c;
    box-shadow: 0 10px 34px rgba(0,0,0,.20);
}

.bwf-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.bwf-logo-img {
    max-height: 42px;
    width: auto;
}

.bwf-logo-mark {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff7a00, #ef233c);
    color: #fff;
    font-weight: 900;
    font-size: 19px;
    transform: skew(-8deg);
    box-shadow: 0 8px 22px rgba(239,35,60,.22);
}
.bwf-logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.8px;
    color: #fff;
}

.bwf-main-nav {
    flex: 1 1 auto;
    min-width: 0;
}

.bwf-menu,
.bwf-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bwf-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.bwf-menu > li {
    position: relative;
}

.bwf-menu > li > a {
    display: flex;
    align-items: center;
    min-height: 34px;
    padding: 0 11px;
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    transition: background .2s ease, color .2s ease;
}

.bwf-menu > li:first-child > a,
.bwf-menu > li.current-menu-item > a,
.bwf-menu > li > a:hover {
    background: #ef233c;
    color: #fff;
}

.bwf-menu .sub-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 190px;
    padding: 8px;
    background: #202126;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .2s ease;
    box-shadow: 0 18px 40px rgba(0,0,0,.32);
}

.bwf-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.bwf-menu .sub-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: #d7d7dc;
    font-size: 13px;
}

.bwf-menu .sub-menu a:hover {
    background: rgba(239,35,60,.12);
    color: #fff;
}

.bwf-search {
    width: 220px;
    height: 36px;
    position: relative;
    flex: 0 0 auto;
}

.bwf-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    color: #7b7f8b;
}

.bwf-search-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}
.bwf-search input {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    border-radius: 999px;
    background: #fff;
    color: #222;
    padding: 0 16px 0 38px;
    font-size: 13px;
}

.bwf-header-actions {
    display: flex;
    align-items: center;
    gap: 11px;
    flex: 0 0 auto;
}

.bwf-link-btn {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.bwf-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 36px;
    padding: 0 15px;
    background: #ef233c;
    color: #fff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(239,35,60,.20);
}

.bwf-login-btn span,
.bwf-login-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.bwf-login-btn:hover {
    background: #ff3048;
}

/* Mobile menu */

.bwf-mobile-toggle,
.bwf-mobile-close {
    display: none;
    border: 0;
    background: transparent;
    color: #fff;
    padding: 0;
    cursor: pointer;
}

.bwf-mobile-toggle svg,
.bwf-mobile-close svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.bwf-mobile-panel,
.bwf-mobile-overlay {
    display: none;
}

/* Main */

.bwf-main {
    padding: 14px 0 0;
}

.bwf-placeholder-page {
    background: #222329;
    border-radius: 0 0 18px 18px;
    padding: 22px;
    min-height: 460px;
}

.bwf-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding-bottom: 14px;
}

.bwf-section-head h1 {
    margin: 0;
    color: #fff;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -.5px;
}

.bwf-section-head p {
    margin: 6px 0 0;
    color: #a1a1aa;
    font-size: 14px;
}

.bwf-basic-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.bwf-basic-card {
    background: #191a1f;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px;
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease;
}

.bwf-basic-card:hover {
    transform: translateY(-3px);
    border-color: rgba(239,35,60,.45);
}

.bwf-basic-thumb {
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #101115;
    color: #777;
    overflow: hidden;
}

.bwf-basic-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bwf-basic-card-body {
    padding: 14px;
}

.bwf-basic-card-body h2 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.25;
}

.bwf-basic-card-body p {
    margin: 0;
    color: #a1a1aa;
    font-size: 13px;
}

.bwf-pagination {
    margin-top: 24px;
}

.bwf-pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.bwf-pagination .page-numbers {
    min-width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #191a1f;
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
}

.bwf-pagination .current {
    background: #ef233c;
}

.bwf-empty {
    padding: 34px;
    background: #191a1f;
    border-radius: 16px;
    text-align: center;
}

.bwf-empty h2 {
    margin: 0 0 8px;
    font-size: 24px;
}

.bwf-empty p {
    margin: 0;
    color: #a1a1aa;
}

/* Footer */

.bwf-footer {
    margin-top: 34px;
    padding-bottom: 34px;
}

.bwf-footer .bwf-container {
    background: #222329;
    border-top: 1px solid rgba(255,255,255,.08);
    border-radius: 0 0 18px 18px;
    padding: 28px;
}

.bwf-footer-top {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 28px;
    align-items: start;
}

.bwf-footer-brand p {
    max-width: 520px;
    margin: 12px 0 0;
    color: #a1a1aa;
    font-size: 13px;
}

.bwf-footer-menu h3 {
    margin: 0 0 10px;
    font-size: 15px;
    color: #fff;
}

.bwf-footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
    columns: 2;
}

.bwf-footer-links a {
    display: inline-block;
    color: #a1a1aa;
    font-size: 13px;
    padding: 3px 0;
}

.bwf-footer-links a:hover {
    color: #fff;
}

.bwf-footer-apps {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    color: #a1a1aa;
    font-size: 13px;
}

.bwf-footer-apps div {
    display: flex;
    gap: 8px;
}

.bwf-footer-apps a {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 10px;
    background: #111216;
    color: #fff;
    border-radius: 8px;
    font-size: 12px;
}

.bwf-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: #858894;
    font-size: 12px;
}

.bwf-footer-bottom p {
    margin: 0;
}

.bwf-footer-bottom a {
    color: #fff;
}
/* Home */

.bwf-home-shell {
    margin-top: -14px;
}

.bwf-hero-slider-wrap {
    margin-bottom: 18px;
}

.bwf-hero-slider {
    position: relative;
    overflow: hidden;
    background: #202126;
    border-radius: 0 0 0 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.bwf-hero-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.bwf-hero-track::-webkit-scrollbar {
    display: none;
}

.bwf-hero-item {
    flex: 0 0 16.666%;
    min-width: 16.666%;
}

.bwf-hero-card {
    position: relative;
    display: block;
    height: 360px;
    overflow: hidden;
    background: #111216;
}

.bwf-hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease, filter .35s ease;
}

.bwf-hero-card:hover img {
    transform: scale(1.05);
    filter: brightness(.82);
}

.bwf-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.05) 18%, rgba(0,0,0,.58) 70%, rgba(0,0,0,.95) 100%);
}

.bwf-hero-content {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2;
}

.bwf-hero-meta {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 5px;
    color: #f4f4f5;
    font-size: 12px;
    font-weight: 700;
}

.bwf-hero-meta .is-score {
    color: #ffc107;
}

.bwf-hero-content h2 {
    margin: 0 0 7px;
    color: #fff;
    font-size: 16px;
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: -.2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 8px rgba(0,0,0,.55);
}

.bwf-hero-badges {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #f5f5f5;
    font-size: 12px;
    font-weight: 700;
}

.bwf-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 15px;
    padding: 0 4px;
    border-radius: 3px;
    background: #ef233c;
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    line-height: 1;
}

.bwf-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 999px;
    background: rgba(0,0,0,.42);
    color: #fff;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity .2s ease, background .2s ease;
}

.bwf-hero-slider:hover .bwf-slider-arrow {
    opacity: 1;
}

.bwf-slider-arrow:hover {
    background: rgba(239,35,60,.92);
}

.bwf-slider-prev {
    left: 22px;
}

.bwf-slider-next {
    right: 22px;
}

.bwf-home-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    margin-bottom: 16px;
    padding: 0 15px;
    border-radius: 12px;
    background: #202126;
    color: #b7bac4;
    font-size: 13px;
}

.bwf-home-notice strong {
    color: #fff;
}

.bwf-home-notice-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #ef233c;
    box-shadow: 0 0 0 4px rgba(239,35,60,.12);
}

.bwf-home-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 285px;
    gap: 20px;
    align-items: start;
}

.bwf-content-section {
    margin-bottom: 30px;
}

.bwf-content-tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.bwf-content-tabs h2 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -.2px;
}

.bwf-tab-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.bwf-tab-links a {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #202126;
    color: #a1a1aa;
    font-size: 12px;
    font-weight: 700;
}

.bwf-tab-links a:hover {
    background: #ef233c;
    color: #fff;
}

.bwf-movie-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.bwf-movie-card,
.bwf-series-card {
    min-width: 0;
}

.bwf-movie-thumb,
.bwf-series-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: #111216;
    aspect-ratio: 2 / 3;
}

.bwf-movie-thumb img,
.bwf-series-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .28s ease, filter .28s ease;
}

.bwf-movie-card:hover .bwf-movie-thumb img,
.bwf-series-card:hover .bwf-series-thumb img {
    transform: scale(1.05);
    filter: brightness(.72);
}

.bwf-movie-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 45%, rgba(0,0,0,.88) 100%);
    opacity: .92;
}

.bwf-play-dot {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(239,35,60,.92);
    color: #fff;
    font-size: 15px;
    transform: translate(-50%, -50%) scale(.84);
    opacity: 0;
    transition: all .22s ease;
}

.bwf-movie-card:hover .bwf-play-dot {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.bwf-movie-body,
.bwf-series-body {
    padding-top: 7px;
}

.bwf-movie-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 18px;
    color: #a1a1aa;
    font-size: 11px;
    font-weight: 700;
}

.bwf-movie-meta .is-score {
    color: #ffc107;
}

.bwf-movie-body h3,
.bwf-series-body h3 {
    margin: 3px 0 5px;
    color: #fff;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -.15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bwf-movie-body h3 a:hover,
.bwf-series-body h3 a:hover {
    color: #ef233c;
}

.bwf-movie-lang {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #d4d4d8;
    font-size: 11px;
    line-height: 1.1;
}

.bwf-series-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

/* Sidebar */

.bwf-home-sidebar {
    position: sticky;
    top: 126px;
}

.bwf-sidebar-widget {
    margin-bottom: 18px;
    padding: 13px;
    border-radius: 14px;
    background: #202126;
    border: 1px solid rgba(255,255,255,.06);
}

.bwf-sidebar-head {
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.bwf-sidebar-head h3 {
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
}

.bwf-sidebar-list {
    display: grid;
    gap: 9px;
}

.bwf-sidebar-mini-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 9px;
    align-items: center;
    min-height: 60px;
    padding: 6px;
    border-radius: 11px;
    background: #17181d;
    transition: background .2s ease, transform .2s ease;
}

.bwf-sidebar-mini-card:hover {
    background: #111216;
    transform: translateX(2px);
}

.bwf-sidebar-mini-card img {
    width: 48px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.bwf-sidebar-mini-card strong {
    display: block;
    color: #fff;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bwf-sidebar-mini-card small {
    display: block;
    margin-top: 4px;
    color: #ffc107;
    font-size: 11px;
    font-weight: 800;
}

.bwf-sidebar-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
}

.bwf-sidebar-tags a {
    display: flex;
    align-items: center;
    min-height: 30px;
    padding: 0 9px;
    border-radius: 8px;
    background: #17181d;
    color: #d4d4d8;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bwf-sidebar-tags a:hover {
    background: #ef233c;
    color: #fff;
}

.bwf-sidebar-empty {
    margin: 0;
    color: #a1a1aa;
    font-size: 12px;
}

.bwf-home-empty {
    margin-bottom: 16px;
}
/* Detail Page */

.bwf-detail-page {
    margin-top: -14px;
}

.bwf-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 12px;
    background: #202126;
    border-bottom: 1px solid rgba(255,255,255,.06);
    color: #9ca3af;
    font-size: 12px;
    font-weight: 700;
}

.bwf-breadcrumbs a:hover {
    color: #fff;
}

.bwf-breadcrumbs strong {
    color: #fff;
    font-weight: 800;
}

.bwf-detail-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0 15px;
}

.bwf-detail-title-row h1 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -.4px;
}

.bwf-detail-title-row h1 span {
    color: #b7bac4;
    font-size: 18px;
    font-weight: 700;
}

.bwf-detail-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.bwf-detail-badge {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 0 9px;
    border-radius: 8px;
    background: #202126;
    color: #d7d7dc;
    font-size: 12px;
    font-weight: 800;
}

.bwf-google-mark {
    color: #ef233c;
    font-size: 24px;
    font-weight: 900;
}

.bwf-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 24px;
    align-items: start;
}

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

.bwf-film-hero {
    position: relative;
    min-height: 390px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.06);
}

.bwf-film-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.72));
}

.bwf-film-hero-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 76px;
    height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: linear-gradient(135deg, #ff7a00, #ef233c);
    color: #fff;
    font-size: 42px;
    font-weight: 900;
    transform: translate(-50%, -50%) skew(-8deg);
    box-shadow: 0 18px 45px rgba(0,0,0,.38);
}

.bwf-film-info-section,
.bwf-watch-section,
.bwf-related-section,
.bwf-comments-area {
    margin-top: 26px;
}

.bwf-film-info-section > h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
}

.bwf-film-info-grid {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 18px;
}

.bwf-film-poster img {
    width: 100%;
    border-radius: 13px;
    border: 1px solid rgba(255,255,255,.08);
}

.bwf-film-content {
    min-width: 0;
}

.bwf-film-desc {
    margin: 0 0 14px;
    color: #d7d7dc;
    font-size: 14px;
    line-height: 1.7;
}

.bwf-score-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 15px;
}

.bwf-score-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 11px;
    background: #17181d;
    font-weight: 900;
}

.bwf-score-box strong {
    color: #111;
    background: #ffc107;
    padding: 3px 5px;
    border-radius: 5px;
    font-size: 11px;
}

.bwf-score-box.is-bw strong {
    background: #ef233c;
    color: #fff;
}

.bwf-score-box span {
    color: #fff;
    font-size: 16px;
}

.bwf-trailer-btn {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 11px;
    background: #202126;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.bwf-trailer-btn:hover {
    background: #ef233c;
}

.bwf-film-meta-table {
    display: grid;
    gap: 7px;
    margin-bottom: 13px;
}

.bwf-film-meta-table div {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.bwf-film-meta-table span,
.bwf-cast-line span {
    color: #9ca3af;
    font-size: 12px;
    font-weight: 800;
}

.bwf-film-meta-table strong,
.bwf-cast-line strong {
    color: #fff;
    font-size: 13px;
}

.bwf-tax-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 12px 0;
}

.bwf-badge {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 0 9px;
    border-radius: 7px;
    background: #202126;
    color: #d7d7dc;
    font-size: 11px;
    font-weight: 800;
}

.bwf-badge:hover {
    background: #ef233c;
    color: #fff;
}

.bwf-cast-line {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 12px;
    margin-top: 10px;
}

.bwf-section-mini-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 13px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.bwf-section-mini-title h2 {
    margin: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
}

.bwf-section-mini-title span {
    color: #ef233c;
}

.bwf-video-box {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: #000;
    aspect-ratio: 16 / 9;
}

.bwf-video-box iframe,
.bwf-video-box video {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.bwf-related-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

/* Detail Sidebar */

.bwf-detail-sidebar {
    position: sticky;
    top: 126px;
}

.bwf-detail-action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-bottom: 14px;
}

.bwf-detail-action-grid button {
    min-height: 58px;
    border: 0;
    border-radius: 12px;
    background: #202126;
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.bwf-detail-action-grid button span {
    display: block;
    margin-bottom: 4px;
    color: #fff;
}

.bwf-detail-action-grid button:hover {
    background: #ef233c;
}

.bwf-detail-side-card {
    margin-bottom: 14px;
    padding: 14px;
    border-radius: 14px;
    background: #202126;
    border: 1px solid rgba(255,255,255,.06);
}

.bwf-detail-side-card h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
}

.bwf-big-score {
    display: flex;
    align-items: baseline;
    gap: 6px;
    min-height: 62px;
    padding: 0 12px;
    border-radius: 13px;
    background: #15161a;
}

.bwf-big-score span {
    font-size: 32px;
}

.bwf-big-score strong {
    color: #fff;
    font-size: 28px;
    font-weight: 900;
}

.bwf-big-score small {
    color: #a1a1aa;
    font-size: 14px;
}

.bwf-detail-side-card p {
    margin: 9px 0 0;
    color: #9ca3af;
    font-size: 12px;
    font-weight: 700;
}

.bwf-rate-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.bwf-rate-dots span {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #3a3c44;
}

.bwf-rate-dots span:hover {
    background: #ef233c;
}

.bwf-share-buttons {
    display: flex;
    gap: 8px;
}

.bwf-share-buttons a {
    width: 36px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #15161a;
    color: #fff;
    font-weight: 900;
}

.bwf-share-buttons a:hover {
    background: #ef233c;
}

/* Comments */

.bwf-comment-login-warning {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 11px;
    background: rgba(239,35,60,.14);
    color: #ffb4be;
    border: 1px solid rgba(239,35,60,.22);
}

.bwf-comment-login-warning span {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(239,35,60,.22);
    color: #fff;
    font-weight: 900;
}

.bwf-comment-login-warning p {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
}

.bwf-comment-auth-buttons {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.bwf-comment-auth-buttons a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 10px;
    background: #202126;
    color: #fff;
    font-weight: 900;
    font-size: 13px;
}

.bwf-comment-auth-buttons a:hover {
    background: #ef233c;
}

.bwf-comment-form-wrap {
    padding: 16px;
    border-radius: 14px;
    background: #202126;
}

.bwf-comment-title {
    margin: 0 0 12px;
    color: #fff;
    font-size: 16px;
}

.bwf-comment-form-wrap label {
    display: block;
    margin-bottom: 6px;
    color: #d7d7dc;
    font-weight: 800;
    font-size: 13px;
}

.bwf-comment-form-wrap textarea,
.bwf-comment-form-wrap input[type="text"],
.bwf-comment-form-wrap input[type="email"],
.bwf-comment-form-wrap input[type="url"] {
    width: 100%;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    background: #15161a;
    color: #fff;
    padding: 12px;
    outline: 0;
}

.bwf-comment-form-wrap .submit {
    border: 0;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 11px;
    background: #ef233c;
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.bwf-comment-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.bwf-comment-card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 12px;
    padding: 15px;
    border-radius: 14px;
    background: #202126;
}

.bwf-comment-avatar img {
    border-radius: 999px;
}

.bwf-comment-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.bwf-comment-head strong {
    color: #fff;
    font-size: 13px;
}

.bwf-comment-head span {
    color: #9ca3af;
    font-size: 12px;
}

.bwf-comment-text {
    color: #d7d7dc;
    font-size: 13px;
    line-height: 1.6;
}

.bwf-comment-text p {
    margin: 0;
}

.bwf-comment-actions {
    margin-top: 8px;
}

.bwf-comment-actions a {
    color: #9ca3af;
    font-size: 12px;
    font-weight: 800;
}

.bwf-comment-actions a:hover {
    color: #fff;
}
/* Series Detail */

.bwf-series-info-section {
    margin-top: 0;
}

.bwf-series-info-grid {
    align-items: start;
}

.bwf-series-age-warning {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 42px;
    margin-bottom: 14px;
    padding: 0 13px;
    border-radius: 12px;
    background: #17181d;
    border: 1px solid rgba(255,255,255,.06);
    color: #d7d7dc;
    font-size: 13px;
}

.bwf-series-age-warning span {
    color: #9ca3af;
}

.bwf-series-age-warning strong {
    color: #fff;
    font-weight: 900;
}

.bwf-series-age-warning em {
    color: #a1a1aa;
    font-style: normal;
}

.bwf-episodes-section {
    margin-top: 30px;
}

.bwf-season-tabs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.bwf-season-tabs a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 13px;
    border-radius: 999px;
    background: #202126;
    color: #a1a1aa;
    font-size: 13px;
    font-weight: 900;
}

.bwf-season-tabs a:hover,
.bwf-season-tabs a.is-active {
    background: #ef233c;
    color: #fff;
}

.bwf-episode-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.bwf-episode-card {
    position: relative;
    min-height: 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 9px 38px 9px 12px;
    border-radius: 11px;
    background: #202126;
    border: 1px solid rgba(255,255,255,.06);
    transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.bwf-episode-card:hover {
    background: #17181d;
    border-color: rgba(239,35,60,.42);
    transform: translateY(-2px);
}

.bwf-episode-card strong {
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
}

.bwf-episode-card span {
    display: block;
    margin-top: 4px;
    color: #9ca3af;
    font-size: 11px;
    font-weight: 700;
}

.bwf-episode-card em {
    position: absolute;
    right: 10px;
    top: 50%;
    min-width: 20px;
    height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    background: #ef233c;
    color: #fff;
    font-size: 9px;
    font-style: normal;
    font-weight: 900;
    transform: translateY(-50%);
}
/* Episode Watch Page */

.bwf-episode-detail-page .bwf-detail-title-row {
    padding-bottom: 10px;
}

.bwf-episode-nav-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    align-items: center;
    margin-bottom: 18px;
}

.bwf-episode-nav-btn,
.bwf-episode-archive-btn {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 13px;
    border-radius: 11px;
    background: #202126;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    border: 1px solid rgba(255,255,255,.06);
}

.bwf-episode-nav-btn:first-child {
    justify-content: flex-start;
}

.bwf-episode-nav-btn:last-child {
    justify-content: flex-end;
}

.bwf-episode-nav-btn:hover,
.bwf-episode-archive-btn:hover {
    background: #ef233c;
    color: #fff;
}

.bwf-episode-nav-btn.is-disabled {
    opacity: .45;
    pointer-events: none;
}

.bwf-player-section {
    margin-bottom: 28px;
}

.bwf-player-tabs {
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 42px;
    padding: 5px;
    border-radius: 14px 14px 0 0;
    background: #202126;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.bwf-player-tabs button {
    height: 30px;
    border: 0;
    padding: 0 12px;
    border-radius: 999px;
    background: transparent;
    color: #a1a1aa;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

.bwf-player-tabs button.is-active,
.bwf-player-tabs button:hover {
    background: #ef233c;
    color: #fff;
}

.bwf-player-box {
    position: relative;
    overflow: hidden;
    background: #000;
    border-radius: 0 0 15px 15px;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(255,255,255,.06);
    border-top: 0;
}

.bwf-player-box iframe,
.bwf-player-box video {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.bwf-player-empty {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    background: #000;
}

.bwf-player-logo {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: linear-gradient(135deg, #ff7a00, #ef233c);
    color: #fff;
    font-size: 38px;
    font-weight: 900;
    transform: skew(-8deg);
    box-shadow: 0 16px 45px rgba(239,35,60,.22);
}

.bwf-player-empty p {
    margin: 0;
    color: #a1a1aa;
    font-size: 13px;
    font-weight: 700;
}

.bwf-series-archive-card {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 18px;
    gap: 10px;
    align-items: center;
    min-height: 58px;
    margin-bottom: 14px;
    padding: 8px;
    border-radius: 13px;
    background: #202126;
    border: 1px solid rgba(255,255,255,.06);
}

.bwf-series-archive-card:hover {
    background: #17181d;
    border-color: rgba(239,35,60,.35);
}

.bwf-series-archive-card span {
    width: 44px;
    height: 44px;
    overflow: hidden;
    border-radius: 10px;
    background: #15161a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bwf-series-archive-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bwf-series-archive-card strong {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff7a00, #ef233c);
    color: #fff;
    font-weight: 900;
}

.bwf-series-archive-card em {
    color: #fff;
    font-style: normal;
    font-size: 13px;
    font-weight: 900;
}

.bwf-series-archive-card b {
    color: #a1a1aa;
    font-size: 22px;
}
/* Archive Pages */

.bwf-archive-page {
    margin-top: -14px;
}

.bwf-archive-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 18px;
    padding: 22px;
    border-radius: 0 0 16px 16px;
    background: #202126;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.bwf-archive-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    margin-bottom: 7px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(239,35,60,.14);
    color: #ffbac3;
    font-size: 11px;
    font-weight: 900;
}

.bwf-archive-head h1 {
    margin: 0;
    color: #fff;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -.5px;
}

.bwf-archive-head p {
    max-width: 680px;
    margin: 8px 0 0;
    color: #a1a1aa;
    font-size: 13px;
    line-height: 1.6;
}

.bwf-archive-search {
    width: min(360px, 100%);
    display: flex;
    gap: 8px;
    flex: 0 0 auto;
}

.bwf-archive-search input {
    min-width: 0;
    flex: 1;
    height: 42px;
    border: 0;
    outline: 0;
    border-radius: 999px;
    background: #fff;
    color: #222;
    padding: 0 15px;
}

.bwf-archive-search button {
    height: 42px;
    border: 0;
    border-radius: 999px;
    padding: 0 16px;
    background: #ef233c;
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.bwf-archive-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 285px;
    gap: 20px;
    align-items: start;
}

.bwf-archive-main {
    min-width: 0;
}

.bwf-archive-grid {
    margin-bottom: 22px;
}

.bwf-archive-pagination {
    margin-top: 24px;
}

.bwf-archive-pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.bwf-archive-pagination .page-numbers {
    min-width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #202126;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.bwf-archive-pagination .page-numbers.current,
.bwf-archive-pagination .page-numbers:hover {
    background: #ef233c;
    color: #fff;
}

/* Episode archive */

.bwf-episode-archive-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.bwf-archive-episode-card {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 13px;
    padding: 10px;
    border-radius: 15px;
    background: #202126;
    border: 1px solid rgba(255,255,255,.06);
    transition: border-color .2s ease, transform .2s ease;
}

.bwf-archive-episode-card:hover {
    transform: translateY(-2px);
    border-color: rgba(239,35,60,.38);
}

.bwf-archive-episode-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 2 / 3;
    background: #111216;
}

.bwf-archive-episode-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bwf-archive-episode-thumb span {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(239,35,60,.92);
    color: #fff;
    font-size: 14px;
    transform: translate(-50%, -50%);
}

.bwf-archive-episode-body {
    min-width: 0;
    padding: 4px 0;
}

.bwf-archive-episode-body small {
    display: inline-flex;
    margin-bottom: 7px;
    color: #ffbac3;
    font-size: 11px;
    font-weight: 900;
}

.bwf-archive-episode-body h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 900;
}

.bwf-archive-episode-body h3 a:hover {
    color: #ef233c;
}

.bwf-archive-episode-body p {
    margin: 0 0 12px;
    color: #a1a1aa;
    font-size: 12px;
    font-weight: 700;
}

.bwf-episode-watch-btn {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 10px;
    background: #15161a;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.bwf-episode-watch-btn:hover {
    background: #ef233c;
}

/* Search */

.bwf-search-results-list {
    display: grid;
    gap: 13px;
}

.bwf-search-result-card {
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 14px;
    padding: 11px;
    border-radius: 15px;
    background: #202126;
    border: 1px solid rgba(255,255,255,.06);
}

.bwf-search-result-thumb {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: #111216;
    aspect-ratio: 2 / 3;
}

.bwf-search-result-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bwf-search-result-body span {
    display: inline-flex;
    align-items: center;
    min-height: 23px;
    margin-bottom: 7px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(239,35,60,.14);
    color: #ffbac3;
    font-size: 11px;
    font-weight: 900;
}

.bwf-search-result-body h2 {
    margin: 0 0 7px;
    color: #fff;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 900;
}

.bwf-search-result-body h2 a:hover {
    color: #ef233c;
}

.bwf-search-result-body p {
    margin: 0 0 12px;
    color: #a1a1aa;
    font-size: 13px;
    line-height: 1.6;
}

.bwf-search-result-link {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 10px;
    background: #15161a;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.bwf-search-result-link:hover {
    background: #ef233c;
}
.bwf-options-wrap {
    max-width: 1280px;
}

.bwf-options-wrap h1 {
    margin-bottom: 18px;
    font-weight: 800;
}

.bwf-options-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.bwf-options-sidebar {
    position: sticky;
    top: 48px;
    padding: 12px;
    border-radius: 14px;
    background: #17181d;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.bwf-options-sidebar a {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 0 12px;
    margin-bottom: 6px;
    border-radius: 10px;
    color: #d7d7dc;
    text-decoration: none;
    font-weight: 700;
}

.bwf-options-sidebar a:hover,
.bwf-options-sidebar a.is-active {
    background: #ef233c;
    color: #fff;
}

.bwf-options-card {
    margin-bottom: 18px;
    padding: 22px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #dcdcde;
    box-shadow: 0 12px 30px rgba(0,0,0,.04);
}

.bwf-options-card h2 {
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ececec;
    font-size: 20px;
    font-weight: 800;
}

.bwf-options-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.bwf-option-field {
    min-width: 0;
}

.bwf-option-field-full {
    grid-column: 1 / -1;
}

.bwf-option-field label {
    display: block;
    margin-bottom: 7px;
    font-weight: 800;
    color: #1d2327;
}

.bwf-option-field input[type="text"],
.bwf-option-field input[type="number"],
.bwf-option-field textarea {
    width: 100%;
    max-width: 100%;
    border-radius: 9px;
    border: 1px solid #dcdcde;
    padding: 9px 11px;
}

.bwf-option-field textarea {
    min-height: 96px;
    font-family: Consolas, Monaco, monospace;
}

.bwf-option-field p {
    margin: 7px 0 0;
    color: #646970;
    font-size: 12px;
}

.bwf-media-control {
    display: flex;
    gap: 8px;
}

.bwf-media-control input {
    flex: 1;
}

.bwf-media-preview {
    margin-top: 10px;
    max-width: 240px;
    padding: 10px;
    border-radius: 12px;
    background: #f6f7f7;
    border: 1px solid #dcdcde;
}

.bwf-media-preview img {
    max-width: 100%;
    height: auto;
    display: block;
}

.bwf-toggle-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.bwf-option-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 12px;
    background: #f6f7f7;
    border: 1px solid #dcdcde;
}

.bwf-option-toggle input[type="checkbox"] {
    display: none;
}

.bwf-option-toggle span {
    position: relative;
    width: 44px;
    height: 24px;
    border-radius: 999px;
    background: #b8bcc3;
    transition: .2s ease;
}

.bwf-option-toggle span::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 3px;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #fff;
    transition: .2s ease;
}

.bwf-option-toggle input[type="checkbox"]:checked + span {
    background: #ef233c;
}

.bwf-option-toggle input[type="checkbox"]:checked + span::after {
    transform: translateX(20px);
}

.bwf-option-toggle strong {
    color: #1d2327;
}

.bwf-options-save {
    position: sticky;
    bottom: 0;
    z-index: 20;
    padding: 14px 0;
    background: #f0f0f1;
}

.bwf-options-save .submit {
    margin: 0;
}

.bwf-options-save .button-primary {
    min-height: 42px;
    padding: 0 22px;
    border-radius: 9px;
    font-weight: 800;
}

@media (max-width: 960px) {
    .bwf-options-layout {
        grid-template-columns: 1fr;
    }

    .bwf-options-sidebar {
        position: static;
    }

    .bwf-options-grid,
    .bwf-toggle-grid {
        grid-template-columns: 1fr;
    }
}
.bwf-detail-action-grid button em {
    display: block;
    font-style: normal;
}

.bwf-detail-action-grid button.is-active {
    background: #ef233c;
    color: #fff;
}

.bwf-detail-action-grid button.is-active span {
    color: #fff;
}

.bwf-rate-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.bwf-rate-dots button {
    width: 15px;
    height: 15px;
    border: 0;
    padding: 0;
    border-radius: 999px;
    background: #3a3c44;
    cursor: pointer;
    transition: background .18s ease, transform .18s ease;
}

.bwf-rate-dots button:hover,
.bwf-rate-dots button.is-selected {
    background: #ef233c;
    transform: scale(1.08);
}

.bwf-rate-message {
    min-height: 18px;
    margin-top: 9px;
    color: #a1a1aa;
    font-size: 12px;
    font-weight: 800;
}
/* Auth Pages */

.bwf-auth-page {
    margin-top: -14px;
    padding: 36px 0 10px;
}

.bwf-auth-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 24px;
    align-items: stretch;
}

.bwf-auth-visual {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    padding: 42px;
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(239,35,60,.26), transparent 34%),
        linear-gradient(135deg, #202126, #15161a);
    border: 1px solid rgba(255,255,255,.08);
}

.bwf-auth-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 54px;
}

.bwf-auth-brand span {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: linear-gradient(135deg, #ff7a00, #ef233c);
    color: #fff;
    font-size: 25px;
    font-weight: 900;
    transform: skew(-8deg);
}

.bwf-auth-brand strong {
    color: #fff;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -.7px;
}

.bwf-auth-visual h1 {
    max-width: 520px;
    margin: 0;
    color: #fff;
    font-size: 44px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1px;
}

.bwf-auth-visual p {
    max-width: 560px;
    margin: 16px 0 0;
    color: #b8bcc8;
    font-size: 15px;
    line-height: 1.7;
}

.bwf-auth-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 72px;
}

.bwf-auth-features div {
    min-height: 130px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
}

.bwf-auth-features strong {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
}

.bwf-auth-features span {
    display: block;
    margin-top: 8px;
    color: #a1a1aa;
    font-size: 12px;
    line-height: 1.55;
}

.bwf-auth-card {
    padding: 24px;
    border-radius: 22px;
    background: #202126;
    border: 1px solid rgba(255,255,255,.08);
    align-self: center;
}

.bwf-auth-tabs {
    display: flex;
    gap: 7px;
    margin-bottom: 20px;
    padding: 6px;
    border-radius: 14px;
    background: #15161a;
}

.bwf-auth-tabs a {
    flex: 1;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: #a1a1aa;
    font-size: 12px;
    font-weight: 900;
}

.bwf-auth-tabs a.is-active,
.bwf-auth-tabs a:hover {
    background: #ef233c;
    color: #fff;
}

.bwf-auth-form {
    display: grid;
    gap: 14px;
}

.bwf-auth-form label span {
    display: block;
    margin-bottom: 7px;
    color: #d7d7dc;
    font-size: 13px;
    font-weight: 900;
}

.bwf-auth-form input[type="text"],
.bwf-auth-form input[type="email"],
.bwf-auth-form input[type="password"] {
    width: 100%;
    height: 46px;
    border: 1px solid rgba(255,255,255,.08);
    outline: 0;
    border-radius: 13px;
    background: #15161a;
    color: #fff;
    padding: 0 14px;
    font-size: 14px;
}

.bwf-auth-form input:focus {
    border-color: rgba(239,35,60,.65);
    box-shadow: 0 0 0 3px rgba(239,35,60,.12);
}

.bwf-auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.bwf-auth-check {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #a1a1aa;
    font-size: 13px;
    font-weight: 700;
}

.bwf-auth-check input {
    margin: 0;
}

.bwf-auth-check span {
    margin: 0 !important;
    color: #a1a1aa !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

.bwf-auth-row a,
.bwf-auth-bottom a {
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.bwf-auth-row a:hover,
.bwf-auth-bottom a:hover {
    color: #ef233c;
}

.bwf-auth-form button {
    height: 48px;
    border: 0;
    border-radius: 14px;
    background: #ef233c;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(239,35,60,.22);
}

.bwf-auth-form button:hover {
    background: #ff3048;
}

.bwf-auth-bottom {
    margin: 18px 0 0;
    color: #a1a1aa;
    text-align: center;
    font-size: 13px;
}

.bwf-auth-alert {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 13px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.5;
}

.bwf-auth-alert.is-error {
    background: rgba(239,35,60,.14);
    color: #ffb4be;
    border: 1px solid rgba(239,35,60,.22);
}

.bwf-auth-alert.is-success {
    background: rgba(34,197,94,.14);
    color: #86efac;
    border: 1px solid rgba(34,197,94,.22);
}
/* People cards */

.bwf-people-block {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 12px;
    margin-top: 14px;
}

.bwf-people-block > span {
    color: #9ca3af;
    font-size: 12px;
    font-weight: 800;
}

.bwf-people-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bwf-person-mini-card {
    width: 76px;
    min-width: 76px;
    color: #fff;
}

.bwf-person-mini-card span {
    width: 58px;
    height: 58px;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: #202126;
    border: 1px solid rgba(255,255,255,.08);
}

.bwf-person-mini-card span img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bwf-person-mini-card span em {
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-style: normal;
    font-weight: 900;
}

.bwf-person-mini-card strong {
    display: block;
    max-width: 76px;
    margin-top: 5px;
    color: #fff;
    font-size: 10px;
    line-height: 1.25;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bwf-person-mini-card:hover strong {
    color: #ef233c;
}

/* Person detail */

.bwf-person-page {
    margin-top: -14px;
}

.bwf-person-hero {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
    margin-bottom: 28px;
    padding: 24px;
    border-radius: 0 0 18px 18px;
    background: #202126;
    border-top: 1px solid rgba(255,255,255,.06);
}

.bwf-person-photo {
    overflow: hidden;
    border-radius: 16px;
    background: #15161a;
    aspect-ratio: 2 / 3;
    border: 1px solid rgba(255,255,255,.08);
}

.bwf-person-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bwf-person-photo span {
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 70px;
    font-weight: 900;
}

.bwf-person-info > span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(239,35,60,.14);
    color: #ffbac3;
    font-size: 12px;
    font-weight: 900;
}

.bwf-person-info h1 {
    margin: 14px 0 12px;
    color: #fff;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -.7px;
}

.bwf-person-info p {
    max-width: 780px;
    margin: 0;
    color: #d7d7dc;
    font-size: 14px;
    line-height: 1.8;
}

.bwf-person-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.bwf-person-meta div {
    padding: 13px;
    border-radius: 13px;
    background: #15161a;
}

.bwf-person-meta strong {
    display: block;
    color: #9ca3af;
    font-size: 11px;
    font-weight: 900;
}

.bwf-person-meta span {
    display: block;
    margin-top: 5px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}
/* User Profile Page */

.bwf-profile-page {
    margin-top: -14px;
    padding-bottom: 30px;
}

.bwf-profile-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 18px;
    padding: 28px;
    border-radius: 0 0 22px 22px;
    background:
        radial-gradient(circle at top right, rgba(239,35,60,.26), transparent 34%),
        linear-gradient(135deg, #202126, #15161a);
    border-top: 1px solid rgba(255,255,255,.06);
    overflow: hidden;
}

.bwf-profile-user {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.bwf-profile-avatar {
    width: 92px;
    height: 92px;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 24px;
    background: #111216;
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 16px 35px rgba(0,0,0,.20);
}

.bwf-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bwf-profile-user span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(239,35,60,.14);
    color: #ffbac3;
    font-size: 11px;
    font-weight: 900;
}

.bwf-profile-user h1 {
    margin: 9px 0 5px;
    color: #fff;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -.8px;
}

.bwf-profile-user p {
    margin: 0;
    color: #a1a1aa;
    font-size: 13px;
    font-weight: 700;
}

.bwf-profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.bwf-profile-actions a,
.bwf-profile-account-actions a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    border: 1px solid rgba(255,255,255,.08);
}

.bwf-profile-actions a:hover,
.bwf-profile-account-actions a:hover,
.bwf-profile-actions a.is-red,
.bwf-profile-account-actions a.is-red {
    background: #ef233c;
    color: #fff;
}

.bwf-profile-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.bwf-profile-stats div {
    min-height: 92px;
    padding: 18px;
    border-radius: 18px;
    background: #202126;
    border: 1px solid rgba(255,255,255,.06);
}

.bwf-profile-stats span {
    display: block;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
}

.bwf-profile-stats strong {
    display: block;
    margin-top: 8px;
    color: #a1a1aa;
    font-size: 12px;
    font-weight: 900;
}

.bwf-profile-layout {
    display: grid;
    grid-template-columns: 245px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.bwf-profile-sidebar {
    position: sticky;
    top: 112px;
    padding: 10px;
    border-radius: 18px;
    background: #202126;
    border: 1px solid rgba(255,255,255,.06);
}

.bwf-profile-sidebar a {
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    padding: 0 12px;
    border-radius: 13px;
    color: #d7d7dc;
    font-size: 13px;
    font-weight: 900;
}

.bwf-profile-sidebar a:last-child {
    margin-bottom: 0;
}

.bwf-profile-sidebar a span {
    width: 24px;
    text-align: center;
}

.bwf-profile-sidebar a:hover,
.bwf-profile-sidebar a.is-active {
    background: #ef233c;
    color: #fff;
}

.bwf-profile-content {
    min-width: 0;
    padding: 22px;
    border-radius: 20px;
    background: #202126;
    border: 1px solid rgba(255,255,255,.06);
}

.bwf-profile-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.bwf-profile-section-head span {
    display: inline-flex;
    align-items: center;
    min-height: 23px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(239,35,60,.14);
    color: #ffbac3;
    font-size: 11px;
    font-weight: 900;
}

.bwf-profile-section-head h2 {
    margin: 8px 0 0;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -.4px;
}

.bwf-profile-section-head p {
    max-width: 420px;
    margin: 0;
    color: #a1a1aa;
    font-size: 12px;
    line-height: 1.6;
    text-align: right;
}

.bwf-profile-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.bwf-profile-empty {
    display: grid;
    place-items: center;
    min-height: 210px;
    padding: 26px;
    border-radius: 18px;
    background: #15161a;
    text-align: center;
}

.bwf-profile-empty strong {
    display: block;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
}

.bwf-profile-empty p {
    max-width: 430px;
    margin: 10px 0 0;
    color: #a1a1aa;
    font-size: 13px;
    line-height: 1.6;
}

.bwf-profile-rated-list,
.bwf-profile-comments-list {
    display: grid;
    gap: 12px;
}

.bwf-profile-rated-card {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    padding: 10px;
    border-radius: 16px;
    background: #15161a;
    border: 1px solid rgba(255,255,255,.06);
}

.bwf-profile-rated-thumb {
    display: block;
    overflow: hidden;
    border-radius: 13px;
    background: #111216;
    aspect-ratio: 2 / 3;
}

.bwf-profile-rated-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bwf-profile-rated-card span {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    margin-bottom: 7px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(239,35,60,.14);
    color: #ffbac3;
    font-size: 10px;
    font-weight: 900;
}

.bwf-profile-rated-card h3 {
    margin: 0 0 7px;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}

.bwf-profile-rated-card h3 a:hover {
    color: #ef233c;
}

.bwf-profile-rated-card p {
    margin: 0;
    color: #a1a1aa;
    font-size: 13px;
}

.bwf-profile-rated-card p strong {
    color: #fff;
}

.bwf-profile-comment-card {
    padding: 15px;
    border-radius: 16px;
    background: #15161a;
    border: 1px solid rgba(255,255,255,.06);
}

.bwf-profile-comment-card > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 9px;
}

.bwf-profile-comment-card strong {
    color: #fff;
    font-size: 14px;
    font-weight: 900;
}

.bwf-profile-comment-card span {
    color: #8d93a1;
    font-size: 12px;
    font-weight: 800;
}

.bwf-profile-comment-card p {
    margin: 0 0 12px;
    color: #d7d7dc;
    font-size: 13px;
    line-height: 1.6;
}

.bwf-profile-comment-card a {
    color: #ffbac3;
    font-size: 12px;
    font-weight: 900;
}

.bwf-profile-account-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.bwf-profile-account-card div {
    padding: 16px;
    border-radius: 16px;
    background: #15161a;
    border: 1px solid rgba(255,255,255,.06);
}

.bwf-profile-account-card span {
    display: block;
    color: #8d93a1;
    font-size: 11px;
    font-weight: 900;
}

.bwf-profile-account-card strong {
    display: block;
    margin-top: 6px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    word-break: break-word;
}

.bwf-profile-account-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 16px;
}
/* Advertisement Areas */

.bwf-ad {
    position: relative;
    width: 100%;
    margin: 16px 0;
    padding: 14px;
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.015)),
        #202126;
    border: 1px solid rgba(255,255,255,.07);
    overflow: hidden;
    text-align: center;
}

.bwf-ad::before {
    content: "Reklam";
    position: absolute;
    left: 12px;
    top: 10px;
    min-height: 20px;
    display: inline-flex;
    align-items: center;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(239,35,60,.14);
    color: #ffbac3;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .2px;
    z-index: 2;
}

.bwf-ad:empty {
    display: none;
}

.bwf-ad img,
.bwf-ad iframe,
.bwf-ad ins {
    max-width: 100%;
}

.bwf-ad iframe {
    border: 0;
}

.bwf-ad a {
    display: inline-block;
}

.bwf-ad img {
    height: auto;
    border-radius: 12px;
    vertical-align: middle;
}

/* Header ad */

.bwf-ad-ad_header_bottom {
    margin-top: 12px;
    margin-bottom: 0;
    min-height: 72px;
}

/* Home ad */

.bwf-ad-ad_home_top {
    margin-top: 0;
    margin-bottom: 18px;
    min-height: 90px;
}

/* Detail top ad */

.bwf-ad-ad_detail_top {
    margin: 14px 0 18px;
    min-height: 90px;
}

/* Video ads */

.bwf-ad-ad_video_top {
    margin: 0 0 14px;
    min-height: 80px;
}

.bwf-ad-ad_video_bottom {
    margin: 14px 0 0;
    min-height: 80px;
}

/* Sidebar ad */

.bwf-ad-ad_sidebar {
    min-height: 250px;
    margin: 14px 0;
    padding: 12px;
}

.bwf-ad-ad_sidebar::before {
    left: 10px;
    top: 9px;
}

.bwf-ad-ad_sidebar img {
    width: 100%;
    object-fit: cover;
}

/* Footer ad */

.bwf-ad-ad_footer {
    margin-top: 26px;
    margin-bottom: 0;
    min-height: 90px;
}
/* Mobil dokunma efektlerini kapat */

html,
body,
a,
button,
input,
textarea,
select,
label,
.bwf-page,
.bwf-page * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a,
button {
    touch-action: manipulation;
}

/* Premium mobile header icons */

.bwf-mobile-header-icons {
    display: none;
}

.bwf-mobile-icon-btn {
    width: 38px;
    height: 38px;
    border: 0;
    padding: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #d7d7dc;
    font-size: 18px;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.bwf-mobile-icon-btn i {
    line-height: 1;
}

.bwf-mobile-icon-btn:hover {
    background: rgba(255,255,255,.08);
    color: #fff;
}


.bwf-mobile-auth-btn {
    background: rgba(255,255,255,.14);
    color: #fff;
}

.bwf-mobile-auth-btn:hover {
    background: #ef233c;
    color: #fff;
}

.bwf-mobile-menu-btn {
    color: #fff;
}

/* Mobil panel daha premium */

.bwf-mobile-panel {
    box-shadow: 24px 0 70px rgba(0,0,0,.45);
}

.bwf-mobile-close {
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 18px;
}

.bwf-mobile-close:hover {
    background: #ef233c;
}
/* Mobile Fixed Bottom Navigation */

.bwf-mobile-bottom-nav {
    display: none;
}

@media (max-width: 980px) {
    .bwf-mobile-bottom-nav {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: 10px;
        z-index: 1090;
        height: 64px;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        align-items: center;
        gap: 4px;
        padding: 6px;
        border-radius: 18px;
        background:
            linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
            rgba(32,33,38,.96);
        border: 1px solid rgba(255,255,255,.08);
        box-shadow: 0 18px 55px rgba(0,0,0,.45);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .bwf-mobile-bottom-nav a,
    .bwf-mobile-bottom-nav button {
        width: 100%;
        height: 52px;
        border: 0;
        padding: 0;
        border-radius: 14px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        background: transparent;
        color: #a1a1aa;
        font-family: inherit;
        font-size: 11px;
        font-weight: 800;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .bwf-mobile-bottom-nav i {
        font-size: 18px;
        line-height: 1;
    }

    .bwf-mobile-bottom-nav span {
        line-height: 1;
        white-space: nowrap;
    }

    .bwf-mobile-bottom-nav a:hover,
    .bwf-mobile-bottom-nav button:hover,
    .bwf-mobile-bottom-nav a.is-active {
        background: rgba(255,255,255,.10);
        color: #fff;
    }

    .bwf-mobile-bottom-nav a.is-active i {
        color: #fff;
    }

    body.bwf-body {
        padding-bottom: 86px;
    }
}
/* 404 Error Page */

.bwf-error-page {
    margin-top: -14px;
}

.bwf-error-page > .bwf-container {
    background:
        radial-gradient(circle at top right, rgba(239,35,60,.14), transparent 34%),
        #202126;
    border-radius: 0 0 22px 22px;
    padding: 42px 28px 34px;
    min-height: 520px;
}

.bwf-error-card {
    max-width: 820px;
    margin: 0 auto 34px;
    padding: 34px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.015)),
        #17181d;
    border: 1px solid rgba(255,255,255,.08);
    text-align: center;
    box-shadow: 0 22px 60px rgba(0,0,0,.28);
}

.bwf-error-code {
    margin-bottom: 8px;
    color: rgba(255,255,255,.08);
    font-size: clamp(84px, 15vw, 170px);
    line-height: .8;
    font-weight: 900;
    letter-spacing: -8px;
}

.bwf-error-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-bottom: 16px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(239,35,60,.14);
    color: #ffbac3;
    font-size: 12px;
    font-weight: 900;
}

.bwf-error-card h1 {
    max-width: 700px;
    margin: 0 auto 12px;
    color: #fff;
    font-size: 28px;
    line-height: 1.22;
    font-weight: 900;
    letter-spacing: -.5px;
}

.bwf-error-card p {
    max-width: 640px;
    margin: 0 auto 22px;
    color: #a1a1aa;
    font-size: 14px;
    line-height: 1.7;
}

.bwf-error-search {
    max-width: 620px;
    height: 48px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    margin: 0 auto 18px;
}

.bwf-error-search input {
    width: 100%;
    height: 48px;
    border: 0;
    outline: 0;
    border-radius: 999px;
    background: #fff;
    color: #222;
    padding: 0 18px;
    font-size: 14px;
}

.bwf-error-search button {
    height: 48px;
    border: 0;
    border-radius: 999px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ef233c;
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.bwf-error-search button:hover {
    background: #ff3048;
}

.bwf-error-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
}

.bwf-error-actions a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border-radius: 999px;
    background: #202126;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    border: 1px solid rgba(255,255,255,.07);
}

.bwf-error-actions a:hover {
    background: #ef233c;
    border-color: #ef233c;
}

.bwf-error-popular {
    margin-top: 28px;
}
.bwf-player-source,
.bwf-player-frame,
.bwf-player-content,
[data-bwf-player-source] {
    display: none;
}

.bwf-player-source.is-active,
.bwf-player-frame.is-active,
.bwf-player-content.is-active,
[data-bwf-player-source].is-active {
    display: block;
}
.bwf-player-source {
    display: none;
    width: 100%;
}

.bwf-player-source.is-active {
    display: block;
}

.bwf-player-source iframe,
.bwf-player-source video {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    border: 0;
    border-radius: 0 0 18px 18px;
    background: #000;
}