/* 🎨 BitMonz Website (02.08.) — Dark-Navy-Designlinie wie Login/Register/Spiel-UI.
   Responsive: Desktop / Tablet / Smartphone (mobile-first Breakpoints unten). */

:root {
    --bg0: #0a1220;
    --bg1: #111d33;
    --bg2: #0d1626;
    --line: #263a5e;
    --line2: #2a4066;
    --accent: #4a86e8;
    --gold: #ffd76a;
    --txt: #eaf2ff;
    --txt2: #b7c8e6;
    --txt3: #9fb3d6;
    --ok: #37e07b;
    --bad: #ff5f5f;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: radial-gradient(120% 120% at 20% 0%, #16264a 0%, var(--bg0) 70%);
    color: var(--txt);
    min-height: 100vh;
}
img { max-width: 100%; }
a { color: var(--accent); text-decoration: none; }

/* ---------- Navigation ---------- */
.bm-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 22px;
    background: rgba(9, 16, 30, .82);
    border-bottom: 1px solid rgba(38, 58, 94, .8);
    backdrop-filter: blur(10px);
}
.bm-nav-logo img { height: 40px; display: block; }
.bm-nav-burger {
    display: none;
    margin-left: auto;
    background: var(--bg1);
    color: var(--txt2);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 18px;
    padding: 6px 12px;
    cursor: pointer;
}
.bm-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    flex-wrap: wrap;
}
.bm-nav-links > a {
    color: var(--txt2);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: .3px;
    padding: 9px 12px;
    border-radius: 8px;
    transition: all .15s;
}
.bm-nav-links > a:hover { color: var(--txt); background: rgba(74, 134, 232, .12); }
.bm-nav-links > a.active { color: var(--txt); background: rgba(74, 134, 232, .18); }
.bm-lang {
    display: flex;
    gap: 4px;
    margin: 0 6px;
    padding: 4px;
    background: var(--bg0);
    border: 1px solid var(--line);
    border-radius: 8px;
}
.bm-lang button {
    background: transparent;
    color: var(--txt3);
    border: 0;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 9px;
    cursor: pointer;
}
.bm-lang button.active { background: #1d3a6b; color: var(--txt); box-shadow: 0 0 8px rgba(74, 134, 232, .35); }
.bm-play-btn {
    color: var(--txt);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: .4px;
    padding: 10px 18px;
    border-radius: 9px;
    background: linear-gradient(160deg, #1d3a6b, #14294c);
    border: 1px solid var(--accent);
    box-shadow: 0 0 12px rgba(74, 134, 232, .3);
    transition: all .15s;
}
.bm-play-btn:hover { background: linear-gradient(160deg, #234780, #183158); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(74, 134, 232, .45); }

/* ---------- Hero ---------- */
.bm-hero {
    position: relative;
    min-height: 86vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 120px 20px 80px;
}
.bm-hero-bg {
    position: absolute;
    inset: -40px;
    background: url('../img/mainbg.webp') center 40% / cover no-repeat;
    transform: scale(1.05);
    z-index: 0;
}
.bm-hero-shade {
    position: absolute;
    inset: -40px;
    z-index: 1;
    background:
        radial-gradient(110% 90% at 50% 40%, rgba(8, 15, 30, .05) 30%, rgba(8, 15, 30, .6) 100%),
        linear-gradient(180deg, rgba(8, 15, 30, .55) 0%, rgba(8, 15, 30, .08) 34%, rgba(10, 18, 32, .92) 96%);
}
.bm-hero-inner { position: relative; z-index: 2; max-width: 760px; }
.bm-hero-inner .bm-hero-logo { max-width: min(520px, 82vw); filter: drop-shadow(0 10px 28px rgba(0, 0, 0, .65)) drop-shadow(0 0 22px rgba(74, 134, 232, .3)); }
.bm-hero h1 {
    margin-top: 18px;
    font-size: clamp(22px, 3.2vw, 34px);
    letter-spacing: .3px;
    text-shadow: 0 3px 16px rgba(0, 0, 0, .8);
}
.bm-hero p {
    margin: 16px auto 26px;
    max-width: 620px;
    color: var(--txt2);
    font-size: clamp(14px, 1.6vw, 16.5px);
    line-height: 1.65;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .8);
}
.bm-hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.bm-btn-primary {
    display: inline-block;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 700;
    color: var(--txt);
    border-radius: 11px;
    background: linear-gradient(160deg, #1d3a6b, #14294c);
    border: 1px solid var(--accent);
    box-shadow: 0 0 18px rgba(74, 134, 232, .35);
    transition: all .15s;
}
.bm-btn-primary:hover { background: linear-gradient(160deg, #234780, #183158); transform: translateY(-2px); box-shadow: 0 8px 26px rgba(74, 134, 232, .5); }
.bm-btn-ghost {
    display: inline-block;
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 700;
    color: var(--txt2);
    border-radius: 11px;
    background: rgba(16, 28, 49, .66);
    border: 1px solid var(--line);
    backdrop-filter: blur(6px);
    transition: all .15s;
}
.bm-btn-ghost:hover { color: var(--txt); border-color: var(--accent); }

/* ---------- Sections ---------- */
.bm-section { max-width: 1120px; margin: 0 auto; padding: 76px 22px 10px; }
.bm-section-head { text-align: center; margin-bottom: 36px; }
.bm-section-head h2 { font-size: clamp(24px, 3vw, 32px); }
.bm-section-head h2::after {
    content: '';
    display: block;
    width: 66px; height: 3px;
    margin: 12px auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.bm-section-head p { color: var(--txt3); margin-top: 12px; font-size: 15px; }

/* Pixel-Icons (img/icons statt Emojis) */
.bm-ico { width: 26px; height: 26px; image-rendering: pixelated; vertical-align: -5px; margin-right: 4px; }
.bm-server-name .bm-ico { width: 20px; height: 20px; vertical-align: -4px; margin-right: 2px; }

.bm-card {
    background: linear-gradient(165deg, rgba(17, 29, 51, .8), rgba(10, 18, 34, .8));
    border: 1px solid var(--line2);
    border-radius: 14px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .4);
}

/* News */
.bm-news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 18px; }
.bm-news-card { padding: 20px 22px; transition: transform .15s, border-color .15s; }
.bm-news-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.bm-news-date { color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .6px; }
.bm-news-card h3 { margin: 8px 0 8px; font-size: 17px; }
.bm-news-card p { color: var(--txt2); font-size: 14px; line-height: 1.6; }
.bm-news-tag {
    display: inline-block;
    margin-bottom: 10px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 999px;
    background: rgba(74, 134, 232, .15);
    border: 1px solid rgba(74, 134, 232, .5);
    color: #9cc0ff;
}

/* News-Seite (news.php: alle Einträge untereinander) */
.bm-news-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.bm-news-full { padding: 22px 26px; }
.bm-news-full:hover { transform: none; border-color: var(--line2); }
.bm-news-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.bm-news-meta .bm-news-tag { margin-bottom: 0; }

/* Features */
.bm-feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.bm-feature { padding: 24px; transition: transform .15s, border-color .15s; }
.bm-feature:hover { transform: translateY(-3px); border-color: var(--accent); }
.bm-feature .ico {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: rgba(74, 134, 232, .14);
    border: 1px solid rgba(74, 134, 232, .45);
    margin-bottom: 14px;
}
.bm-feature .ico img { width: 30px; height: 30px; image-rendering: pixelated; }
.bm-feature h3 { font-size: 17px; margin-bottom: 8px; }
.bm-feature p { color: var(--txt2); font-size: 14px; line-height: 1.65; }
.bm-flow { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; margin: 6px 0 30px; color: var(--txt3); font-size: 13.5px; font-weight: 700; }
.bm-flow .step { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 999px; background: rgba(16, 28, 49, .8); border: 1px solid var(--line); }
.bm-flow .step img { width: 20px; height: 20px; image-rendering: pixelated; }
.bm-flow .arr { color: var(--accent); }

/* Gallery */
.bm-gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.bm-shot { overflow: hidden; position: relative; }
.bm-shot .ph {
    aspect-ratio: 16 / 9;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
    color: var(--txt3);
    font-size: 13px; font-weight: 600;
    background:
        linear-gradient(135deg, rgba(74, 134, 232, .08) 25%, transparent 25%, transparent 50%, rgba(74, 134, 232, .08) 50%, rgba(74, 134, 232, .08) 75%, transparent 75%) 0 0 / 28px 28px,
        rgba(10, 18, 32, .6);
}
.bm-shot .ph .big { font-size: 30px; opacity: .8; }
.bm-shot img, .bm-shot video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.bm-shot figcaption { padding: 12px 16px; font-size: 13px; color: var(--txt2); }
.bm-shot figcaption b { color: var(--txt); display: block; margin-bottom: 3px; font-size: 14px; }

/* Pedia-Teaser */
.bm-pedia-teaser { display: flex; align-items: center; gap: 26px; padding: 28px; flex-wrap: wrap; }
.bm-pedia-teaser .txt { flex: 1 1 320px; }
.bm-pedia-teaser .txt p { color: var(--txt2); font-size: 14.5px; line-height: 1.65; margin: 8px 0 18px; }
.bm-pedia-mons { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.bm-pedia-mons img {
    width: 72px; height: 72px;
    object-fit: contain;
    image-rendering: pixelated;
    background: rgba(10, 18, 32, .8);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 8px;
}

/* Serverliste */
.bm-servers { overflow: hidden; }
.bm-server-row {
    display: grid;
    grid-template-columns: 1.4fr 1.2fr .9fr .9fr;
    gap: 10px;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(38, 58, 94, .5);
    font-size: 14px;
}
.bm-server-row.head { color: var(--txt3); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; background: rgba(10, 18, 32, .6); }
.bm-server-row:last-child { border-bottom: 0; }
.bm-server-name { font-weight: 700; display: flex; align-items: center; gap: 9px; }
.bm-server-name .rico { font-size: 17px; }
.bm-status { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; }
.bm-status .dot { width: 9px; height: 9px; border-radius: 50%; background: #888; }
.bm-status.online .dot { background: var(--ok); box-shadow: 0 0 7px rgba(55, 224, 123, .9); }
.bm-status.online { color: var(--ok); }
.bm-status.offline .dot { background: var(--bad); box-shadow: 0 0 7px rgba(255, 95, 95, .8); }
.bm-status.offline { color: var(--bad); }
.bm-load-bar { height: 8px; border-radius: 4px; background: rgba(10, 18, 32, .9); border: 1px solid var(--line); overflow: hidden; }
.bm-load-bar > i { display: block; height: 100%; background: linear-gradient(90deg, #37e07b, #ffd76a); border-radius: 4px; }
.bm-load-txt { color: var(--txt3); font-size: 12px; margin-top: 4px; }

/* Kontakt */
.bm-contact-wrap { max-width: 640px; margin: 0 auto; padding: 28px; }
.bm-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bm-field { margin-bottom: 15px; }
.bm-field label { display: block; color: var(--txt3); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.bm-field input, .bm-field select, .bm-field textarea {
    width: 100%;
    padding: 12px 13px;
    color: var(--txt);
    font-size: 14px;
    font-family: inherit;
    background: rgba(10, 18, 32, .92);
    border: 1px solid var(--line);
    border-radius: 9px;
    transition: border-color .15s, box-shadow .15s;
}
.bm-field textarea { min-height: 130px; resize: vertical; }
.bm-field input:focus, .bm-field select:focus, .bm-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(74, 134, 232, .16);
}
.bm-captcha { display: flex; align-items: center; gap: 12px; }
.bm-captcha .q { padding: 11px 16px; border-radius: 9px; background: rgba(29, 58, 107, .5); border: 1px solid var(--accent); font-weight: 700; letter-spacing: 1px; white-space: nowrap; }
.bm-captcha input { max-width: 120px; }
.bm-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.bm-form-note { color: var(--txt3); font-size: 12px; line-height: 1.55; margin: 4px 0 16px; }
.bm-form-msg { min-height: 20px; font-size: 13.5px; font-weight: 600; margin-top: 12px; text-align: center; }
.bm-form-msg.ok { color: var(--ok); }
.bm-form-msg.err { color: var(--bad); }
.bm-submit {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    color: var(--txt);
    background: linear-gradient(160deg, #1d3a6b, #14294c);
    border: 1px solid var(--accent);
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 0 14px rgba(74, 134, 232, .25);
    transition: all .15s;
}
.bm-submit:hover:not(:disabled) { background: linear-gradient(160deg, #234780, #183158); transform: translateY(-1px); }
.bm-submit:disabled { opacity: .5; cursor: not-allowed; }

/* Shop */
.bm-shop-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 18px; }
.bm-shop-card { padding: 26px; text-align: center; position: relative; overflow: hidden; }
.bm-shop-card .ico { margin-bottom: 14px; }
.bm-shop-card .ico img { width: 46px; height: 46px; image-rendering: pixelated; }
.bm-shop-card h3 { margin-bottom: 8px; }
.bm-shop-card p { color: var(--txt2); font-size: 14px; line-height: 1.6; margin-bottom: 18px; }
.bm-soon {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .6px;
    color: var(--gold);
    background: rgba(255, 215, 106, .1);
    border: 1px solid rgba(255, 215, 106, .5);
}

/* Pedia-Seite */
.bm-pedia-tools { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 24px; }
.bm-pedia-tools input, .bm-pedia-tools select {
    padding: 11px 13px;
    color: var(--txt);
    font-size: 14px;
    background: rgba(10, 18, 32, .92);
    border: 1px solid var(--line);
    border-radius: 9px;
}
.bm-pedia-tools input { min-width: 220px; }

/* Custom-Dropdowns (nie native Optik) */
.bm-select, .bm-field select, .bm-pedia-tools select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 36px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238fb0e8' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 13px center;
}
.bm-select option, .bm-field select option, .bm-pedia-tools select option {
    background: #0d1626;
    color: var(--txt);
}
.bm-select:focus, .bm-pedia-tools select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(74, 134, 232, .16);
}
.bm-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 22px; }
.bm-tab {
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 700;
    color: var(--txt3);
    background: rgba(16, 28, 49, .8);
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
}
.bm-tab.active { color: var(--txt); background: #1d3a6b; border-color: var(--accent); box-shadow: 0 0 12px rgba(74, 134, 232, .3); }
.bm-pedia-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; padding-bottom: 40px; }

/* Mon-Cards v2: bb-Hintergrund, Atmen + Blinzeln wie im Spiel, KEIN Hover (nicht interaktiv) */
.bm-mon-card2 { overflow: hidden; display: flex; flex-direction: column; }
.bm-mon-card2 .mon-stage {
    position: relative;
    height: 150px;
    display: flex; align-items: flex-end; justify-content: center;
    background-color: rgba(10, 18, 32, .85);
    background-size: cover;
    background-position: center bottom;
    image-rendering: pixelated;
    border-bottom: 1px solid var(--line2);
}
.bm-mon-card2 .mon-stage::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10, 18, 32, .25), rgba(10, 18, 32, 0) 40%);
    pointer-events: none;
}
.bm-mon-card2 .mon-eles {
    position: absolute; top: 8px; left: 8px; z-index: 2;
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 7px;
    background: rgba(8, 14, 26, .78);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 9px;
}
.bm-mon-card2 .mon-eles img { width: 18px; height: 18px; image-rendering: pixelated; display: block; }
.bm-mon-card2 .mon-eles .ele-dot { width: 12px; height: 12px; border-radius: 50%; display: block; }
.bm-mon-card2 .mon-sprite {
    position: relative; z-index: 1;
    width: 104px; height: 104px;
    margin-bottom: 8px;
    object-fit: contain;
    image-rendering: pixelated;
    filter: drop-shadow(0 6px 8px rgba(0, 0, 0, .45));
}
@keyframes bmzBreathe {
    0%, 100% { transform: scale(1, 1); }
    50% { transform: scale(1, 0.97); }
}
.bmz-breathe { animation: bmzBreathe 4s ease-in-out infinite; transform-origin: bottom center; }
.bm-mon-card2 .mon-info { padding: 14px 16px 16px; text-align: left; }
.bm-mon-card2 .mon-info h3 { margin: 0 0 8px; font-size: 16px; }
.bm-mon-card2 .desc { color: var(--txt2); font-size: 12.5px; line-height: 1.55; margin-top: 9px; text-align: left; }
.bm-ele {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 3px 9px 3px 6px;
    margin: 0 6px 4px 0;
    border-radius: 999px;
    font-size: 11px; font-weight: 700;
    border: 1px solid rgba(0, 0, 0, .35);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
}
.bm-ele img { width: 15px; height: 15px; image-rendering: pixelated; }

/* Item-Cards (Icon auf Stage, Seltenheits-Rahmen, WoW-Tooltip) */
.bm-item-card .mon-stage.item-stage { height: 110px; align-items: center; }
.bm-item-card .item-ico { width: 58px; height: 58px; object-fit: contain; image-rendering: pixelated; filter: drop-shadow(0 5px 7px rgba(0, 0, 0, .5)); }
.bm-item-card .mon-info h3 { font-size: 15px; }

/* WoW-Hover-Tooltip (wie im Spiel) */
.bm-wow-tip {
    position: fixed;
    z-index: 9999;
    min-width: 220px; max-width: 300px;
    pointer-events: none;
    background: linear-gradient(170deg, rgba(13, 22, 38, .97), rgba(8, 14, 26, .97));
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, .65);
    font-size: 13px;
}
.bm-wow-tip .wt-head {
    display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
    padding: 11px 14px 9px;
    border-bottom: 1px solid var(--line);
}
.bm-wow-tip .wt-name { font-weight: 800; font-size: 14.5px; }
.bm-wow-tip .wt-rar { font-size: 11px; font-weight: 700; white-space: nowrap; }
.bm-wow-tip .wt-body { padding: 10px 14px 12px; }
.bm-wow-tip .wt-desc { color: var(--txt2); line-height: 1.5; font-size: 12.5px; margin: 0; }
.bm-wow-tip .wt-desc:empty { display: none; }
.bm-wow-tip .wt-stats:not(:empty) { margin-top: 8px; }
.bm-wow-tip .wt-stat { font-weight: 700; font-size: 12.5px; }
.bm-wow-tip .wt-stat.wt-hp { color: #37e07b; }
.bm-wow-tip .wt-stat.wt-mp { color: #5aa0ff; }
.bm-wow-tip .wt-type { color: var(--txt3); font-size: 11px; text-transform: uppercase; letter-spacing: .8px; margin-top: 8px; }
.bm-wow-tip .wt-type:empty { display: none; }
.bm-badges { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }
.bm-badge { padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; border: 1px solid var(--line); color: var(--txt2); background: rgba(10, 18, 32, .7); }
.bm-badge.rar-common { color: #c2c2c2; }
.bm-badge.rar-normal { color: #dcdcdc; }
.bm-badge.rar-uncommon { color: #1eff00; border-color: rgba(30, 255, 0, .4); }
.bm-badge.rar-rare { color: #4a9bff; border-color: rgba(0, 112, 221, .5); }
.bm-badge.rar-epic { color: #a335ee; border-color: rgba(163, 53, 238, .5); }
.bm-badge.rar-legendary { color: #ff8000; border-color: rgba(255, 128, 0, .5); }
.bm-badge.rar-unique { color: #ff4040; border-color: rgba(255, 0, 0, .5); }
.bm-loading { text-align: center; color: var(--txt3); padding: 40px 0; }

/* Legal */
.bm-legal { max-width: 780px; margin: 0 auto; padding: 120px 22px 60px; line-height: 1.7; }
.bm-legal h1 { margin-bottom: 24px; }
.bm-legal h2 { margin: 28px 0 10px; font-size: 19px; color: var(--txt); }
.bm-legal p, .bm-legal li { color: var(--txt2); font-size: 14.5px; }
.bm-legal ul { padding-left: 22px; margin: 8px 0; }
.bm-legal .bm-card { padding: 20px 24px; margin: 14px 0; }

/* Footer */
.bm-footer { margin-top: 80px; background: rgba(8, 14, 26, .9); border-top: 1px solid rgba(38, 58, 94, .8); }
.bm-footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px 22px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
}
.bm-footer-col .bm-soc { display: inline-flex; align-items: center; gap: 8px; }
.bm-footer-col .bm-soc svg { width: 16px; height: 16px; flex: 0 0 auto; }
.bm-footer-col .bm-soc:hover svg { color: var(--accent); }
.bm-footer-logo { height: 44px; margin-bottom: 12px; }
.bm-footer-col h4 { color: var(--txt); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.bm-footer-col p { color: var(--txt3); font-size: 13px; line-height: 1.6; }
.bm-footer-col a { display: block; color: var(--txt2); font-size: 13.5px; padding: 4px 0; }
.bm-footer-col a:hover { color: var(--txt); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .bm-nav { flex-wrap: wrap; }
    .bm-nav-burger { display: block; }
    .bm-nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding-top: 10px;
    }
    .bm-nav-links.open { display: flex; }
    .bm-nav-links > a { padding: 12px 10px; }
    .bm-lang { justify-content: center; margin: 8px 0; }
    .bm-play-btn { text-align: center; margin-top: 6px; }
    .bm-form-row { grid-template-columns: 1fr; }
    .bm-server-row { grid-template-columns: 1.3fr 1fr .9fr; }
    .bm-server-row .col-load { display: none; }
    .bm-footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .bm-hero { min-height: 74vh; padding-top: 96px; }
    .bm-section { padding: 56px 16px 6px; }
    .bm-server-row { grid-template-columns: 1.2fr .9fr; font-size: 13px; }
    .bm-server-row .col-region { display: none; }
    .bm-pedia-tools input { min-width: 0; flex: 1 1 100%; }
    .bm-footer-inner { grid-template-columns: 1fr; gap: 22px; }
}
