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

html { font-size: 15px; scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
}

a { color: #d4d4d4; text-decoration: none; transition: color 0.2s; }
a:hover { color: #ffffff; }

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

.bm-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.bm-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 30%, #0d0d0d 60%, #111111 100%);
}

.bm-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.bm-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: bmOrbFloat 20s ease-in-out infinite;
}

.bm-orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle at center, #666, transparent);
    top: -200px; left: -200px;
    animation-duration: 25s;
}

.bm-orb-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle at center, #888, transparent);
    bottom: -150px; right: -150px;
    animation-duration: 20s;
    animation-delay: -5s;
}

.bm-orb-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle at center, #555, transparent);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 30s;
    animation-delay: -10s;
}

.bm-orb-4 {
    width: 300px; height: 300px;
    background: radial-gradient(circle at center, #999, transparent);
    top: 20%; right: 10%;
    animation-duration: 18s;
    animation-delay: -3s;
}

@keyframes bmOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(60px, -40px) scale(1.05); }
    50% { transform: translate(-30px, 60px) scale(0.95); }
    75% { transform: translate(40px, 30px) scale(1.02); }
}

.bm-topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px) saturate(1.3);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.bm-topbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.bm-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bm-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
}

.bm-logo-text {
    display: flex;
    flex-direction: column;
}

.bm-logo-title {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, #e0e0e0, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.bm-logo-sub {
    font-size: 0.65rem;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.bm-topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bm-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-family: inherit;
}

.bm-btn-primary {
    background: #2a2a2a;
    color: #e0e0e0;
    border: 1px solid rgba(255,255,255,0.08);
}

.bm-btn-primary:hover {
    background: #333;
    border-color: rgba(255,255,255,0.15);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.bm-btn-ghost {
    background: transparent;
    color: #999;
    border: 1px solid rgba(255,255,255,0.06);
}

.bm-btn-ghost:hover {
    background: rgba(255,255,255,0.04);
    color: #e0e0e0;
}

.bm-user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px 6px 6px;
    border-radius: 30px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.2s;
}

.bm-user-btn:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
}

.bm-user-btn img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.bm-user-btn span {
    font-size: 0.82rem;
    font-weight: 500;
    color: #ccc;
}

.bm-nav {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    position: sticky;
    top: 64px;
    z-index: 99;
}

.bm-nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 52px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.bm-nav-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #888;
    transition: all 0.2s;
    white-space: nowrap;
}

.bm-nav-item:hover {
    color: #e0e0e0;
    background: rgba(255,255,255,0.04);
}

.bm-nav-item.active {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.bm-nav-item i { font-size: 0.8rem; }

.bm-nav-search {
    position: relative;
    margin-left: auto;
    min-width: 200px;
}

.bm-nav-search input {
    width: 100%;
    padding: 7px 14px 7px 34px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 0.82rem;
    outline: none;
    transition: all 0.2s;
}

.bm-nav-search input:focus {
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
}

.bm-nav-search input::placeholder { color: #555; }

.bm-nav-search i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
    font-size: 0.8rem;
    pointer-events: none;
}

.bm-main {
    flex: 1;
    padding: 32px 24px;
    position: relative;
    z-index: 1;
}

.bm-main-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.bm-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.bm-cat-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #888;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.2s;
}

.bm-cat-chip:hover {
    color: #e0e0e0;
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.1);
}

.bm-cat-chip.active {
    color: #fff;
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
}

.bm-cat-chip i { font-size: 0.75rem; }

.bm-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 14px;
}

.bm-filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bm-filter-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.bm-filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.bm-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #777;
    background: rgba(255,255,255,0.03);
    border: 1px solid transparent;
    transition: all 0.15s;
}

.bm-filter-chip:hover {
    color: #ccc;
    background: rgba(255,255,255,0.06);
}

.bm-filter-chip.active {
    color: #fff;
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
}

.bm-filter-chip i { font-size: 0.7rem; }

.bm-filter-chip[style*="--chip-color"] { border-color: color-mix(in srgb, var(--chip-color) 35%, transparent); }
.bm-filter-chip[style*="--chip-color"]:hover { background: color-mix(in srgb, var(--chip-color) 12%, transparent); }
.bm-filter-chip[style*="--chip-color"].active { color: #fff; background: color-mix(in srgb, var(--chip-color) 28%, transparent); border-color: var(--chip-color); }

.bm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.bm-grid-skins {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.bm-grid-biz {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.bm-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.bm-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    background: rgba(255,255,255,0.05);
}

.bm-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #111;
}

.bm-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bm-card:hover .bm-card-img img {
    transform: scale(1.08);
}

.bm-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #333;
    background: linear-gradient(135deg, #111, #1a1a1a);
}

.bm-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.68rem;
    font-weight: 600;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    color: #ccc;
    border: 1px solid rgba(255,255,255,0.08);
}

.bm-badge-gold { color: #f0c040; }
.bm-badge-silver { color: #a0a0a0; }

.bm-biz-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.08);
}

.bm-card-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.bm-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #e0e0e0;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.bm-card-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #d4d4d4;
    letter-spacing: 0.5px;
}

.bm-card-seller {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #666;
    margin-top: auto;
}

.bm-card-seller i { font-size: 0.7rem; }

.bm-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.bm-tag {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 3px 9px;
    border-radius: 5px;
    font-size: 0.68rem;
    font-weight: 500;
    background: rgba(255,255,255,0.04);
    color: #777;
    border: 1px solid rgba(255,255,255,0.05);
}

.bm-tag i { font-size: 0.6rem; }

.bm-tag-gender-male { color: #7cb9e8; border-color: rgba(124,185,232,0.15); background: rgba(124,185,232,0.06); }
.bm-tag-gender-female { color: #e8a0c0; border-color: rgba(232,160,192,0.15); background: rgba(232,160,192,0.06); }
.bm-tag-source { color: #999; }
.bm-tag-type { color: #a8d8ea; }
.bm-tag-location { color: #8bc34a; }
.bm-tag-price-cheap { color: #a0a0a0; }
.bm-tag-price-expensive { color: #f0c040; }

.bm-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 14px;
}

.bm-empty i {
    font-size: 3rem;
    color: #333;
    margin-bottom: 16px;
}

.bm-empty h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #888;
    margin-bottom: 6px;
}

.bm-empty p {
    font-size: 0.85rem;
    color: #555;
    max-width: 360px;
    margin: 0 auto;
}

.bm-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 28px;
}

.bm-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #777;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.15s;
}

.bm-page:hover {
    color: #e0e0e0;
    background: rgba(255,255,255,0.06);
}

.bm-page.active {
    color: #fff;
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
}

@media (max-width: 768px) {
    .bm-footer-grid { grid-template-columns: 1fr; gap: 20px; }
    .bm-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 768px) {
    .bm-filters { gap: 8px; padding: 12px; }
    .dropdown-toggle { min-width: 100px; font-size: 0.75rem; padding: 6px 10px; }
    .bm-filter-sep { display: none; }
    .bm-filter-chips .bm-filter-chip { font-size: 0.7rem; padding: 4px 8px; }
    .bm-footer-grid { grid-template-columns: 1fr; gap: 16px; }
    .bm-footer-brand { text-align: center; }
    .bm-footer-desc { max-width: 100%; }
    .bm-footer-social { justify-content: center; }
    .bm-footer-bottom { flex-direction: column; text-align: center; }
    .bm-footer-links { justify-content: center; }
}

@media (max-width: 480px) {
    .bm-filters { flex-direction: column; align-items: stretch; }
    .dropdown { width: 100%; }
    .dropdown-toggle { width: 100%; }
    .dropdown-menu { min-width: auto; width: 100%; }
    .bm-footer { padding: 24px 16px 16px; }
    .bm-footer-bottom { flex-direction: column; text-align: center; }
    .bm-footer-links { justify-content: center; }
}
.dropdown { position: relative; display: inline-flex; }
.dropdown-toggle {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 14px; border-radius: 8px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    color: #aaa; font-size: 0.82rem; font-weight: 500;
    cursor: pointer; transition: all 0.2s;
    font-family: inherit; white-space: nowrap;
    min-width: 140px; justify-content: space-between;
    user-select: none;
}
.dropdown-toggle:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); color: #e0e0e0; }
.dropdown-toggle i { font-size: 0.7rem; color: #555; transition: transform 0.2s; }
.dropdown.open .dropdown-toggle i { transform: rotate(180deg); }
.dropdown-toggle .dd-label { overflow: hidden; text-overflow: ellipsis; }
.dropdown-toggle .dd-chip {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 1px 8px; border-radius: 4px;
    font-size: 0.75rem; font-weight: 600;
}
.dropdown-menu {
    display: none; position: absolute; top: calc(100% + 4px); left: 0;
    min-width: 220px; z-index: 50;
    background: rgba(18,18,18,0.98); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08); border-radius: 12px;
    overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.6);
    animation: ddFadeIn 0.15s ease forwards;
}
.dropdown.open .dropdown-menu { display: block; }
.dropdown-menu-right { left: auto; right: 0; }
.dropdown-search {
    position: relative; padding: 10px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.dropdown-search input {
    width: 100%; padding: 8px 12px 8px 32px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06); border-radius: 8px;
    color: #e0e0e0; font-size: 0.82rem; outline: none;
    font-family: inherit; box-sizing: border-box;
}
.dropdown-search input:focus { border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.06); }
.dropdown-search input::placeholder { color: #555; }
.dropdown-search i {
    position: absolute; left: 20px; top: 50%; transform: translateY(-50%);
    color: #555; font-size: 0.75rem; pointer-events: none;
}
.dropdown-list { max-height: 280px; overflow-y: auto; padding: 4px; }
.dropdown-list::-webkit-scrollbar { width: 4px; }
.dropdown-list::-webkit-scrollbar-track { background: transparent; }
.dropdown-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 4px; }
.dropdown-item {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 12px; border-radius: 8px;
    font-size: 0.82rem; color: #aaa; text-decoration: none;
    transition: background 0.1s; cursor: pointer;
}
.dropdown-item:hover { background: rgba(255,255,255,0.04); color: #e0e0e0; }
.dropdown-item.active { background: rgba(255,255,255,0.08); color: #fff; }
.dropdown-item i { font-size: 0.7rem; width: 16px; text-align: center; }
.dropdown-item .srv-num {
    font-family: 'Rajdhani', sans-serif; font-weight: 700;
    font-size: 0.85rem; width: 24px; text-align: center; flex-shrink: 0;
}
.dropdown-item .srv-name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dropdown-item .srv-check { font-size: 0.65rem; color: #4ade80; flex-shrink: 0; }

@keyframes ddFadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

/* ===== SERVER COLORED CHIPS ===== */
.bm-server-chip {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 2px 10px 2px 6px; border-radius: 20px;
    font-size: 0.75rem; font-weight: 600;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
}
.bm-server-chip .srv-dot {
    width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.bm-server-chip .srv-num {
    font-family: 'Rajdhani', sans-serif; font-weight: 700;
}

/* ===== FILTER CHIPS ===== */
.bm-filter-chips {
    display: inline-flex; flex-wrap: wrap; align-items: center; gap: 3px;
}
.bm-filter-chips .bm-filter-chip { padding: 5px 10px; font-size: 0.75rem; }

/* ===== COMPACT FILTERS ROW ===== */
.bm-filters {
    display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
    margin-bottom: 24px; padding: 14px 18px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04); border-radius: 14px;
}
.bm-filter-sep {
    width: 1px; height: 28px; background: rgba(255,255,255,0.06); flex-shrink: 0;
}

/* ===== RED ACCENTS ON CARDS ===== */
.bm-card {
    border-color: rgba(255,255,255,0.06);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.bm-card:hover {
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.08), 0 0 60px rgba(239, 68, 68, 0.03);
    transform: translateY(-4px);
}
.bm-card-price {
    color: #ef4444;
    font-weight: 800;
}
.bm-card-badge {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.2);
    color: #f87171;
}
.bm-badge-gold { background: rgba(240, 192, 64, 0.15); border-color: rgba(240, 192, 64, 0.2); color: #f0c040; }
.bm-badge-silver { background: rgba(160, 160, 160, 0.15); border-color: rgba(160, 160, 160, 0.2); color: #a0a0a0; }
.bm-biz-icon {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}
.bm-card-title { color: #f0f0f0; }
.bm-card-seller { color: #888; }
.bm-card-seller i { color: #ef4444; }

/* ===== PAGINATION RED ACCENT ===== */
.bm-page.active {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}
.bm-page:hover { color: #ef4444; }

/* ===== ENHANCED FOOTER ===== */
.bm-footer {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 48px 24px 24px;
    background: linear-gradient(180deg, rgba(18,18,18,0.95) 0%, rgba(10,10,10,0.98) 100%);
    backdrop-filter: blur(12px);
    position: relative; z-index: 1;
}
.bm-footer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(239,68,68,0.4), transparent);
}
.bm-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto 28px;
}
.bm-footer-brand { display: flex; flex-direction: column; gap: 12px; }
.bm-footer-logo {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem; font-weight: 700;
    color: #e0e0e0;
    letter-spacing: 1.5px;
    display: flex; align-items: center; gap: 8px;
}
.bm-footer-logo i { color: #ef4444; }
.bm-footer-desc { font-size: 0.8rem; color: #666; line-height: 1.6; max-width: 320px; }
.bm-footer-social { display: flex; gap: 10px; margin-top: 4px; }
.bm-footer-social a {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    transition: all 0.25s;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.03);
    color: #888;
    text-decoration: none;
}
.bm-footer-social a:hover { transform: translateY(-3px); color: #fff; }
.bm-footer-social a[aria-label="Discord"]:hover { background: rgba(88,101,242,0.15); color: #8b9cff; border-color: rgba(88,101,242,0.2); }
.bm-footer-social a[aria-label="Telegram"]:hover { background: rgba(0,136,204,0.15); color: #66bfff; border-color: rgba(0,136,204,0.2); }
.bm-footer-col { display: flex; flex-direction: column; gap: 8px; }
.bm-footer-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem; font-weight: 700;
    color: #e0e0e0; text-transform: uppercase;
    letter-spacing: 1.5px; margin-bottom: 14px;
}
.bm-footer-link {
    font-size: 0.8rem; color: #777;
    transition: all 0.2s;
    display: inline-flex; align-items: center;
    gap: 6px; padding: 4px 6px;
    border-radius: 6px;
    text-decoration: none;
}
.bm-footer-link:hover { color: #ef4444; transform: translateX(3px); background: rgba(239,68,68,0.06); }
.bm-footer-bottom {
    display: flex; justify-content: space-between;
    align-items: center; gap: 16px; flex-wrap: wrap;
    padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.04);
    font-size: 0.75rem; color: #555;
    max-width: 1100px; margin: 0 auto;
}
.bm-footer-server-count i { color: #ef4444; }
.bm-footer-links { display: flex; flex-wrap: wrap; gap: 12px 20px; }
.bm-footer-links a { color: #555; transition: color 0.2s; text-decoration: none; }
.bm-footer-links a:hover { color: #ef4444; }

@media (max-width: 768px) {
    .bm-footer-grid { grid-template-columns: 1fr; gap: 16px; }
    .bm-footer-brand { text-align: center; }
    .bm-footer-desc { max-width: 100%; }
    .bm-footer-social { justify-content: center; }
    .bm-footer-bottom { flex-direction: column; text-align: center; }
    .bm-footer-links { justify-content: center; }
}
@media (max-width: 480px) {
    .bm-footer { padding: 32px 16px 16px; }
}

.bm-back-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #777;
    transition: color 0.2s;
}

.bm-back-link:hover { color: #ccc; }

.bm-server-box {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 14px;
    padding: 18px 20px 20px;
    margin-bottom: 24px;
}
.bm-server-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.bm-server-box-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.bm-server-all {
    font-size: 0.72rem;
    font-weight: 500;
    color: #555;
    padding: 4px 12px;
    border-radius: 6px;
    background: rgba(255,255,255,0.03);
    border: 1px solid transparent;
    transition: all 0.15s;
    text-decoration: none;
}
.bm-server-all:hover {
    color: #ccc;
    background: rgba(255,255,255,0.06);
}
.bm-server-all.active {
    color: #fff;
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
}

.bm-server-dropdown {
    position: relative;
}
.bm-server-select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
    min-height: 42px;
}
.bm-server-select:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.12);
}
.bm-server-select-label {
    font-size: 0.85rem;
    color: #aaa;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bm-server-select i {
    font-size: 0.75rem;
    color: #555;
    transition: transform 0.2s;
    flex-shrink: 0;
}
.bm-server-options {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
    animation: bmFadeIn 0.15s ease forwards;
}
.bm-server-options.open {
    display: block;
}
.bm-server-search {
    position: relative;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.bm-server-search input {
    width: 100%;
    padding: 8px 12px 8px 32px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 0.82rem;
    outline: none;
    box-sizing: border-box;
    font-family: inherit;
}
.bm-server-search input:focus {
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
}
.bm-server-search input::placeholder { color: #555; }
.bm-server-search i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
    font-size: 0.75rem;
    pointer-events: none;
}
.bm-server-list {
    max-height: 280px;
    overflow-y: auto;
    padding: 4px;
}
.bm-server-list::-webkit-scrollbar { width: 4px; }
.bm-server-list::-webkit-scrollbar-track { background: transparent; }
.bm-server-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 4px; }
.bm-server-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.1s;
}
.bm-server-option:hover {
    background: rgba(255,255,255,0.04);
}
.bm-server-option.active {
    background: rgba(255,255,255,0.08);
}
.bm-server-opt-num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}
.bm-server-opt-name {
    font-size: 0.82rem;
    color: #ccc;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bm-server-option.active .bm-server-opt-name {
    color: #fff;
}
.bm-server-option i {
    font-size: 0.7rem;
    color: #4ade80;
    flex-shrink: 0;
}

@keyframes bmFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .bm-topbar-inner { padding: 0 16px; }
    .bm-logo-sub { display: none; }
    .bm-nav-inner { padding: 0 12px; gap: 2px; overflow-x: auto; }
    .bm-nav-item { padding: 8px 12px; font-size: 0.78rem; }
    .bm-nav-search { min-width: 140px; }
    .bm-main { padding: 20px 12px; }
    .bm-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
    .bm-grid-skins { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
    .bm-grid-biz { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
    .bm-filters { padding: 14px; gap: 14px; }
    .bm-card-title { font-size: 0.85rem; }
}

@media (max-width: 480px) {
    .bm-topbar-right .bm-btn span { display: none; }
    .bm-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .bm-grid-skins { grid-template-columns: repeat(2, 1fr); }
    .bm-grid-biz { grid-template-columns: 1fr; }
}

/* ===== QUICK VIEW BOTTOM PANEL ===== */
.qv-panel {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: flex-end;
    justify-content: center;
}
.qv-panel.open {
    display: flex;
}

.qv-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    animation: qvFadeIn 0.25s ease;
}

.qv-sheet {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    max-height: 85vh;
    background: rgba(14,14,14,0.97);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -8px 60px rgba(0,0,0,0.8);
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 20px 24px;
}
.qv-panel.open .qv-sheet {
    transform: translateY(0);
}
.qv-sheet.loaded {
    transform: translateY(0);
}
.qv-sheet::-webkit-scrollbar { width: 4px; }
.qv-sheet::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 4px; }

.qv-handle {
    width: 36px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255,255,255,0.12);
    margin: 10px auto 0;
    flex-shrink: 0;
}

/* Loader */
.qv-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 20px 32px;
    gap: 14px;
    color: #888;
    font-size: 0.85rem;
}
.qv-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(239,68,68,0.12);
    border-top-color: #ef4444;
    border-radius: 50%;
    animation: qvSpin 0.7s linear infinite;
}
@keyframes qvSpin { to { transform: rotate(360deg); } }

/* Close */
.qv-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: #888;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.qv-close:hover { background: rgba(239,68,68,0.15); color: #ef4444; }

/* Content */
.qv-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 6px;
    animation: qvContentIn 0.3s ease;
}
@keyframes qvContentIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Images */
.qv-images {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.qv-main-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(0,0,0,0.3);
}
.qv-thumbs {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding: 2px 0;
}
.qv-thumb {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: all 0.2s;
}
.qv-thumb.active { border-color: #ef4444; opacity: 1; }
.qv-thumb:hover { opacity: 0.8; }
.qv-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Tags */
.qv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.qv-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
}
.qv-tag-cat { background: rgba(239,68,68,0.1); color: #f87171; }
.qv-tag-srv { background: rgba(34,197,94,0.1); color: #4ade80; }

/* Title */
.qv-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #f0f0f0;
    margin: 0;
    line-height: 1.2;
}

/* Price */
.qv-price {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ef4444;
}

/* Seller */
.qv-seller-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.82rem;
}
.qv-seller-label { color: #888; }
.qv-seller-name { color: #ccc; font-weight: 600; }
.qv-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: #f0c040;
}
.qv-rating i { font-size: 0.65rem; }
.qv-rating i.active { color: #f0c040; }
.qv-rating span { color: #888; }

/* Stats */
.qv-stats-row {
    display: flex;
    gap: 14px;
    font-size: 0.75rem;
    color: #666;
}
.qv-stat { display: inline-flex; align-items: center; gap: 4px; }
.qv-stat i { color: #555; }

/* Description */
.qv-desc h4, .qv-specs h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    color: #ccc;
    margin: 0 0 8px;
}
.qv-desc-text {
    font-size: 0.8rem;
    color: #aaa;
    line-height: 1.6;
}

/* Specs */
.qv-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}
.qv-spec {
    display: flex;
    justify-content: space-between;
    padding: 5px 8px;
    background: rgba(255,255,255,0.02);
    border-radius: 6px;
    font-size: 0.75rem;
}
.qv-spec-key { color: #888; }
.qv-spec-val { color: #ccc; font-weight: 500; }

/* ===== КРАСНОЕ ПРЕДУПРЕЖДЕНИЕ ===== */
.qv-danger {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.2);
    border-radius: 10px;
    animation: qvDangerPulse 2s ease-in-out infinite;
}
.qv-danger i {
    font-size: 1.1rem;
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 2px;
    animation: qvDangerIcon 1.5s ease-in-out infinite;
}
.qv-danger-text { font-size: 0.75rem; line-height: 1.5; }
.qv-danger-text strong {
    display: block;
    color: #f87171;
    font-weight: 700;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.qv-danger-text span { color: #aaa; display: block; }
.qv-danger-text u { color: #f87171; text-decoration-color: #ef4444; }

@keyframes qvDangerPulse {
    0%, 100% { border-color: rgba(239,68,68,0.2); }
    50% { border-color: rgba(239,68,68,0.5); }
}
@keyframes qvDangerIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Actions */
.qv-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.qv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 18px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-family: inherit;
    text-decoration: none;
    width: 100%;
}
.qv-btn-primary {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
}
.qv-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(239,68,68,0.3);
    color: #fff;
}
.qv-btn-ghost {
    background: rgba(255,255,255,0.04);
    color: #888;
    border: 1px solid rgba(255,255,255,0.06);
}
.qv-btn-ghost:hover {
    background: rgba(255,255,255,0.08);
    color: #e0e0e0;
}

@keyframes qvFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 480px) {
    .qv-sheet { max-width: 100%; border-radius: 16px 16px 0 0; padding: 0 14px 18px; }
    .qv-specs-grid { grid-template-columns: 1fr; }
}

