:root {
    --bg-dark: #0f1115;
    --bg-card: #161920;
    --bg-nav: rgba(22, 25, 32, 0.85);
    --primary: #db792e;
    --primary-hover: #f18a3c;
    --primary-glow: rgba(219, 121, 46, 0.3);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --border-color: #242936;
    --neon-purple: #a855f7;
    --neon-green: #22c55e;
    --font-titles: "Space Grotesk", sans-serif;
    --font-body: "Inter", sans-serif;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
}

body.home {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
}

body.archive.category {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
}

body.single-post {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
}

body.search,
body.page,
body.error404 {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
}

body:not(.home) {
    background-color: var(--bg-dark);
    color: var(--text-main);
}

.home .ct-header,
.home .ct-footer {
    display: none;
}

.archive.category .ct-header {
    display: none;
}

.single-post .ct-header,
.single-post .hero-section {
    display: none;
}

.search .ct-header,
.page .ct-header,
.error404 .ct-header,
.page .hero-section,
.error404 .hero-section {
    display: none;
}

.archive.category .ct-footer {
    background: rgba(15, 17, 21, 0.94);
}

body:not(.home) .ct-header [data-row] {
    background: linear-gradient(180deg, rgba(16, 18, 24, 0.96), rgba(16, 18, 24, 0.92)) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: none;
}

body:not(.home) .ct-header .ct-container {
    background: transparent !important;
}

body:not(.home) .ct-header .site-title,
body:not(.home) .ct-header .site-title a,
body:not(.home) .ct-header .ct-menu-link,
body:not(.home) .ct-header .ct-header-search,
body:not(.home) .ct-header .ct-icon,
body:not(.home) .ct-header .ct-trigger,
body:not(.home) .ct-header [class*="header-menu"] a {
    color: #eef2f7 !important;
}

body:not(.home) .ct-header .ct-menu-link:hover,
body:not(.home) .ct-header [class*="header-menu"] a:hover,
body:not(.home) .ct-header .current-menu-item > a,
body:not(.home) .ct-header .current-menu-ancestor > a {
    color: var(--primary) !important;
}

body:not(.home) .ct-footer [data-row] {
    background: rgba(12, 14, 18, 0.96) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

body:not(.home) .ct-footer-copyright,
body:not(.home) .ct-footer-copyright a {
    color: #c8d0db !important;
}

.home .site-main,
.home #main {
    color: var(--text-main);
}

.bn-home-page *,
.bn-home-page *::before,
.bn-home-page *::after {
    box-sizing: border-box;
}

.bn-home-page a {
    color: inherit;
    text-decoration: none;
}

.bn-archive-page a {
    color: inherit;
    text-decoration: none;
}

.bn-single-page a {
    color: inherit;
    text-decoration: none;
}

.bn-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.bn-site-header {
    background:
        linear-gradient(180deg, rgba(16, 18, 24, 0.96), rgba(16, 18, 24, 0.92)),
        radial-gradient(circle at top, rgba(219, 121, 46, 0.1), transparent 38%);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.bn-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    min-height: 74px;
}

.bn-logo {
    font-family: var(--font-titles);
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    letter-spacing: -0.03em;
    flex-shrink: 0;
}

.bn-logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.bn-logo span {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.bn-nav-links {
    display: flex;
    gap: 2px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #cfd5df;
}

.bn-nav-links a {
    padding: 8px 10px;
    border-radius: 8px;
    transition: var(--transition-fast);
    color: inherit;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 40px;
}

.bn-nav-label-short {
    display: none;
}

.bn-nav-links a:hover,
.bn-nav-links a.active {
    color: var(--primary);
    background-color: rgba(255, 255, 255, 0.04);
}

.bn-nav-offers {
    color: var(--neon-green);
}

.bn-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bn-btn-search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #dce2eb;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition-fast);
    line-height: 1;
    flex-shrink: 0;
}

.bn-btn-search:hover {
    color: var(--primary);
    border-color: rgba(219, 121, 46, 0.28);
    background: rgba(255, 255, 255, 0.03);
}

.bn-btn-member {
    background: var(--primary);
    color: #fff;
    padding: 10px 16px;
    border: 0;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    font-family: var(--font-titles);
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 6px 18px rgba(219, 121, 46, 0.22);
    white-space: nowrap;
}

.bn-btn-member:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.bn-hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 22px;
    margin-top: 28px;
    margin-bottom: 34px;
}

.bn-hero-card,
.bn-hero-side-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: #101319;
}

.bn-hero-card {
    min-height: 520px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    display: flex;
    align-items: end;
    padding: 32px;
}

.bn-hero-media-link,
.bn-post-card-thumb-link,
.bn-deal-thumb {
    display: block;
}

.bn-hero-media-link {
    position: absolute;
    inset: 0;
}

.bn-hero-image,
.bn-post-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bn-hero-card::before,
.bn-hero-side-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.bn-hero-card::before {
    background: linear-gradient(180deg, rgba(12, 14, 19, 0.06) 0%, rgba(12, 14, 19, 0.38) 48%, rgba(12, 14, 19, 0.92) 100%);
}

.bn-hero-side-column {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.bn-hero-side-card {
    min-height: 249px;
    border-radius: var(--radius-md);
}

.bn-hero-side-card::before {
    background: linear-gradient(180deg, rgba(12, 14, 19, 0.1) 0%, rgba(12, 14, 19, 0.3) 48%, rgba(12, 14, 19, 0.9) 100%);
}

.bn-hero-card-content,
.bn-hero-side-copy {
    position: relative;
    z-index: 2;
}

.bn-hero-card-content {
    width: 100%;
}

.bn-hero-side-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 18px 16px;
}

.bn-category-tag {
    background: var(--primary);
    color: #fff;
    font-family: var(--font-titles);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    display: inline-block;
    margin-bottom: 12px;
}

.bn-hero-card .bn-category-tag,
.bn-hero-side-card .bn-category-tag {
    margin-bottom: 14px;
}

.bn-tag-purple {
    background: var(--neon-purple);
}

.bn-tag-green {
    background: var(--neon-green);
}

.bn-hero-card h2 {
    font-family: var(--font-titles);
    font-size: clamp(2rem, 3.1vw, 3.1rem);
    line-height: 1.08;
    margin: 0 0 14px;
    color: #f8fafc;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.7);
    max-width: 90%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.bn-hero-side-card h3 {
    font-family: var(--font-titles);
    font-size: 1.2rem;
    line-height: 1.22;
    margin: 0;
    color: #f8fafc;
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.72);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.bn-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: #eef2f7;
    font-size: 13px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.65);
}

.bn-main-content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.95fr) minmax(280px, 0.8fr);
    gap: 32px;
    align-items: start;
}

.bn-deals-container {
    background: linear-gradient(135deg, rgba(219, 121, 46, 0.07) 0%, rgba(15, 17, 21, 0) 100%);
    border: 1px solid rgba(219, 121, 46, 0.15);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 30px;
}

.bn-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.bn-section-title {
    font-family: var(--font-titles);
    font-size: 21px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #f4f7fb;
}

.bn-section-title::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 24px;
    background: var(--primary);
    border-radius: var(--radius-sm);
}

.bn-section-title-feed {
    margin-bottom: 18px;
}

.bn-section-link,
.bn-home-page h2 a:hover,
.bn-home-page h3 a:hover,
.bn-home-page h4 a:hover,
.bn-archive-page h2 a:hover,
.bn-archive-page h3 a:hover,
.bn-deal-title a:hover,
.bn-logo:hover {
    color: var(--primary);
}

.bn-section-link {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.bn-deals-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.bn-deal-card,
.bn-post-card,
.bn-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.bn-deal-card {
    padding: 14px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 100%;
}

.bn-deal-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.bn-deal-thumb {
    border-radius: 10px;
    overflow: hidden;
    background: #0d1014;
}

.bn-deal-thumb img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.bn-deal-copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 auto;
}

.bn-deal-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.28;
    margin: 0;
    color: var(--text-main);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.bn-deal-excerpt {
    font-size: 13px;
    color: #b8c0cc;
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.bn-btn-deal {
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    display: inline-block;
    transition: var(--transition-fast);
    align-self: flex-start;
    margin-top: auto;
}

.bn-btn-deal:hover {
    background: var(--primary-hover);
    color: #fff;
}

.bn-news-feed {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.bn-post-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    overflow: hidden;
    transition: var(--transition-smooth);
    min-height: 220px;
}

.bn-post-card:hover {
    border-color: rgba(219, 121, 46, 0.3);
    transform: translateX(4px);
}

.bn-post-card-thumb {
    min-height: 180px;
    background-size: cover;
    background-position: center;
}

.bn-post-card-thumb-link {
    min-height: 100%;
    background: #0e1217;
}

.bn-post-card-image {
    min-height: 100%;
}

.bn-post-card-info {
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
}

.bn-post-card-info h3 {
    font-family: var(--font-titles);
    font-size: 1.42rem;
    line-height: 1.18;
    margin: 0;
    color: #f6f8fb;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.bn-post-excerpt {
    font-size: 14px;
    color: #c2c8d3;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.bn-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 96px;
}

.bn-widget {
    padding: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.bn-widget-title {
    font-family: var(--font-titles);
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 15px;
    padding-bottom: 8px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    color: #f3f6fb;
}

.bn-widget-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.bn-widget-members {
    background: linear-gradient(135deg, #161920 0%, #1b202a 100%);
    border-color: rgba(219, 121, 46, 0.24);
}

.bn-widget-members .bn-widget-title::after {
    background: var(--primary);
}

.bn-member-cta {
    text-align: center;
    padding: 6px 0 2px;
    color: #eceff5;
}

.bn-beer-mug {
    font-size: 40px;
    margin-bottom: 10px;
    color: var(--primary);
    animation: bn-wobble 2s infinite ease-in-out;
}

@keyframes bn-wobble {
    0%, 100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(10deg);
    }
}

.bn-btn-join {
    background: var(--primary);
    color: #fff;
    width: 100%;
    padding: 11px 12px;
    border-radius: 10px;
    font-weight: 600;
    font-family: var(--font-titles);
    display: block;
    margin-top: 15px;
    box-shadow: 0 4px 14px rgba(219, 121, 46, 0.28);
}

.bn-btn-join:hover {
    background: var(--primary-hover);
    color: #fff;
}

.bn-support-copy,
.bn-wallet-help {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #d9e0ea;
}

.bn-wallet-box {
    margin-top: 14px;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(219, 121, 46, 0.22);
    background: rgba(12, 15, 20, 0.78);
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.bn-wallet-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f0b37f;
}

.bn-wallet-address {
    display: block;
    word-break: break-all;
    white-space: normal;
    font-size: 13px;
    line-height: 1.6;
    color: #f6f8fb !important;
    font-family: "Courier New", monospace;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.bn-widget-members code,
.bn-widget-members code.bn-wallet-address {
    color: #f6f8fb !important;
    background: rgba(255, 255, 255, 0.04) !important;
    text-shadow: none;
}

.bn-social-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.bn-social-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 11px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
    color: #eef1f6;
}

.bn-social-btn:hover {
    border-color: var(--primary);
    color: #fff;
    background: rgba(219, 121, 46, 0.08);
}

.bn-sidebar-post-fallback,
.bn-archive-card-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(219, 121, 46, 0.18), rgba(168, 85, 247, 0.18));
    color: #f4f7fb;
}

.bn-sidebar-post-fallback {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    font-size: 20px;
}

.bn-archive-card-fallback {
    min-height: 100%;
    width: 100%;
    aspect-ratio: 16 / 10;
    font-size: 34px;
}

.bn-single-page {
    padding-bottom: 56px;
}

.bn-single-hero {
    padding: 28px 0 12px;
}

.bn-single-hero-copy {
    max-width: 860px;
}

.bn-single-title {
    margin: 10px 0 14px;
    font-family: var(--font-titles);
    font-size: clamp(2rem, 3.6vw, 3.6rem);
    line-height: 1.04;
    color: #f7f9fc;
}

.bn-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: #b9c2cd;
    font-size: 14px;
}

.bn-single-cover {
    margin: 0 0 24px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #0d1116;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.bn-single-cover-image {
    display: block;
    width: 100%;
    height: auto;
}

.bn-single-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.85fr) minmax(280px, 0.8fr);
    gap: 32px;
    align-items: start;
}

.bn-single-main {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.bn-single-content,
.bn-single-related,
.bn-single-comments {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.bn-single-content {
    padding: 28px;
}

.bn-single-content,
.bn-single-content p,
.bn-single-content li,
.bn-single-content blockquote {
    color: #d8dee7;
}

.bn-single-content p,
.bn-single-content li {
    font-size: 17px;
    line-height: 1.85;
}

.bn-single-content h2,
.bn-single-content h3,
.bn-single-content h4 {
    font-family: var(--font-titles);
    color: #f6f8fb;
    line-height: 1.18;
}

.bn-single-content h2 {
    margin-top: 34px;
    font-size: 1.9rem;
}

.bn-single-content h3 {
    margin-top: 28px;
    font-size: 1.45rem;
}

.bn-single-content a {
    color: var(--primary);
}

.bn-single-content figure {
    margin: 26px 0;
}

.bn-single-content img {
    border-radius: 16px;
}

.bn-single-related {
    padding: 24px;
}

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

.bn-related-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
}

.bn-related-thumb {
    display: block;
    background: #0d1116;
}

.bn-related-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.bn-related-copy {
    padding: 16px;
}

.bn-related-copy h3 {
    margin: 8px 0 0;
    font-family: var(--font-titles);
    font-size: 1.1rem;
    line-height: 1.24;
    color: #f4f7fb;
}

.bn-single-comments {
    padding: 24px 28px;
}

.bn-single-comments .ct-comments-container,
.bn-single-comments .ct-container-narrow,
.bn-single-comments .ct-comments {
    width: 100%;
    max-width: none;
}

.bn-single-comments .comment-reply-title,
.bn-single-comments h2,
.bn-single-comments h3 {
    font-family: var(--font-titles);
    color: #f4f7fb;
}

.bn-single-comments label,
.bn-single-comments .comment-notes,
.bn-single-comments .logged-in-as,
.bn-single-comments .comment-form-cookies-consent {
    color: #c5ccd6;
}

.bn-single-comments textarea,
.bn-single-comments input[type="text"],
.bn-single-comments input[type="email"],
.bn-single-comments input[type="url"] {
    background: #10141a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #eef2f7;
    border-radius: 12px;
}

.bn-single-comments button[type="submit"] {
    background: var(--primary);
    color: #fff;
    border-radius: 10px;
}

.bn-single-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 96px;
}

.bn-sidebar-posts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bn-sidebar-post {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    align-items: center;
    padding: 8px 0;
}

.bn-sidebar-post-image {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    object-fit: cover;
}

.bn-sidebar-post span {
    color: #edf2f8;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
}

.bn-archive-page {
    padding: 0 0 56px;
}

.bn-archive-hero {
    padding: 34px 0 18px;
}

.bn-archive-hero-inner {
    padding: 28px 30px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(19, 22, 29, 0.95), rgba(19, 22, 29, 0.85)),
        radial-gradient(circle at top right, rgba(219, 121, 46, 0.14), transparent 36%);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.bn-archive-kicker {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(219, 121, 46, 0.12);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bn-archive-title {
    margin: 14px 0 10px;
    font-family: var(--font-titles);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    color: #f7f9fc;
}

.bn-archive-description {
    max-width: 760px;
    color: #c0c8d2;
    font-size: 15px;
    line-height: 1.7;
}

.bn-archive-description p {
    margin: 0;
}

.bn-archive-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.9fr) minmax(280px, 0.78fr);
    gap: 32px;
    align-items: start;
}

.bn-archive-main {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.bn-archive-featured,
.bn-archive-card,
.bn-archive-empty {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.bn-archive-featured {
    display: grid;
    grid-template-columns: minmax(300px, 1.05fr) minmax(0, 1fr);
}

.bn-archive-featured-media,
.bn-archive-card-thumb {
    display: block;
    background: #0d1116;
}

.bn-archive-featured-image,
.bn-archive-card-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bn-archive-featured-copy {
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.bn-archive-featured-copy h2 {
    margin: 0;
    font-family: var(--font-titles);
    font-size: clamp(1.9rem, 2.8vw, 2.7rem);
    line-height: 1.1;
    color: #f7f9fc;
}

.bn-archive-featured-copy p,
.bn-archive-card-copy p {
    margin: 0;
    color: #c2c8d3;
    line-height: 1.65;
}

.bn-archive-posts {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.bn-archive-card {
    display: grid;
    grid-template-columns: 260px 1fr;
}

.bn-archive-card-copy {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bn-archive-card-copy h3 {
    margin: 0;
    font-family: var(--font-titles);
    font-size: 1.5rem;
    line-height: 1.16;
    color: #f6f8fb;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.bn-archive-card-copy h2 {
    margin: 0;
    font-family: var(--font-titles);
    font-size: 1.5rem;
    line-height: 1.16;
    color: #f6f8fb;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.bn-archive-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: #b6beca;
    font-size: 13px;
}

.bn-archive-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 96px;
}

.bn-archive-empty {
    padding: 28px;
    text-align: center;
}

.bn-archive-empty h2 {
    margin: 0 0 8px;
    font-family: var(--font-titles);
    color: #f6f8fb;
}

.bn-archive-empty p {
    margin: 0;
    color: #c2c8d3;
}

.bn-archive-pagination .page-numbers {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 10px 0 0;
}

.bn-archive-pagination a,
.bn-archive-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: #ecf1f7;
}

.bn-archive-pagination .current {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.bn-search-form {
    margin-top: 20px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    max-width: 720px;
}

.bn-search-input {
    min-height: 54px;
    padding: 0 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 12, 16, 0.82);
    color: #eef2f7;
    font-size: 15px;
}

.bn-search-input::placeholder {
    color: #8d97a5;
}

.bn-search-submit {
    min-height: 54px;
    padding: 0 18px;
    border: 0;
    border-radius: 14px;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-titles);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.bn-search-submit:hover {
    background: var(--primary-hover);
}

.bn-search-page .bn-archive-title,
.bn-404-page h1 {
    text-wrap: balance;
}

.bn-static-page .bn-single-main {
    min-width: 0;
}

.bn-static-page .bn-single-content iframe,
.bn-static-page .bn-single-content video,
.bn-static-page .bn-single-content embed {
    width: 100%;
    max-width: 100%;
}

.bn-info-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.bn-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.bn-info-card {
    padding: 22px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.bn-info-card h2,
.bn-info-card h3 {
    margin-top: 0;
}

.bn-info-card ul {
    margin: 0;
    padding-left: 18px;
}

.bn-empty-state {
    max-width: 860px;
    margin: 40px auto 0;
    padding: 34px 28px;
}

.bn-empty-state p {
    max-width: 640px;
    margin: 10px auto 0;
}

.bn-empty-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

@media (max-width: 992px) {
    .bn-nav-container {
        gap: 14px;
    }

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

    .bn-nav-links {
        gap: 0;
        justify-content: center;
    }

    .bn-nav-links a {
        padding: 8px 8px;
        font-size: 13px;
    }

    .bn-nav-label-full {
        display: none;
    }

    .bn-nav-label-short {
        display: inline;
    }

    .bn-btn-member {
        padding: 10px 14px;
    }

    .bn-main-content-layout,
    .bn-hero-grid {
        grid-template-columns: 1fr;
    }

    .bn-hero-card {
        min-height: 420px;
    }

    .bn-deals-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bn-sidebar {
        position: static;
    }

    .bn-archive-layout,
    .bn-archive-featured,
    .bn-archive-card {
        grid-template-columns: 1fr;
    }

    .bn-archive-sidebar {
        position: static;
    }

    .bn-single-layout {
        grid-template-columns: 1fr;
    }

    .bn-single-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .bn-nav-container {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 16px 0;
    }

    .bn-main-nav {
        width: 100%;
        overflow: visible;
    }

    .bn-nav-links {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
    }

    .bn-nav-links a {
        justify-content: center;
        align-items: center;
        min-height: 40px;
        padding: 8px 8px;
        font-size: 13px;
        text-align: center;
    }

    .bn-nav-label-full {
        display: inline;
    }

    .bn-nav-label-short {
        display: none;
    }

    .bn-nav-actions {
        width: 100%;
        justify-content: center;
        gap: 12px;
    }

    .bn-logo {
        justify-content: center;
        font-size: 21px;
        text-align: center;
    }

    .bn-btn-member {
        flex: 1 1 auto;
        max-width: 220px;
    }

    .bn-post-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .bn-post-card-thumb-link {
        aspect-ratio: 16 / 9;
    }

    .bn-social-grid {
        grid-template-columns: 1fr;
    }

    .bn-hero-card h2 {
        font-size: 28px;
    }

    .bn-deals-grid {
        grid-template-columns: 1fr;
    }

    .bn-container {
        padding: 0 18px;
    }

    .bn-hero-side-column {
        gap: 16px;
    }

    .bn-archive-hero-inner {
        padding: 22px 20px;
    }

    .bn-archive-featured-copy,
    .bn-archive-card-copy {
        padding: 18px;
    }

    .bn-single-content,
    .bn-single-comments,
    .bn-single-related {
        padding: 20px 18px;
    }

    .bn-single-related-grid {
        grid-template-columns: 1fr;
    }

    .bn-search-form {
        grid-template-columns: 1fr;
    }

    .bn-search-submit {
        width: 100%;
    }

    .bn-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .bn-nav-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bn-nav-actions {
        flex-direction: row;
        align-items: center;
    }

    .bn-btn-search {
        flex: 0 0 44px;
    }

    .bn-hero-card {
        min-height: 360px;
        padding: 20px;
    }

    .bn-hero-grid {
        margin-top: 20px;
        gap: 16px;
    }

    .bn-hero-side-card {
        min-height: 210px;
    }

    .bn-hero-card h2 {
        font-size: 2rem;
        max-width: 100%;
    }

    .bn-post-card-info {
        padding: 18px;
    }

    .bn-post-card-info h3,
    .bn-archive-card-copy h2,
    .bn-archive-card-copy h3 {
        font-size: 1.28rem;
    }
}
