@import url('base-legacy.css');

/* =========================================================
   MU BRAZUKAS 97D DOWNGRADE — MEDIEVAL PREMIUM THEME
   ========================================================= */
:root {
    --mb-bg: #070706;
    --mb-bg-2: #0d0b08;
    --mb-panel: rgba(12, 12, 11, .96);
    --mb-panel-2: rgba(20, 17, 12, .94);
    --mb-gold: #d5ac58;
    --mb-gold-bright: #f1d38b;
    --mb-gold-dark: #76501f;
    --mb-red: #8d170f;
    --mb-red-bright: #d74625;
    --mb-blue: #214f95;
    --mb-blue-bright: #4da6ff;
    --mb-green: #63d36f;
    --mb-text: #e4d7b8;
    --mb-muted: #968b75;
    --mb-line: rgba(213, 172, 88, .25);
    --mb-shadow: 0 24px 70px rgba(0, 0, 0, .66);
    --mb-serif: Georgia, 'Times New Roman', serif;
    --mb-sans: Inter, Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.mb97-page {
    margin: 0;
    color: var(--mb-text);
    background:
        radial-gradient(circle at 8% 8%, rgba(128, 26, 12, .14), transparent 25%),
        radial-gradient(circle at 92% 6%, rgba(22, 73, 145, .14), transparent 28%),
        linear-gradient(180deg, #050505 0%, #090806 48%, #050505 100%);
    font-family: var(--mb-sans);
    font-size: 14px;
    overflow-x: hidden;
}
body.mb97-page::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    opacity: .3;
    background-image:
        linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.01) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: radial-gradient(circle at center, #000 10%, transparent 82%);
}
a { color: inherit; text-decoration: none; transition: .25s ease; }
a:hover, a:focus { color: var(--mb-gold-bright); text-decoration: none; }
img { max-width: 100%; }
.layout-container { width: min(1520px, calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 10000; background: #fff; color: #000; padding: 10px 14px; }
.skip-link:focus { top: 12px; }
.scroll-progress { position: fixed; inset: 0 0 auto; height: 3px; z-index: 10020; background: transparent; }
.scroll-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--mb-red-bright), var(--mb-gold-bright), var(--mb-blue-bright)); box-shadow: 0 0 16px currentColor; }

.mb97-ambient { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.mb97-ambient i { position: absolute; width: 320px; height: 320px; border-radius: 50%; filter: blur(100px); opacity: .12; animation: mb97Float 12s ease-in-out infinite alternate; }
.mb97-ambient i:nth-child(1) { left: -120px; top: 18%; background: #a62a12; }
.mb97-ambient i:nth-child(2) { right: -150px; top: 30%; background: #1555b1; animation-delay: -4s; }
.mb97-ambient i:nth-child(3) { left: 42%; bottom: -220px; background: #d09d40; animation-delay: -7s; }
@keyframes mb97Float { to { transform: translate3d(40px,-30px,0) scale(1.14); } }

/* Header */
.mb97-header {
    position: relative;
    z-index: 1000;
    height: 82px;
    border-bottom: 1px solid rgba(227, 189, 102, .28);
    background: linear-gradient(180deg, rgba(7,7,7,.98), rgba(10,9,7,.96));
    box-shadow: 0 14px 40px rgba(0,0,0,.52);
}
.mb97-header::before, .mb97-header::after {
    content: '';
    position: absolute;
    top: 0;
    width: 210px;
    height: 82px;
    opacity: .55;
    pointer-events: none;
    background: linear-gradient(135deg, transparent 35%, rgba(213,172,88,.15) 36%, transparent 38%);
}
.mb97-header::before { left: 0; }
.mb97-header::after { right: 0; transform: scaleX(-1); }
.mb97-header-line { position: absolute; left: 0; right: 0; top: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--mb-gold-dark), var(--mb-gold-bright), var(--mb-gold-dark), transparent); }
.mb97-nav-wrap { height: 82px; display: grid; grid-template-columns: 250px 1fr auto; align-items: center; gap: 24px; }
.mb97-brand { position: relative; height: 108px; display: flex; align-items: center; z-index: 3; }
.mb97-brand img { width: 245px; max-height: 112px; object-fit: contain; filter: drop-shadow(0 11px 18px rgba(0,0,0,.75)); }
.mb97-nav { justify-self: center; }
.mb97-nav > ul { display: flex; align-items: center; gap: 5px; margin: 0; padding: 0; list-style: none; }
.mb97-nav > ul > li { position: relative; }
.mb97-nav > ul > li::after { content: '◆'; position: absolute; right: -6px; top: 50%; transform: translateY(-50%) scale(.55); color: #8b652b; opacity: .8; }
.mb97-nav > ul > li:last-child::after { display: none; }
.mb97-nav > ul > li > a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 29px 15px 26px;
    color: #d8c8a3;
    font: 700 13px/1 var(--mb-serif);
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
}
.mb97-nav > ul > li > a::before { content: ''; position: absolute; left: 20%; right: 20%; bottom: 0; height: 2px; transform: scaleX(0); background: linear-gradient(90deg, transparent, var(--mb-red-bright), transparent); box-shadow: 0 0 14px var(--mb-red-bright); transition: .25s; }
.mb97-nav > ul > li > a:hover::before { transform: scaleX(1); }
.mb97-nav .nav-icon { display: none; }
.mb97-account-actions { display: flex; align-items: center; gap: 7px; }
.mb97-account-link, .mb97-account-exit {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 13px;
    border: 1px solid rgba(213,172,88,.36);
    background: linear-gradient(180deg, rgba(68,45,18,.42), rgba(13,12,10,.7));
    color: var(--mb-gold-bright);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}
.mb97-account-exit { width: 38px; padding: 0; color: #d56e57; }
.mb97-account-actions .mb-icon { width: 15px; height: 15px; }
.nav-toggle { display: none; }

/* Buttons */
.mb97-button {
    position: relative;
    min-width: 245px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 42px;
    color: #f9ead0;
    font: 700 20px/1 var(--mb-serif);
    letter-spacing: .035em;
    text-transform: uppercase;
    clip-path: polygon(9% 0, 91% 0, 100% 50%, 91% 100%, 9% 100%, 0 50%);
    border: 1px solid transparent;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,.55));
    isolation: isolate;
}
.mb97-button::before, .mb97-button::after { content: ''; position: absolute; inset: 2px; clip-path: inherit; z-index: -1; }
.mb97-button::after { inset: 7px; border: 1px solid rgba(255,224,150,.42); }
.mb97-button-red { background: linear-gradient(180deg, #d5a44d, #6a3d13); }
.mb97-button-red::before { background: linear-gradient(180deg, #a52316, #3c0906); }
.mb97-button-blue { background: linear-gradient(180deg, #d8b464, #4b371b); }
.mb97-button-blue::before { background: linear-gradient(180deg, #214d8e, #07192f); }
.mb97-button:hover { color: #fff; transform: translateY(-3px); filter: drop-shadow(0 13px 22px rgba(0,0,0,.62)) brightness(1.12); }

/* Home hero */
.mb97-hero {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    border-bottom: 1px solid var(--mb-line);
    background: #050505;
}
.mb97-hero::before { content: ''; position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(0,0,0,.08), transparent 45%, rgba(0,0,0,.9)); pointer-events: none; }
.mb97-hero-characters { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(4, 1fr); }
.mb97-class { position: relative; overflow: hidden; background-image: var(--character); background-size: cover; background-position: center; filter: saturate(1.08) contrast(1.08); transform: scale(1.02); transition: transform 1.2s ease, filter .5s ease; }
.mb97-class::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.78), transparent 30%, transparent 68%, rgba(0,0,0,.74)), linear-gradient(180deg, rgba(0,0,0,.45), transparent 38%, rgba(0,0,0,.6)); }
.mb97-class::after { content: ''; position: absolute; inset: 0; mix-blend-mode: screen; opacity: .34; }
.mb97-class-knight::after { background: radial-gradient(circle at 45% 66%, rgba(255,40,10,.8), transparent 38%); }
.mb97-class-wizard::after { background: radial-gradient(circle at 55% 35%, rgba(132,51,255,.72), transparent 37%); }
.mb97-class-elf::after { background: radial-gradient(circle at 52% 34%, rgba(33,228,184,.6), transparent 40%); }
.mb97-class-gladiator::after { background: radial-gradient(circle at 66% 35%, rgba(36,130,255,.72), transparent 42%); }
.mb97-class span { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.75)); }
.mb97-hero:hover .mb97-class { transform: scale(1.045); }
.mb97-hero-vignette { position: absolute; inset: 0; z-index: 3; background: radial-gradient(ellipse at center, transparent 25%, rgba(0,0,0,.18) 53%, rgba(0,0,0,.8) 100%); box-shadow: inset 0 0 150px #000; }
.mb97-hero-content { position: relative; z-index: 5; min-height: 600px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding-top: 20px; }
.mb97-hero-logo { text-align: center; margin-top: -45px; }
.mb97-hero-logo img { width: min(520px, 86vw); filter: drop-shadow(0 16px 30px #000) drop-shadow(0 0 28px rgba(213,172,88,.16)); }
.mb97-hero-logo p { max-width: 620px; margin: -22px auto 20px; color: #d2c5aa; text-shadow: 0 2px 8px #000; font: 700 15px/1.6 var(--mb-serif); letter-spacing: .05em; }
.mb97-hero-actions { display: flex; gap: 14px; }
.mb97-class-labels { position: absolute; z-index: 5; left: 50%; bottom: 24px; transform: translateX(-50%); display: grid; grid-template-columns: repeat(4, 1fr); pointer-events: none; }
.mb97-class-labels div { text-align: center; text-shadow: 0 2px 8px #000; }
.mb97-class-labels strong { display: block; color: #f3e8cf; font: 700 15px/1.2 var(--mb-serif); text-transform: uppercase; }
.mb97-class-labels span { color: var(--mb-gold); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .09em; }
.mb97-class-labels div:nth-child(1) span { color: #f05a3a; }
.mb97-class-labels div:nth-child(2) span { color: #b768ff; }
.mb97-class-labels div:nth-child(3) span { color: #5ee39a; }
.mb97-class-labels div:nth-child(4) span { color: #52a8ff; }

/* Internal hero */
.mb97-internal-hero { position: relative; min-height: 355px; overflow: hidden; border-bottom: 1px solid var(--mb-line); background: #080706; }
.mb97-internal-art { position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(0,0,0,.2), rgba(0,0,0,.45)), url('../img/profiles/guild.jpg'); background-size: cover; background-position: center 32%; filter: contrast(1.1) saturate(.9); transform: scale(1.03); }
.mb97-internal-hero::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(90,14,7,.62), rgba(0,0,0,.65) 45%, rgba(10,45,94,.58)), linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.86)); }
.mb97-internal-content { position: relative; z-index: 2; min-height: 355px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 45px 0 30px; }
.mb97-kicker { color: var(--mb-gold); font-size: 11px; font-weight: 900; letter-spacing: .22em; }
.mb97-internal-content h1 { margin: 7px 0 8px; color: #f0dfba; font: 700 clamp(38px, 5vw, 66px)/1.05 var(--mb-serif); text-transform: uppercase; text-shadow: 0 5px 20px #000; }
.mb97-internal-content p { max-width: 700px; margin: 0 0 22px; color: #c4b79d; font: 16px/1.6 var(--mb-serif); }
.mb97-internal-actions { display: flex; gap: 12px; }
.mb97-internal-actions .mb97-button { min-width: 200px; height: 48px; font-size: 15px; }

/* Server ribbon */
.mb97-server-ribbon { position: relative; z-index: 10; border-top: 1px solid rgba(241,211,139,.38); border-bottom: 1px solid rgba(213,172,88,.32); background: linear-gradient(180deg, #17140f, #090909); box-shadow: 0 10px 32px rgba(0,0,0,.55), inset 0 1px rgba(255,255,255,.03); }
.mb97-server-ribbon::before { content: ''; position: absolute; inset: 4px 0; border-top: 1px solid rgba(213,172,88,.08); border-bottom: 1px solid rgba(213,172,88,.08); pointer-events: none; }
.mb97-server-grid { min-height: 108px; display: grid; grid-template-columns: 1.35fr repeat(5, 1fr) 1.3fr; align-items: stretch; }
.mb97-ribbon-title, .mb97-stat { position: relative; min-width: 0; display: grid; align-content: center; justify-items: center; padding: 15px; border-right: 1px solid rgba(213,172,88,.15); text-align: center; }
.mb97-ribbon-title { grid-template-columns: 50px 1fr; gap: 12px; text-align: left; justify-items: start; }
.mb97-ribbon-title > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; color: var(--mb-gold-bright); border: 1px solid rgba(213,172,88,.35); background: radial-gradient(circle, rgba(213,172,88,.13), transparent 70%); }
.mb97-ribbon-title strong { color: var(--mb-gold-bright); font: 700 17px/1.15 var(--mb-serif); text-transform: uppercase; }
.mb97-stat > span { color: var(--mb-gold); margin-bottom: 4px; }
.mb97-stat .mb-icon { width: 25px; height: 25px; }
.mb97-stat small { color: #8f826d; font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.mb97-stat strong { margin-top: 2px; color: #efd397; font: 700 19px/1.15 var(--mb-serif); text-transform: uppercase; }
.mb97-stat em { color: #7d9e7d; font-size: 8px; font-style: normal; text-transform: uppercase; }
.mb97-stat-online strong { color: #76e77b; font-size: 27px; }

/* Ornate panels */
.mb97-home-main, .mb97-internal-main { position: relative; padding: 34px 0 70px; }
.mb97-panel {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(213,172,88,.34);
    background:
        linear-gradient(135deg, rgba(255,255,255,.025), transparent 25%),
        linear-gradient(180deg, rgba(22,20,16,.98), rgba(7,7,7,.98));
    box-shadow: var(--mb-shadow), inset 0 0 0 4px rgba(0,0,0,.55), inset 0 0 0 5px rgba(213,172,88,.08);
}
.mb97-panel::before, .mb97-panel::after { content: ''; position: absolute; width: 36px; height: 36px; z-index: 4; pointer-events: none; border-color: var(--mb-gold-dark); border-style: solid; }
.mb97-panel::before { left: 6px; top: 6px; border-width: 2px 0 0 2px; }
.mb97-panel::after { right: 6px; bottom: 6px; border-width: 0 2px 2px 0; }
.mb97-panel-head { position: relative; z-index: 3; min-height: 48px; display: flex; align-items: center; justify-content: space-between; padding: 0 19px; border-bottom: 1px solid rgba(213,172,88,.28); background: linear-gradient(180deg, rgba(82,22,14,.64), rgba(20,12,9,.88)); }
.mb97-panel-head::after { content: ''; position: absolute; left: 18%; right: 18%; bottom: -1px; height: 1px; background: linear-gradient(90deg, transparent, var(--mb-gold), transparent); }
.mb97-panel-head h2 { margin: 0; color: #e6c886; font: 700 16px/1 var(--mb-serif); letter-spacing: .04em; text-transform: uppercase; }
.mb97-panel-head a { color: #a99369; font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.mb97-dashboard { display: grid; grid-template-columns: 3fr 2.05fr 3.2fr 2.25fr 2.25fr; gap: 12px; align-items: stretch; }
.mb97-dashboard > .mb97-panel { min-height: 470px; }
.mb97-module-skin { position: relative; z-index: 2; padding: 20px; }
.mb97-news-module { height: calc(100% - 48px); overflow: auto; scrollbar-width: thin; scrollbar-color: var(--mb-gold-dark) transparent; }

/* Generic WebEngine module skin */
.mb97-module-skin .panel, .mb97-module-skin .card, .mb97-module-skin .well,
.mb97-module-skin .table, .mb97-module-skin form, .mb97-module-skin .module-container {
    color: #d8cdb6;
}
.mb97-module-skin h1, .mb97-module-skin h2, .mb97-module-skin h3, .mb97-module-skin h4 { color: #e3c785; font-family: var(--mb-serif); }
.mb97-module-skin table { width: 100%; color: #cbbfa7; border-color: rgba(213,172,88,.16); background: rgba(0,0,0,.2); }
.mb97-module-skin table th { color: #d9bb78; background: rgba(77,49,18,.36); border-color: rgba(213,172,88,.2); }
.mb97-module-skin table td { border-color: rgba(213,172,88,.11); }
.mb97-module-skin input, .mb97-module-skin select, .mb97-module-skin textarea,
.mb97-sidebar input, .mb97-sidebar select, .mb97-sidebar textarea {
    color: #e8ddc7 !important;
    border: 1px solid rgba(213,172,88,.28) !important;
    background: #080807 !important;
    border-radius: 0 !important;
    box-shadow: inset 0 0 15px rgba(0,0,0,.55) !important;
}
.mb97-module-skin input:focus, .mb97-module-skin select:focus, .mb97-module-skin textarea:focus { border-color: var(--mb-gold) !important; box-shadow: 0 0 0 2px rgba(213,172,88,.1) !important; }
.mb97-module-skin .btn, .mb97-module-skin button, .mb97-module-skin input[type=submit],
.mb97-sidebar button, .mb97-sidebar .btn-side-primary {
    border: 1px solid #94632a !important;
    border-radius: 0 !important;
    color: #f4dfba !important;
    background: linear-gradient(180deg, #8b1f14, #3c0806) !important;
    box-shadow: inset 0 0 0 2px rgba(255,212,120,.08), 0 6px 16px rgba(0,0,0,.32) !important;
    font-weight: 800 !important;
    text-transform: uppercase;
}
.mb97-module-skin a { color: #d8b466; }
.mb97-news-module .news-post, .mb97-news-module article, .mb97-news-module .panel { border-bottom-color: rgba(213,172,88,.16) !important; }

/* Home ranking */
.mb97-home-ranking { padding: 12px 14px 4px; }
.mb97-home-rank-row { display: grid; grid-template-columns: 28px 38px 1fr auto; align-items: center; gap: 8px; min-height: 68px; border-bottom: 1px solid rgba(213,172,88,.12); }
.mb97-rank-number { color: var(--mb-gold-bright); font: 700 23px/1 var(--mb-serif); text-align: center; }
.mb97-rank-avatar { width: 38px; height: 38px; overflow: hidden; border-radius: 50%; border: 1px solid rgba(213,172,88,.38); background: #111; }
.mb97-rank-img { width: 100%; height: 100%; object-fit: cover; }
.mb97-rank-name { min-width: 0; font-size: 11px; font-weight: 800; color: #e3d7bd; overflow: hidden; }
.mb97-rank-name a { color: inherit; white-space: nowrap; }
.mb97-rank-name small { display: block; margin-top: 3px; color: #817763; font-size: 8px; font-weight: 600; text-transform: uppercase; }
.mb97-home-rank-row > strong { color: #e0b855; font: 700 14px/1 var(--mb-serif); }
.mb97-panel-button { display: block; margin: 12px 15px 16px; padding: 10px; border: 1px solid rgba(213,172,88,.32); background: rgba(83,52,18,.2); color: #d5b674; font: 700 10px/1 var(--mb-serif); text-align: center; text-transform: uppercase; letter-spacing: .09em; }
.mb97-empty { padding: 32px; text-align: center; color: var(--mb-muted); }

/* Siege */
.mb97-siege-panel { min-height: 470px; }
.mb97-siege-art { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; filter: saturate(.75) contrast(1.15); transform: scale(1.05); }
.mb97-siege-panel::before { z-index: 3; }
.mb97-siege-panel::after { z-index: 3; }
.mb97-siege-panel > .mb97-siege-content { position: relative; z-index: 2; min-height: 470px; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding: 42px 25px 28px; text-align: center; background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.42) 40%, rgba(9,4,2,.94) 82%); }
.mb97-siege-content > span { color: #d7b35e; font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.mb97-siege-content h2 { margin: 5px 0; color: #f1d28b; font: 700 38px/1 var(--mb-serif); text-transform: uppercase; text-shadow: 0 4px 15px #000; }
.mb97-siege-content p { margin: 0 0 8px; color: #d3c6ae; font: 13px/1.5 var(--mb-serif); }
.mb97-siege-content > strong { margin-bottom: 17px; color: #efd28c; font: 700 15px/1 var(--mb-serif); text-transform: uppercase; }
.mb97-siege-content .mb97-button { min-width: 180px; height: 42px; font-size: 13px; }

/* Downloads */
.mb97-download-list { padding: 12px; }
.mb97-download-list a { min-height: 78px; display: grid; grid-template-columns: 36px 1fr auto; align-items: center; gap: 10px; padding: 12px 7px; border-bottom: 1px solid rgba(213,172,88,.14); }
.mb97-download-list a > span { width: 34px; height: 34px; display: grid; place-items: center; color: var(--mb-gold); border: 1px solid rgba(213,172,88,.25); transform: rotate(45deg); }
.mb97-download-list a > span .mb-icon { width: 17px; height: 17px; transform: rotate(-45deg); }
.mb97-download-list strong { display: block; color: #dfcfad; font: 700 12px/1.2 var(--mb-serif); text-transform: uppercase; }
.mb97-download-list small { color: #776e5e; font-size: 8px; }
.mb97-download-list b { padding: 7px 8px; color: #dcbf80; border: 1px solid rgba(180,71,40,.55); background: rgba(96,18,10,.32); font-size: 8px; text-transform: uppercase; }
.mb97-download-list a:hover { background: rgba(213,172,88,.035); transform: translateX(3px); }

/* Community */
.mb97-community-panel { padding-bottom: 14px; }
.mb97-discord-block { margin: 15px; padding: 20px 13px; text-align: center; border: 1px solid rgba(104,116,255,.32); background: radial-gradient(circle at 50% 10%, rgba(95,108,255,.25), transparent 55%), linear-gradient(180deg, #171a3a, #0a0b17); }
.mb97-discord-block > .mb-icon { width: 48px; height: 48px; color: #8d97ff; filter: drop-shadow(0 0 16px rgba(105,120,255,.6)); }
.mb97-discord-block span { display: block; margin-top: 6px; color: #c9c9e6; font: 700 11px/1 var(--mb-serif); text-transform: uppercase; }
.mb97-discord-block strong { display: block; margin: 3px 0; color: #98a4ff; font: 700 31px/1 var(--mb-serif); text-transform: uppercase; }
.mb97-discord-block p { color: #8b8da9; font-size: 9px; line-height: 1.5; }
.mb97-discord-block a { display: block; padding: 10px; color: #fff; border: 1px solid rgba(138,150,255,.45); background: linear-gradient(180deg, #394da0, #1d2862); font-size: 9px; font-weight: 900; text-transform: uppercase; }
.mb97-guild-list { margin: 0 15px; }
.mb97-guild-list h3 { color: #d4b36d; font: 700 13px/1 var(--mb-serif); text-align: center; text-transform: uppercase; }
.mb97-guild-list div { display: grid; grid-template-columns: 23px 1fr auto; padding: 8px 5px; border-top: 1px solid rgba(213,172,88,.12); }
.mb97-guild-list b { color: var(--mb-gold); }
.mb97-guild-list span { color: #d6c7a8; font-size: 10px; font-weight: 800; }
.mb97-guild-list strong { color: #a69165; font-size: 10px; }

/* Events */
.mb97-events-section { margin-top: 20px; padding: 26px; border: 1px solid rgba(213,172,88,.25); background: linear-gradient(180deg, rgba(25,20,14,.78), rgba(8,8,8,.95)); box-shadow: var(--mb-shadow); }
.mb97-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.mb97-section-heading span { color: #9f8050; font-size: 9px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.mb97-section-heading h2 { margin: 4px 0 0; color: #ead19a; font: 700 30px/1 var(--mb-serif); text-transform: uppercase; }
.mb97-section-heading > a { color: #c2a56d; font-size: 9px; font-weight: 900; text-transform: uppercase; }
.mb97-event-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.mb97-event-card { min-height: 118px; display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 10px; padding: 15px; border: 1px solid rgba(213,172,88,.18); background: linear-gradient(135deg, rgba(91,45,19,.14), rgba(0,0,0,.34)); }
.mb97-event-card > span { width: 40px; height: 40px; display: grid; place-items: center; color: var(--mb-gold); border-radius: 50%; border: 1px solid rgba(213,172,88,.25); }
.mb97-event-card h3 { margin: 0; color: #dfc78e; font: 700 13px/1.15 var(--mb-serif); text-transform: uppercase; }
.mb97-event-card p { margin: 5px 0; color: #8e8370; font-size: 9px; line-height: 1.35; }
.mb97-event-card strong { color: #c18b49; font-size: 8px; text-transform: uppercase; }
.mb97-event-card:hover { border-color: rgba(213,172,88,.5); transform: translateY(-4px); background: linear-gradient(135deg, rgba(128,61,23,.25), rgba(0,0,0,.42)); }

/* CTA */
.mb97-war-cta { position: relative; min-height: 210px; margin-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 38px 60px; overflow: hidden; border: 1px solid rgba(213,172,88,.35); background: linear-gradient(90deg, rgba(87,15,8,.8), rgba(12,10,8,.92) 47%, rgba(14,48,91,.78)), url('../img/profiles/guild.jpg') center/cover; box-shadow: var(--mb-shadow); }
.mb97-war-cta::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.55)); }
.mb97-war-cta > * { position: relative; z-index: 2; }
.mb97-war-cta span { color: var(--mb-gold); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .16em; }
.mb97-war-cta h2 { margin: 5px 0; color: #f0d69d; font: 700 38px/1 var(--mb-serif); text-transform: uppercase; }
.mb97-war-cta p { max-width: 670px; margin: 0; color: #c6b99e; font: 14px/1.6 var(--mb-serif); }

/* Internal layout + existing sidebar */
.mb97-content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 20px; align-items: start; }
.mb97-content-grid.is-full { grid-template-columns: 1fr; }
.mb97-module-panel { min-height: 480px; }
.mb97-internal-panel-head { min-height: 62px; padding-inline: 28px; }
.mb97-internal-panel-head h2 { font-size: 20px; }
.mb97-sidebar { display: grid; gap: 14px; }
.mb97-sidebar .side-card, .mb97-sidebar .download-promo, .mb97-sidebar .side-community {
    border-radius: 0 !important;
    border: 1px solid rgba(213,172,88,.3) !important;
    background: linear-gradient(180deg, rgba(22,19,14,.98), rgba(7,7,7,.98)) !important;
    box-shadow: 0 18px 45px rgba(0,0,0,.45), inset 0 0 0 4px rgba(0,0,0,.45) !important;
}
.mb97-sidebar .side-card-header { border-radius: 0 !important; border-bottom: 1px solid rgba(213,172,88,.22) !important; background: linear-gradient(180deg, rgba(87,22,13,.64), rgba(20,12,9,.82)) !important; color: #e0c27d !important; font-family: var(--mb-serif); text-transform: uppercase; }
.mb97-sidebar .side-muted, .mb97-sidebar p, .mb97-sidebar small { color: #8e8370 !important; }
.mb97-sidebar .server-info-list div { border-color: rgba(213,172,88,.12) !important; }
.mb97-sidebar .server-info-list strong { color: #dec17f !important; }
.mb97-sidebar .ranking-row { border-color: rgba(213,172,88,.12) !important; }
.mb97-sidebar .ranking-row > strong { color: #d9b35d !important; }
.mb97-sidebar .community-card, .mb97-sidebar .side-community { border-radius: 0 !important; }

/* Footer */
.mb97-footer { position: relative; overflow: hidden; padding-top: 28px; border-top: 1px solid rgba(213,172,88,.28); background: linear-gradient(180deg, #0c0b09, #030303); }
.mb97-footer-glow { position: absolute; left: 50%; top: -180px; width: 700px; height: 300px; transform: translateX(-50%); border-radius: 50%; background: rgba(213,172,88,.08); filter: blur(80px); }
.mb97-footer-features { position: relative; display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); align-items: center; min-height: 125px; border: 1px solid rgba(213,172,88,.18); background: rgba(0,0,0,.18); }
.mb97-footer-intro { padding: 12px 24px; text-align: center; }
.mb97-footer-intro img { width: 210px; max-height: 80px; object-fit: contain; }
.mb97-footer-intro p { margin: -5px 0 0; color: #847967; font: 10px/1.4 var(--mb-serif); text-transform: uppercase; }
.mb97-footer-features > div:not(.mb97-footer-intro) { min-height: 92px; display: grid; grid-template-columns: 40px 1fr; align-content: center; gap: 2px 11px; padding: 15px 20px; border-left: 1px solid rgba(213,172,88,.12); }
.mb97-footer-features > div > span { grid-row: 1 / 3; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; color: var(--mb-gold); border: 1px solid rgba(213,172,88,.28); }
.mb97-footer-features strong { color: #d9c08d; font: 700 12px/1 var(--mb-serif); text-transform: uppercase; }
.mb97-footer-features small { color: #706757; font-size: 8px; text-transform: uppercase; }
.mb97-footer-bottom { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #665f53; font-size: 9px; }
.mb97-footer-bottom p { margin: 0; }
.mb97-footer-links { display: flex; gap: 18px; }
.mb97-footer-links a { color: #8d826d; text-transform: uppercase; }

/* Existing reveal animation */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-on-load { animation: mb97Reveal .85s ease both; }
.reveal-on-load:nth-child(2) { animation-delay: .15s; }
@keyframes mb97Reveal { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* Responsive */
@media (max-width: 1320px) {
    .layout-container { width: min(1180px, calc(100% - 34px)); }
    .mb97-nav-wrap { grid-template-columns: 205px 1fr auto; gap: 12px; }
    .mb97-brand img { width: 205px; }
    .mb97-nav > ul > li > a { padding-inline: 10px; font-size: 11px; }
    .mb97-dashboard { grid-template-columns: repeat(6, 1fr); }
    .mb97-news-panel { grid-column: span 3; }
    .mb97-ranking-panel { grid-column: span 3; }
    .mb97-siege-panel { grid-column: span 3; }
    .mb97-downloads-panel { grid-column: span 3; }
    .mb97-community-panel { grid-column: 2 / span 4; min-height: 420px !important; }
    .mb97-event-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
    .mb97-header { height: 72px; }
    .mb97-nav-wrap { height: 72px; grid-template-columns: 190px 1fr auto; }
    .mb97-brand { height: 90px; }
    .mb97-brand img { width: 180px; }
    .nav-toggle { display: grid; place-content: center; gap: 5px; width: 42px; height: 42px; justify-self: end; border: 1px solid rgba(213,172,88,.32); background: rgba(30,22,13,.7); }
    .nav-toggle span { width: 22px; height: 2px; background: var(--mb-gold); transition: .25s; }
    .mb97-nav { position: absolute; left: 16px; right: 16px; top: 72px; display: none; padding: 12px; border: 1px solid rgba(213,172,88,.32); background: rgba(6,6,6,.98); box-shadow: 0 22px 50px rgba(0,0,0,.72); }
    .mb97-nav.is-open { display: block; }
    .mb97-nav > ul { display: grid; }
    .mb97-nav > ul > li::after { display: none; }
    .mb97-nav > ul > li > a { padding: 14px; border-bottom: 1px solid rgba(213,172,88,.1); }
    .mb97-account-actions { grid-column: 3; grid-row: 1; }
    .nav-toggle { grid-column: 2; grid-row: 1; }
    .mb97-hero { min-height: 560px; }
    .mb97-hero-content { min-height: 560px; }
    .mb97-hero-logo img { width: 460px; }
    .mb97-server-grid { grid-template-columns: repeat(4, 1fr); }
    .mb97-ribbon-title { grid-column: span 2; }
    .mb97-stat-online { grid-column: span 2; }
    .mb97-stat { border-top: 1px solid rgba(213,172,88,.1); }
    .mb97-content-grid { grid-template-columns: 1fr; }
    .mb97-sidebar { grid-template-columns: repeat(2, 1fr); }
    .mb97-footer-features { grid-template-columns: repeat(2, 1fr); }
    .mb97-footer-intro { grid-column: span 2; border-bottom: 1px solid rgba(213,172,88,.12); }
}
@media (max-width: 760px) {
    .layout-container { width: min(100% - 22px, 680px); }
    .mb97-nav-wrap { grid-template-columns: 155px 1fr auto; }
    .mb97-brand img { width: 155px; }
    .mb97-account-link span { display: none; }
    .mb97-account-link { width: 38px; padding: 0; }
    .mb97-hero { min-height: 710px; }
    .mb97-hero-characters { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr); }
    .mb97-class::before { background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.52)); }
    .mb97-hero-content { min-height: 710px; padding-top: 70px; }
    .mb97-hero-logo { margin-top: 0; }
    .mb97-hero-logo p { margin-top: -12px; padding: 0 18px; font-size: 13px; }
    .mb97-hero-actions, .mb97-internal-actions { flex-direction: column; width: min(330px, 90%); }
    .mb97-button { width: 100%; min-width: 0; height: 52px; font-size: 16px; }
    .mb97-class-labels { display: none; }
    .mb97-server-grid { grid-template-columns: repeat(2, 1fr); }
    .mb97-ribbon-title { grid-column: span 2; }
    .mb97-stat-online { grid-column: span 2; }
    .mb97-dashboard { grid-template-columns: 1fr; }
    .mb97-dashboard > .mb97-panel { grid-column: auto !important; min-height: 0; }
    .mb97-news-module { max-height: none; }
    .mb97-siege-panel, .mb97-siege-panel > .mb97-siege-content { min-height: 440px; }
    .mb97-event-grid { grid-template-columns: 1fr; }
    .mb97-events-section { padding: 18px 13px; }
    .mb97-section-heading { align-items: flex-start; flex-direction: column; }
    .mb97-war-cta { min-height: 330px; align-items: flex-start; justify-content: flex-end; flex-direction: column; padding: 32px 24px; }
    .mb97-war-cta h2 { font-size: 30px; }
    .mb97-sidebar { grid-template-columns: 1fr; }
    .mb97-internal-content h1 { font-size: 36px; }
    .mb97-internal-content p { font-size: 14px; }
    .mb97-footer-features { grid-template-columns: 1fr; }
    .mb97-footer-intro { grid-column: auto; }
    .mb97-footer-features > div:not(.mb97-footer-intro) { border-left: 0; border-top: 1px solid rgba(213,172,88,.12); }
    .mb97-footer-bottom { flex-direction: column; justify-content: center; padding: 18px 0; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
}
.mb97-nav > ul > li.is-active > a { color: #f2d59b; text-shadow: 0 0 14px rgba(220,66,33,.55); }
.mb97-nav > ul > li.is-active > a::before { transform: scaleX(1); }

/* Vídeo oficial + WhatsApp — v97.5 */
.mb97-media-community {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(310px, .75fr);
    gap: 20px;
    margin-top: 20px;
}
.mb97-presentation-card,
.mb97-whatsapp-card {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    border: 1px solid rgba(213,172,88,.36);
    background: linear-gradient(180deg, rgba(21,18,14,.98), rgba(5,5,5,.98));
    box-shadow: var(--mb-shadow), inset 0 0 0 4px rgba(0,0,0,.42);
}
.mb97-presentation-card {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
}
.mb97-presentation-poster {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    background: #050505;
}
.mb97-presentation-poster::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.04), rgba(0,0,0,.12) 58%, rgba(5,5,5,.94));
    pointer-events: none;
}
.mb97-presentation-poster img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    display: block;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.06) brightness(.72);
    transition: transform .7s ease, filter .7s ease;
}
.mb97-presentation-card:hover .mb97-presentation-poster img {
    transform: scale(1.035);
    filter: saturate(1.12) contrast(1.08) brightness(.8);
}
.mb97-presentation-play {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    justify-items: center;
    gap: 12px;
    width: 190px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #f1d59c;
    cursor: pointer;
}
.mb97-presentation-play > span {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(239,204,130,.72);
    background: radial-gradient(circle, rgba(134,27,12,.95), rgba(45,8,5,.92));
    box-shadow: 0 0 0 9px rgba(0,0,0,.3), 0 0 42px rgba(208,52,25,.5), inset 0 0 20px rgba(255,198,93,.16);
    transition: transform .25s ease, box-shadow .25s ease;
}
.mb97-presentation-play .mb-icon { width: 46px; height: 46px; margin-left: 4px; }
.mb97-presentation-play strong { font: 700 13px/1.2 var(--mb-serif); letter-spacing: .12em; text-transform: uppercase; text-shadow: 0 2px 8px #000; }
.mb97-presentation-play:hover > span,
.mb97-presentation-play:focus-visible > span { transform: scale(1.08); box-shadow: 0 0 0 10px rgba(0,0,0,.35), 0 0 58px rgba(233,65,34,.72), inset 0 0 25px rgba(255,198,93,.25); }
.mb97-presentation-play:focus-visible { outline: 1px solid var(--mb-gold); outline-offset: 8px; }
.mb97-presentation-copy {
    position: relative;
    z-index: 2;
    align-self: center;
    padding: 42px 36px 42px 24px;
}
.mb97-presentation-copy > span,
.mb97-whatsapp-card > span {
    color: #a97b39;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.mb97-presentation-copy h2,
.mb97-whatsapp-card h2 {
    margin: 8px 0 14px;
    color: #edd39b;
    font: 700 29px/1.05 var(--mb-serif);
    text-transform: uppercase;
}
.mb97-presentation-copy p,
.mb97-whatsapp-card p {
    margin: 0 0 24px;
    color: #998e7b;
    font: 13px/1.7 var(--mb-serif);
}
.mb97-inline-action,
.mb97-whatsapp-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 11px 20px;
    border: 1px solid rgba(213,172,88,.5);
    color: #f0d69d;
    font: 700 11px/1 var(--mb-serif);
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}
.mb97-inline-action {
    background: linear-gradient(180deg, #8e2012, #4d0b06);
    cursor: pointer;
}
.mb97-inline-action .mb-icon,
.mb97-whatsapp-action .mb-icon { width: 20px; height: 20px; }
.mb97-inline-action:hover,
.mb97-inline-action:focus-visible,
.mb97-whatsapp-action:hover,
.mb97-whatsapp-action:focus-visible { transform: translateY(-2px); filter: brightness(1.12); box-shadow: 0 10px 25px rgba(0,0,0,.35); outline: none; }
.mb97-whatsapp-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 42px 34px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 15%, rgba(34,197,94,.18), transparent 35%),
        linear-gradient(160deg, rgba(12,67,37,.88), rgba(7,14,10,.98) 64%);
}
.mb97-whatsapp-card::before,
.mb97-whatsapp-card::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(77,221,135,.1);
    transform: rotate(45deg);
}
.mb97-whatsapp-card::before { left: -150px; top: -120px; }
.mb97-whatsapp-card::after { right: -150px; bottom: -120px; }
.mb97-whatsapp-card > * { position: relative; z-index: 2; }
.mb97-whatsapp-emblem {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 1px solid rgba(111,241,159,.52);
    background: linear-gradient(145deg, #21ba61, #08763b);
    color: white;
    box-shadow: 0 0 35px rgba(34,197,94,.34), inset 0 0 20px rgba(255,255,255,.08);
}
.mb97-whatsapp-emblem .mb-icon { width: 48px; height: 48px; }
.mb97-whatsapp-action {
    width: 100%;
    max-width: 300px;
    border-color: rgba(132,247,174,.5);
    background: linear-gradient(180deg, #24bd63, #08713a);
    color: #fff;
}
.mb97-whatsapp-card small { margin-top: 14px; color: rgba(207,235,217,.55); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }

.mb97-whatsapp-float {
    position: fixed;
    z-index: 1500;
    right: 22px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 52px;
    padding: 10px 18px 10px 13px;
    border: 1px solid rgba(145,255,185,.52);
    border-radius: 30px;
    background: linear-gradient(145deg, #24c467, #08713b);
    color: #fff;
    box-shadow: 0 16px 38px rgba(0,0,0,.48), 0 0 28px rgba(34,197,94,.2);
    font: 800 10px/1 var(--mb-sans);
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: transform .2s ease, filter .2s ease;
}
.mb97-whatsapp-float .mb-icon { width: 29px; height: 29px; }
.mb97-whatsapp-float:hover,
.mb97-whatsapp-float:focus-visible { color: #fff; transform: translateY(-3px); filter: brightness(1.08); outline: none; }

html.mb97-modal-open,
body.mb97-modal-open { overflow: hidden !important; }
.mb97-presentation-modal[hidden] { display: none !important; }
.mb97-presentation-modal {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}
.mb97-presentation-modal.is-open { opacity: 1; visibility: visible; }
.mb97-presentation-backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 20%, rgba(133,28,15,.2), transparent 42%), rgba(0,0,0,.93);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}
.mb97-presentation-dialog {
    position: relative;
    z-index: 2;
    width: min(1180px, 96vw);
    max-height: 94vh;
    overflow: hidden;
    border: 1px solid rgba(213,172,88,.48);
    background: #070605;
    box-shadow: 0 35px 110px rgba(0,0,0,.9), 0 0 52px rgba(154,36,19,.25), inset 0 0 0 4px rgba(0,0,0,.5);
    transform: translateY(18px) scale(.985);
    transition: transform .3s ease;
}
.mb97-presentation-modal.is-open .mb97-presentation-dialog { transform: none; }
.mb97-presentation-dialog > header,
.mb97-presentation-dialog > footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(213,172,88,.15);
    background: linear-gradient(90deg, rgba(91,20,11,.72), rgba(10,8,6,.98) 55%);
}
.mb97-presentation-dialog > header span { color: #a97b39; font-size: 8px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.mb97-presentation-dialog > header h2 { margin: 3px 0 0; color: #eed59d; font: 700 22px/1 var(--mb-serif); text-transform: uppercase; }
.mb97-presentation-dialog > header button {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(213,172,88,.35);
    border-radius: 50%;
    background: rgba(0,0,0,.35);
    color: #f3d79b;
    font-size: 29px;
    line-height: 1;
    cursor: pointer;
}
.mb97-presentation-video-wrap { background: #000; }
.mb97-presentation-video-wrap video { display: block; width: 100%; max-height: calc(94vh - 145px); aspect-ratio: 16/9; object-fit: contain; background: #000; }
.mb97-presentation-dialog > footer { border-top: 1px solid rgba(213,172,88,.15); border-bottom: 0; background: linear-gradient(180deg, #100d09, #080706); }
.mb97-presentation-dialog > footer p { margin: 0; color: #7d7465; font-size: 10px; }
.mb97-presentation-dialog > footer button { min-height: 40px; padding: 9px 16px; border: 1px solid rgba(213,172,88,.4); background: linear-gradient(180deg, #7d1b0e, #470906); color: #ead096; font: 700 10px/1 var(--mb-serif); text-transform: uppercase; cursor: pointer; }

@media (max-width: 1024px) {
    .mb97-media-community { grid-template-columns: 1fr; }
    .mb97-whatsapp-card { min-height: 310px; }
}
@media (max-width: 760px) {
    .mb97-presentation-card { grid-template-columns: 1fr; }
    .mb97-presentation-poster,
    .mb97-presentation-poster img { min-height: 250px; }
    .mb97-presentation-poster::after { background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(5,5,5,.95)); }
    .mb97-presentation-copy { padding: 28px 22px 32px; }
    .mb97-presentation-copy h2,
    .mb97-whatsapp-card h2 { font-size: 24px; }
    .mb97-whatsapp-card { padding: 34px 22px; }
    .mb97-whatsapp-float { right: 13px; bottom: 13px; width: 54px; height: 54px; min-height: 54px; padding: 0; justify-content: center; }
    .mb97-whatsapp-float span { display: none; }
    .mb97-presentation-modal { padding: 7px; }
    .mb97-presentation-dialog { width: 100%; max-height: 98vh; }
    .mb97-presentation-dialog > header { padding: 10px 12px; }
    .mb97-presentation-dialog > footer { align-items: stretch; flex-direction: column; padding: 10px 12px; text-align: center; }
    .mb97-presentation-video-wrap video { max-height: calc(98vh - 175px); }
}
