
:root {
  --mg-bg: #05080d;
  --mg-surface: #0b141d;
  --mg-surface-2: #101d29;
  --mg-line: rgba(255,255,255,.11);
  --mg-text: #f3fff9;
  --mg-muted: #a8bdb5;
  --mg-green: #39ffb5;
  --mg-gold: #ffd45a;
  --mg-blue: #65b8ff;
  --mg-red: #ff7676;
}
body.mg-page {
  background: linear-gradient(180deg, var(--mg-bg), #020408);
}
html { scroll-behavior: smooth; scroll-padding-top: 146px; }
.mg-page * { letter-spacing: 0; }
.mg-page :focus-visible { outline: 3px solid var(--mg-gold); outline-offset: 3px; }
.mg-shell { min-height: 100vh; color: var(--mg-text); }
.mg-notice {
  position: sticky; top: 0; z-index: 160; border-bottom: 1px solid var(--mg-line);
  background: rgba(5, 10, 14, .95); backdrop-filter: blur(14px);
}
.mg-notice .container { display: flex; justify-content: space-between; gap: 14px; align-items: center; padding-top: 8px; padding-bottom: 8px; }
.mg-notice small { color: #d8eee6; font-weight: 700; }
.mg-topbar { position: sticky; top: 35px; z-index: 150; background: rgba(5,9,14,.9); border-bottom: 1px solid var(--mg-line); backdrop-filter: blur(16px); }
.mg-scroll-progress { position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; overflow: hidden; pointer-events: none; }
.mg-scroll-progress span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--mg-green), var(--mg-gold), var(--mg-blue)); transform: scaleX(0); transform-origin: left center; }
.mg-nav { display: flex; justify-content: space-between; gap: 18px; align-items: center; min-height: 74px; }
.mg-logo { display: inline-flex; align-items: center; gap: 12px; font-weight: 950; letter-spacing: .02em; }
.mg-logo img { height: 42px; }
.mg-logo > span { display: none; }
.mg-navlinks { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.mg-navlinks a { padding: 10px 12px; border-radius: 14px; color: #dff4ec; font-weight: 850; font-size: 14px; border: 1px solid transparent; }
.mg-navlinks a:hover, .mg-navlinks a.active { background: rgba(255,255,255,.06); border-color: var(--mg-line); }
.mg-navlinks .mg-nav-cta { background: linear-gradient(135deg, var(--mg-green), var(--mg-gold)); color: #06100c; }
.mg-menu { display: none; width: 44px; height: 44px; place-items: center; background: var(--mg-surface-2); border: 1px solid var(--mg-line); color: var(--mg-text); border-radius: 8px; padding: 0; cursor: pointer; }
.mg-menu-icon, .mg-menu-icon:before, .mg-menu-icon:after { display: block; width: 19px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.mg-menu-icon { position: relative; }
.mg-menu-icon:before, .mg-menu-icon:after { content: ''; position: absolute; left: 0; }
.mg-menu-icon:before { top: -6px; }
.mg-menu-icon:after { top: 6px; }
.mg-menu[aria-expanded="true"] .mg-menu-icon { background: transparent; }
.mg-menu[aria-expanded="true"] .mg-menu-icon:before { transform: translateY(6px) rotate(45deg); }
.mg-menu[aria-expanded="true"] .mg-menu-icon:after { transform: translateY(-6px) rotate(-45deg); }
.mg-hero { padding: 54px 0 32px; }
.mg-hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); gap: 28px; align-items: start; }
.mg-hero-grid > *, .mg-grid-2 > *, .mg-grid-3 > *, .mg-board > * { min-width: 0; }
.mg-kicker { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; background: rgba(57,255,181,.08); border: 1px solid rgba(57,255,181,.24); color: #c7fff0; font-size: 12px; font-weight: 950; text-transform: uppercase; letter-spacing: .08em; }
.mg-page h1 { font-size: 68px; line-height: 1; margin: 18px 0 14px; }
.mg-page h2 { font-size: 40px; line-height: 1.08; margin: 0 0 14px; }
.mg-page h3 { line-height: 1.15; margin: 0 0 10px; }
.mg-lead { font-size: clamp(18px, 2vw, 23px); color: #cfe5dd; max-width: 780px; }
.mg-muted { color: var(--mg-muted); }
.mg-green { color: var(--mg-green); }
.mg-actions, .mg-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin: 22px 0; }
.mg-btn { box-sizing: border-box; display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 46px; padding: 12px 16px; border: 1px solid transparent; border-radius: 14px; font-weight: 950; cursor: pointer; color: var(--mg-text); background: rgba(255,255,255,.05); }
.mg-btn.primary { background: linear-gradient(135deg, var(--mg-green), var(--mg-gold)); color: #06100c; }
.mg-btn.secondary { background: var(--mg-surface-2); border-color: var(--mg-line); }
.mg-btn.ghost { background: transparent; border-color: var(--mg-line); }
.mg-btn.gold { min-height: 60px; padding: 16px 22px; border-radius: 8px; background: var(--mg-gold); border-color: #ffe89b; color: #171102; font-size: 17px; box-shadow: 0 12px 32px rgba(255,212,90,.18); }
.mg-btn.gold:hover { background: #ffe27d; transform: translateY(-1px); }
.mg-btn:disabled, .mg-btn.disabled { opacity: .55; cursor: not-allowed; }
.mg-card { border: 1px solid var(--mg-line); background: linear-gradient(180deg, rgba(16,29,41,.94), rgba(8,15,22,.98)); border-radius: 8px; box-shadow: 0 22px 60px rgba(0,0,0,.28); }
.mg-card-pad { padding: 22px; }
.mg-status-card { overflow: hidden; padding: 22px; border-color: rgba(57,255,181,.24); background: linear-gradient(135deg, rgba(57,255,181,.10), rgba(101,184,255,.06), rgba(10,16,24,.98)); }
.mg-status-card > .mg-leaderboard-media { margin: -22px -22px 18px; border-width: 0 0 1px; border-radius: 8px 8px 0 0; }
.mg-stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px; }
.mg-stat { padding: 16px; border-radius: 8px; background: rgba(255,255,255,.045); border: 1px solid var(--mg-line); }
.mg-stat span { display: block; color: var(--mg-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; font-weight: 900; }
.mg-stat strong { display: block; font-size: 22px; }
.mg-section { padding: 38px 0; }
.mg-section-head { display: flex; justify-content: space-between; align-items: end; gap: 22px; margin-bottom: 20px; }
.mg-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.mg-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.mg-code-card { padding: 20px; display: grid; gap: 14px; }
.mg-partner-head { display: flex; gap: 12px; align-items: center; }
.mg-partner-logo { width: 52px; height: 52px; flex: 0 0 52px; border-radius: 8px; border: 1px solid var(--mg-line); background: #071018; object-fit: cover; }
.mg-partner-logo[src*="stake-logo-white"] { object-fit: contain; padding: 8px; background: #062d3c; border-color: rgba(255,180,0,.34); }
.mg-partner-logo[src*="/assets/howl/"] { object-fit: cover; object-position: left center; padding: 0; background: #17131b; border-color: rgba(255,61,71,.34); }
.mg-partner-logo[src*="goated"] { object-fit: contain; padding: 7px; background: #090b08; border-color: rgba(215,255,0,.30); }
.mg-card-banner { width: 100%; border-radius: 8px; border: 1px solid rgba(255,255,255,.12); background: #071018; aspect-ratio: 728 / 90; object-fit: cover; }
.mg-detail-banner { width: 100%; border-radius: 8px; border: 1px solid rgba(255,255,255,.12); background: #071018; object-fit: cover; margin-top: 14px; }
.mg-leaderboard-media { position: relative; overflow: hidden; min-height: 240px; margin-bottom: 16px; border-radius: 8px; border: 1px solid rgba(57,255,181,.24); background: #071018; }
.mg-leaderboard-media img { display: block; width: 100%; min-height: 240px; aspect-ratio: 300 / 250; object-fit: cover; }
.mg-leaderboard-media:after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(4,8,12,.82)); pointer-events: none; }
.mg-leaderboard-media figcaption { position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 1; display: flex; gap: 8px; flex-wrap: wrap; }
.mg-leaderboard-media figcaption span { padding: 7px 9px; border-radius: 999px; background: rgba(5,8,13,.84); border: 1px solid rgba(255,255,255,.16); color: #fff; font-size: 12px; font-weight: 950; text-transform: uppercase; letter-spacing: .04em; }
.mg-asset-credit { margin-top: 8px; color: var(--mg-muted); font-size: 12px; }
.mg-code-word { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px; border-radius: 8px; background: rgba(255,255,255,.045); border: 1px solid var(--mg-line); }
.mg-code-word strong { font-size: clamp(26px, 4vw, 42px); color: var(--mg-gold); letter-spacing: -.02em; }
.mg-pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.mg-pill { display: inline-flex; align-items: center; padding: 7px 10px; border-radius: 999px; border: 1px solid var(--mg-line); background: rgba(255,255,255,.05); color: #dbeee7; font-size: 12px; font-weight: 850; }
.mg-pill.warn { border-color: rgba(255,212,90,.28); color: #ffe8a0; background: rgba(255,212,90,.07); }
.mg-pill.live { border-color: rgba(57,255,181,.28); color: #c7fff0; background: rgba(57,255,181,.07); }
.mg-steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.mg-step { padding: 18px; }
.mg-step:before { counter-increment: step; content: counter(step); display: grid; place-items: center; width: 38px; height: 38px; border-radius: 999px; background: linear-gradient(135deg, var(--mg-green), var(--mg-gold)); color: #07100d; font-weight: 950; margin-bottom: 14px; }
.mg-table-wrap { overflow-x: auto; border: 1px solid var(--mg-line); border-radius: 8px; background: rgba(255,255,255,.035); }
.mg-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.mg-table th, .mg-table td { padding: 13px 14px; border-bottom: 1px solid var(--mg-line); text-align: left; vertical-align: top; }
.mg-table th { color: var(--mg-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.mg-table tr:last-child td { border-bottom: 0; }
.mg-rank-number { display: inline-flex; min-width: 44px; min-height: 36px; align-items: center; justify-content: center; border-radius: 8px; background: rgba(255,212,90,.10); border: 1px solid rgba(255,212,90,.28); color: var(--mg-gold); font-size: 16px; }
.mg-podium { display: grid; grid-template-columns: 1.1fr .95fr .95fr; gap: 14px; margin-bottom: 18px; align-items: stretch; }
.mg-podium-card { position: relative; overflow: hidden; border-radius: 8px; border: 1px solid rgba(255,255,255,.12); background: linear-gradient(145deg, rgba(57,255,181,.12), rgba(10,18,27,.92)); padding: 18px; min-height: 146px; }
.mg-podium-card:first-child { border-color: rgba(255,212,90,.44); background: linear-gradient(145deg, rgba(255,212,90,.16), rgba(10,18,27,.94)); }
.mg-podium-rank { font-size: 12px; color: var(--mg-muted); text-transform: uppercase; letter-spacing: .08em; }
.mg-podium-name { margin: 10px 0 4px; font-size: 22px; font-weight: 900; color: #fff; }
.mg-podium-value { font-size: 30px; font-weight: 950; color: var(--mg-green); }
.mg-podium-player { display: flex; align-items: center; gap: 12px; margin: 10px 0 4px; }
.mg-podium-player .mg-podium-name { margin: 0; min-width: 0; overflow-wrap: anywhere; }
.mg-prize-section { border-top: 1px solid rgba(255,212,90,.18); border-bottom: 1px solid rgba(255,212,90,.18); background: #0b0e11; }
.mg-prize-band { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center; padding: 28px 0; }
.mg-prize-band .mg-kicker { color: #ffe27d; border-color: rgba(255,212,90,.32); background: rgba(255,212,90,.07); }
.mg-prize-value { display: block; margin: 8px 0 10px; color: var(--mg-gold); font-size: 64px; line-height: 1; font-weight: 950; }
.mg-prize-rule { max-width: 760px; margin: 0; color: #d9e3dd; }
.mg-prize-action { min-width: 280px; text-align: center; }
.mg-prize-action .mg-btn { width: 100%; }
.mg-prize-action small { display: block; max-width: 300px; margin: 9px auto 0; color: var(--mg-muted); }
.mg-prize-section.tracker { border-color: rgba(101,184,255,.20); background: #081018; }
.mg-prize-section.tracker .mg-kicker { color: #c9e7ff; border-color: rgba(101,184,255,.30); background: rgba(101,184,255,.08); }
.mg-prize-section.tracker .mg-prize-value { color: #f4fbff; font-size: 48px; }
.mg-goated-vip-section { border-top: 1px solid rgba(215,255,0,.24); border-bottom: 1px solid rgba(215,255,0,.24); background: #0d0f08; }
.mg-goated-vip-band { padding: 30px 0; }
.mg-goated-vip-heading { display: flex; align-items: center; gap: 16px; }
.mg-goated-vip-heading img { width: 72px; height: 72px; flex: 0 0 72px; padding: 9px; border-radius: 8px; border: 1px solid rgba(215,255,0,.34); background: #080a0d; object-fit: contain; }
.mg-goated-vip-heading h2 { margin: 7px 0 0; font-size: 40px; }
.mg-goated-vip-band > p { max-width: 880px; color: #e7e5d9; font-size: 17px; }
.mg-goated-vip-band > small { display: block; color: var(--mg-muted); }
.mg-offer-points { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.mg-offer-points span { padding: 8px 10px; border-radius: 8px; border: 1px solid rgba(215,255,0,.24); background: rgba(215,255,0,.07); color: #f4ffb0; font-size: 12px; font-weight: 850; }
.mg-how-avatar { display: grid; place-items: center; flex: 0 0 52px; width: 52px; height: 52px; border-radius: 50%; border: 2px solid rgba(255,255,255,.22); background: #233446; color: #fff; font-size: 15px; font-weight: 950; box-shadow: 0 8px 20px rgba(0,0,0,.34); }
.mg-how-avatar.theme-0 { background: #21483f; }
.mg-how-avatar.theme-1 { background: #4a3420; }
.mg-how-avatar.theme-2 { background: #293d63; }
.mg-how-avatar.theme-3 { background: #59303b; }
.mg-how-avatar.theme-4 { background: #3f315d; }
.mg-how-avatar.theme-5 { background: #38433a; }
.mg-avatar-stack { display: flex; align-items: center; min-height: 56px; padding-left: 10px; }
.mg-avatar-stack .mg-how-avatar { margin-left: -10px; }
.mg-avatar-stack .mg-how-avatar:first-child { margin-left: 0; }
.mg-player-cell { display: flex; align-items: center; gap: 11px; min-width: 190px; }
.mg-player-cell strong { display: block; overflow-wrap: anywhere; }
.mg-player-cell small { display: block; margin-top: 4px; color: var(--mg-muted); }
.mg-wager-redacted { display: inline-flex; align-items: center; gap: 8px; min-width: 132px; white-space: nowrap; }
.mg-wager-redacted-value { display: inline-block; width: 78px; overflow: hidden; color: #dce7e2; filter: blur(5px); user-select: none; pointer-events: none; }
.mg-wager-redacted-label { color: var(--mg-muted); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.mg-activity { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 900; text-transform: uppercase; }
.mg-activity:before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #707981; }
.mg-activity.active { color: #b9ffe7; }
.mg-activity.active:before { background: var(--mg-green); box-shadow: 0 0 0 4px rgba(57,255,181,.10); }
.mg-how-referral-media { display: grid; align-content: end; min-height: 240px; padding: 24px; background: #171722; }
.mg-how-referral-media .mg-how-referral-hero { position: relative; z-index: 1; }
.mg-how-referral-media h3 { margin: 18px 0 5px; font-size: 28px; }
.mg-how-referral-media p { margin: 0; color: #c6c7d2; }
.mg-howl-media { height: 240px; min-height: 240px; border-color: rgba(255,61,71,.42); background: #17131b; }
.mg-leaderboard-media.mg-howl-media > img { height: 240px; min-height: 240px; aspect-ratio: auto; object-fit: cover; object-position: center 24%; }
.mg-goated-media { border-color: rgba(215,255,0,.38); background: #090b08; }
.mg-goated-hero-art { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 22px; min-height: 240px; padding: 30px 30px 64px; background: linear-gradient(145deg, #11140c, #050605); }
.mg-leaderboard-media.mg-goated-media img { min-height: 0; aspect-ratio: auto; object-fit: contain; }
.mg-goated-wordmark { width: min(100%, 320px) !important; height: auto; }
.mg-goated-chip { width: 116px !important; height: 116px; filter: drop-shadow(0 14px 24px rgba(215,255,0,.18)); }
.mg-goated-pool-tag { grid-column: 1 / -1; margin: 0; color: #f4ffb0; font-size: 18px; font-weight: 900; }
.mg-overall-media { border-color: rgba(255,212,90,.42); background: #090d12; }
.mg-overall-hero-art { position: relative; z-index: 1; display: grid; align-content: center; min-height: 240px; padding: 28px 28px 68px; background: #090d12; }
.mg-overall-hero-art > img { width: min(100%, 260px) !important; min-height: 0 !important; aspect-ratio: auto !important; object-fit: contain; }
.mg-overall-brand-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 18px; }
.mg-overall-brand-row span { display: grid; min-height: 62px; place-items: center; padding: 10px; border: 1px solid var(--mg-line); border-radius: 8px; background: rgba(255,255,255,.04); }
.mg-overall-brand-row img { width: 100%; height: 36px; min-height: 0; aspect-ratio: auto; object-fit: contain; }
.mg-board-visual.overall { grid-template-columns: 82px minmax(0, 1fr) auto; border-color: rgba(255,212,90,.30); background: #101116; }
.mg-board-visual.overall > img { width: 72px; height: 72px; aspect-ratio: 1; object-fit: contain; padding: 8px; }
.mg-board-visual.overall .mg-site-marks { display: flex; gap: 8px; }
.mg-board-visual.overall .mg-site-marks img { width: 52px; height: 38px; aspect-ratio: auto; object-fit: contain; padding: 6px; }
.mg-board-visual.howl { grid-template-columns: minmax(220px, .9fr) minmax(0, 1.1fr); background: rgba(255,61,71,.06); border-color: rgba(255,61,71,.28); }
.mg-board-visual.howl img { aspect-ratio: 1256 / 282; object-fit: cover; }
.mg-board-visual.goated { grid-template-columns: minmax(140px, .7fr) 76px minmax(0, 1.3fr); border-color: rgba(215,255,0,.34); background: #10130b; }
.mg-board-visual.goated img { aspect-ratio: auto; object-fit: contain; border: 0; background: transparent; }
.mg-board-visual.goated .mg-goated-strip-chip { width: 72px; height: 72px; justify-self: center; }
.mg-board-visual.goated strong { color: #f4ffb0; }
.mg-partner-stake .mg-status-card { border-color: rgba(255,180,0,.38); background: linear-gradient(145deg, rgba(0,72,91,.34), rgba(10,16,24,.98)); }
.mg-partner-stake .mg-board-main { border-color: rgba(255,180,0,.22); background: linear-gradient(145deg, rgba(0,53,69,.45), rgba(7,13,20,.98)); }
.mg-partner-stake .mg-kicker, .mg-partner-stake .mg-prize-value { color: #ffd166; }
.mg-partner-howl .mg-status-card { border-color: rgba(255,61,71,.42); background: linear-gradient(145deg, rgba(255,61,71,.12), rgba(25,19,29,.98)); }
.mg-partner-howl .mg-board-main { border-color: rgba(255,61,71,.22); background: linear-gradient(145deg, rgba(61,20,31,.54), rgba(15,15,28,.98)); }
.mg-partner-howl .mg-kicker, .mg-partner-howl .mg-prize-value { color: #ff9ba1; }
.mg-partner-goated .mg-status-card { border-color: rgba(215,255,0,.42); background: linear-gradient(145deg, rgba(215,255,0,.12), rgba(255,255,255,.04), rgba(8,10,7,.98)); }
.mg-partner-goated .mg-board-main { background: linear-gradient(145deg, rgba(25,29,14,.98), rgba(7,9,6,.98)); border-color: rgba(215,255,0,.24); }
.mg-partner-goated .mg-prize-section { border-color: rgba(215,255,0,.26); background: #0e100a; }
.mg-partner-goated .mg-prize-value, .mg-partner-goated .mg-rank-number { color: #D7FF00; }
.mg-partner-goated .mg-rank-number { border-color: rgba(215,255,0,.34); background: rgba(215,255,0,.08); }
.mg-partner-goated .mg-kicker { border-color: rgba(215,255,0,.30); background: rgba(215,255,0,.07); color: #efffa0; }
.mg-partner-overall .mg-status-card { border-color: rgba(255,212,90,.44); background: linear-gradient(145deg, rgba(255,212,90,.11), rgba(101,184,255,.07), rgba(8,12,17,.98)); }
.mg-partner-overall .mg-board-main { border-color: rgba(255,212,90,.30); background: linear-gradient(145deg, rgba(50,40,13,.38), rgba(7,13,20,.98)); }
.mg-partner-overall .mg-rank-number, .mg-partner-overall .mg-prize-value { color: var(--mg-gold); }
.mg-data-notice { border-color: rgba(255,212,90,.28); background: linear-gradient(135deg, rgba(255,212,90,.09), rgba(255,255,255,.025)); }
.mg-board { display: grid; grid-template-columns: 1.05fr .95fr; gap: 18px; align-items: stretch; }
.mg-board-main { padding: 22px; background: linear-gradient(145deg, rgba(16,29,41,.98), rgba(7,13,20,.98)); }
.mg-board-title { display: flex; justify-content: space-between; gap: 16px; align-items: start; margin-bottom: 18px; }
.mg-board-title h2 { margin-bottom: 4px; }
.mg-board-visual { display: grid; grid-template-columns: .7fr 1fr; gap: 12px; align-items: center; margin-bottom: 14px; padding: 12px; border-radius: 8px; border: 1px solid rgba(57,255,181,.20); background: rgba(57,255,181,.055); }
.mg-board-visual img { width: 100%; border-radius: 8px; border: 1px solid rgba(255,255,255,.12); aspect-ratio: 728 / 90; object-fit: cover; background: #071018; }
.mg-board-visual strong { display: block; color: #fff; font-size: 20px; }
.mg-board-visual span { display: block; color: var(--mg-muted); margin-top: 4px; }
.mg-metric-wall { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.mg-metric { position: relative; overflow: hidden; min-height: 118px; padding: 16px; border-radius: 8px; border: 1px solid var(--mg-line); background: rgba(255,255,255,.045); }
.mg-metric:after { display: none; }
.mg-metric span { display: block; color: var(--mg-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; font-weight: 950; }
.mg-metric strong { display: block; margin-top: 8px; font-size: 34px; line-height: 1; color: #fff; }
.mg-metric small { display: block; margin-top: 8px; color: var(--mg-muted); position: relative; z-index: 1; }
.mg-flow { display: grid; gap: 10px; margin-top: 18px; }
.mg-flow-step { display: grid; grid-template-columns: 34px 1fr auto; gap: 12px; align-items: center; padding: 12px; border-radius: 8px; border: 1px solid var(--mg-line); background: rgba(255,255,255,.035); }
.mg-flow-step b { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 999px; background: rgba(255,255,255,.07); border: 1px solid var(--mg-line); color: #fff; }
.mg-flow-step.done b { background: rgba(57,255,181,.16); border-color: rgba(57,255,181,.34); color: var(--mg-green); }
.mg-flow-step.need b { background: rgba(255,212,90,.12); border-color: rgba(255,212,90,.34); color: var(--mg-gold); }
.mg-flow-step span:last-child { color: var(--mg-muted); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.mg-data-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.mg-mini-tile { padding: 14px; border-radius: 8px; border: 1px solid var(--mg-line); background: rgba(255,255,255,.04); }
.mg-mini-tile span { color: var(--mg-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; font-weight: 900; }
.mg-mini-tile strong { display: block; margin-top: 6px; font-size: 24px; color: #fff; }
.mg-need-list { display: grid; gap: 8px; margin: 14px 0 0; padding: 0; list-style: none; }
.mg-need-list li { padding: 10px 12px; border-radius: 8px; background: rgba(255,212,90,.08); border: 1px solid rgba(255,212,90,.20); color: #ffe8a0; }
.mg-preview-table table { min-width: 0; }
.mg-preview-table td, .mg-preview-table th { white-space: nowrap; }
.mg-skeleton-line { display: inline-block; height: 10px; min-width: 92px; border-radius: 999px; background: linear-gradient(90deg, rgba(255,255,255,.10), rgba(57,255,181,.18), rgba(255,255,255,.10)); }
.mg-accordion { display: grid; gap: 12px; }
.mg-accordion details { border: 1px solid var(--mg-line); border-radius: 8px; background: rgba(255,255,255,.035); padding: 16px 18px; }
.mg-accordion summary { cursor: pointer; font-weight: 950; color: #fff; }
.mg-empty { padding: 22px; border: 1px dashed rgba(255,255,255,.18); border-radius: 8px; color: #d9ece5; background: rgba(255,255,255,.035); }
.mg-filterbar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.mg-input, .mg-select, .mg-textarea { box-sizing: border-box; width: 100%; min-height: 44px; border-radius: 8px; border: 1px solid var(--mg-line); background: #08121a; color: var(--mg-text); padding: 10px 12px; }
.mg-textarea { min-height: 96px; resize: vertical; }
.mg-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.mg-admin-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin: 16px 0 22px; }
.mg-admin-tabs button { padding: 10px 12px; border-radius: 999px; border: 1px solid var(--mg-line); background: rgba(255,255,255,.04); color: var(--mg-text); cursor: pointer; font-weight: 850; }
.mg-admin-tabs button.active { background: rgba(57,255,181,.12); border-color: rgba(57,255,181,.28); }
.mg-admin-panel { display: none; }
.mg-admin-panel.active { display: block; }
.mg-dropzone { padding: 24px; border: 1px dashed rgba(57,255,181,.34); border-radius: 8px; background: rgba(57,255,181,.045); }
.mg-ai-box { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--mg-line); }
.mg-ai-box .mg-textarea { margin: 10px 0; min-height: 180px; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 12px; }
.mg-preview-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 18px; align-items: start; }
.mg-error-list { display: grid; gap: 8px; margin: 12px 0; }
.mg-error { padding: 10px 12px; border-radius: 8px; border: 1px solid rgba(255,118,118,.26); background: rgba(255,118,118,.08); color: #ffd6d6; }
.mg-ok { border-color: rgba(57,255,181,.26); background: rgba(57,255,181,.08); color: #cbfff1; }
.mg-footer { padding: 36px 0 80px; border-top: 1px solid var(--mg-line); margin-top: 38px; color: var(--mg-muted); }
.mg-footer-grid { display: grid; grid-template-columns: 1.3fr .9fr .9fr .9fr; gap: 18px; }
.mg-footer a { display: block; color: #dff4ec; margin: 7px 0; }
.mg-video-hero { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; align-items: stretch; }
.mg-video-feature { min-height: 280px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 18px; align-items: center; }
.mg-video-feature img, .mg-video-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 8px; border: 1px solid rgba(255,255,255,.12); background: #071018; }
.mg-video-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.mg-video-card h3 { font-size: 17px; line-height: 1.25; min-height: 2.5em; }
.mg-video-meta { display: flex; flex-wrap: wrap; gap: 8px; color: var(--mg-muted); font-size: 12px; margin: 10px 0 14px; }
.mg-update-card { padding: 0; overflow: hidden; }
.mg-update-media { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-bottom: 1px solid var(--mg-line); background: #071018; }
.mg-update-body { padding: 20px; }
.mg-update-detail-media { display: block; width: 100%; max-height: 560px; object-fit: cover; border-top: 1px solid var(--mg-line); border-bottom: 1px solid var(--mg-line); background: #071018; }
.mg-home-hero { position: relative; min-height: 560px; overflow: hidden; border-bottom: 1px solid var(--mg-line); background: #02070b; }
.mg-home-spotlight, .mg-home-scene { position: absolute; inset: 0; }
.mg-home-scene { overflow: hidden; opacity: 0; transform: scale(1.025); transition: opacity .45s ease, transform .7s ease; pointer-events: none; }
.mg-home-scene.is-active { opacity: 1; transform: scale(1); }
.mg-home-scene-media { position: absolute; top: 0; right: 0; width: 64%; height: 100%; object-fit: cover; transition: transform .35s ease; will-change: transform; }
.mg-home-scene.stake { background: #032c3b; }
.mg-home-scene.stake .mg-home-scene-media { object-position: center; }
.mg-home-scene.howl { background: #21141c; }
.mg-home-scene.howl .mg-home-scene-media { width: 70%; object-position: 52% 36%; }
.mg-home-scene.goated { display: grid; justify-items: end; align-content: center; gap: 28px; padding-right: 7%; background: #10130b; }
.mg-home-scene.goated .mg-home-goated-wordmark { width: min(38vw, 430px); height: auto; }
.mg-home-scene.goated .mg-home-goated-chip { width: 138px; height: 138px; margin-right: 9vw; object-fit: contain; filter: drop-shadow(0 18px 28px rgba(215,255,0,.16)); }
.mg-home-scene-caption { position: absolute; right: 4%; bottom: 34px; z-index: 1; display: flex; align-items: center; gap: 13px; max-width: 320px; padding: 12px 14px; border-left: 3px solid var(--mg-gold); background: rgba(3,8,12,.82); color: #fff; box-shadow: 0 16px 36px rgba(0,0,0,.28); }
.mg-home-scene-caption img { width: 112px; max-height: 44px; object-fit: contain; }
.mg-home-scene-caption strong, .mg-home-scene-caption span { display: block; }
.mg-home-scene-caption span { margin-top: 3px; color: #c8d8d2; font-size: 12px; }
.mg-home-veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,7,11,.99) 0%, rgba(2,7,11,.94) 40%, rgba(2,7,11,.50) 67%, rgba(2,7,11,.20) 100%); }
.mg-home-hero .container { box-sizing: border-box; position: relative; z-index: 1; display: flex; align-items: center; min-height: 560px; padding-top: 28px; padding-bottom: 28px; }
.mg-home-copy { width: min(760px, 66%); }
.mg-home-copy h1 { font-size: 64px; }
.mg-home-copy .mg-lead { max-width: 650px; }
.mg-home-run { width: min(620px, 100%); margin-top: 20px; padding: 13px 0 0; border-top: 1px solid rgba(255,255,255,.18); }
.mg-home-run-head { display: flex; flex-wrap: wrap; align-items: center; gap: 9px 14px; color: #f4fff9; }
.mg-live-dot { width: 9px; height: 9px; flex: 0 0 9px; border-radius: 50%; background: var(--mg-green); box-shadow: 0 0 0 5px rgba(57,255,181,.10); }
.mg-home-run-head span:last-child { margin-left: auto; color: #d1e4dc; font-weight: 850; }
.mg-home-run-track { height: 5px; margin: 11px 0 8px; overflow: hidden; border-radius: 4px; background: rgba(255,255,255,.12); }
.mg-home-run-track i { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--mg-green), var(--mg-gold)); transition: width .45s ease; }
.mg-home-run small { color: #b9cec6; }
.mg-partner-ribbon { border-bottom: 1px solid var(--mg-line); background: #080d12; }
.mg-partner-ribbon-inner { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); min-height: 108px; }
.mg-partner-tile { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 48px; border-right: 1px solid var(--mg-line); transition: background .2s ease; }
.mg-partner-tile:last-child { border-right: 0; }
.mg-partner-tile:after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--mg-green); transform: scaleX(0); transform-origin: center; transition: transform .25s ease; }
.mg-partner-tile.howl:after { background: #ff5963; }
.mg-partner-tile.goated:after { background: #d7ff00; }
.mg-partner-tile.is-active { background: rgba(255,255,255,.045); }
.mg-partner-tile.is-active:after { transform: scaleX(1); }
.mg-partner-switch { appearance: none; display: flex; min-width: 0; align-items: center; gap: 14px; padding: 16px 12px 16px 20px; border: 0; background: transparent; color: #fff; text-align: left; cursor: pointer; }
.mg-partner-switch img { display: block; width: 116px; max-width: 45%; height: 48px; object-fit: contain; }
.mg-partner-tile.stake .mg-partner-switch img { padding: 8px 11px; border-radius: 8px; background: #063447; }
.mg-partner-tile.howl .mg-partner-switch img { object-fit: cover; object-position: left center; border-radius: 8px; }
.mg-partner-switch strong, .mg-partner-switch small { display: block; }
.mg-partner-switch strong { font-size: 15px; }
.mg-partner-switch small { margin-top: 3px; color: var(--mg-muted); }
.mg-partner-open { display: grid; place-items: center; border-left: 1px solid var(--mg-line); color: #fff; font-size: 24px; }
.mg-partner-open:hover { background: rgba(255,255,255,.06); color: var(--mg-gold); }
.mg-card-banner { display: block; width: 100%; height: auto; }
.mg-howl-banner { aspect-ratio: 1256 / 282; object-position: center; }
.mg-howl-detail { width: 100%; aspect-ratio: 1000 / 850; object-fit: cover; object-position: center; }
.mg-goated-card-banner { display: grid; grid-template-columns: minmax(0, 1fr) 64px; align-items: center; gap: 16px; min-height: 118px; padding: 22px; border: 1px solid rgba(215,255,0,.30); border-radius: 8px; background: #10130b; }
.mg-goated-card-banner img:first-child { width: min(100%, 230px); }
.mg-goated-card-banner img:last-child { width: 64px; height: 64px; object-fit: contain; }
.mg-leaderboard-card { padding: 0; overflow: hidden; display: grid; align-content: start; }
.mg-leaderboard-card-media { position: relative; overflow: hidden; height: 176px; border-bottom: 1px solid var(--mg-line); background: #081018; }
.mg-leaderboard-card-media > img { width: 100%; height: 100%; object-fit: cover; }
.mg-leaderboard-card-media.stake > img { object-position: center; }
.mg-leaderboard-card-media.howl > img { object-position: 50% 38%; }
.mg-leaderboard-card-media.goated { display: grid; grid-template-columns: minmax(0, 1fr) 76px; align-items: center; gap: 18px; padding: 28px; background: #11140c; }
.mg-leaderboard-card-media.goated img:first-child { width: min(100%, 270px); }
.mg-leaderboard-card-media.goated img:last-child { width: 76px; height: 76px; object-fit: contain; }
.mg-leaderboard-card-media.overall { display: grid; grid-template-columns: 1.1fr repeat(3, minmax(90px, .55fr)); gap: 1px; padding: 0; background: #090d12; }
.mg-leaderboard-card-media.overall .mg-overall-mark { display: grid; place-items: center; padding: 24px; background: #0e141b; }
.mg-leaderboard-card-media.overall .mg-overall-mark img { width: min(100%, 210px); height: 88px; object-fit: contain; }
.mg-leaderboard-card-media.overall .mg-overall-site { display: grid; place-items: center; padding: 18px; border-left: 1px solid var(--mg-line); }
.mg-leaderboard-card-media.overall .mg-overall-site.stake { background: #063447; }
.mg-leaderboard-card-media.overall .mg-overall-site.howl { background: #26151c; }
.mg-leaderboard-card-media.overall .mg-overall-site.goated { background: #12150d; }
.mg-leaderboard-card-media.overall .mg-overall-site img { width: 100%; height: 58px; object-fit: contain; }
.mg-leaderboard-card-brand { position: absolute; left: 14px; bottom: 14px; display: inline-flex; min-height: 34px; align-items: center; padding: 7px 10px; border: 1px solid rgba(255,255,255,.22); border-radius: 8px; background: rgba(2,7,11,.86); color: #fff; font-size: 12px; font-weight: 900; }
.mg-leaderboard-card-body { display: grid; gap: 16px; padding: 22px; }
.mg-leaderboard-card-body .mg-partner-head h3 { margin-bottom: 4px; }
.mg-leaderboard-card-summary { margin: 0; color: #d5e6df; }
.mg-leaderboard-card .mg-stat-grid { margin-top: 0; }
.mg-leaderboard-privacy { display: flex; flex-wrap: wrap; gap: 8px; color: var(--mg-muted); font-size: 12px; font-weight: 850; }
.mg-leaderboard-privacy span { padding: 7px 9px; border-radius: 8px; border: 1px solid var(--mg-line); background: rgba(255,255,255,.035); }
.mg-card-stake { border-color: rgba(255,180,0,.28); }
.mg-card-howl { border-color: rgba(255,61,71,.28); }
.mg-card-goated { border-color: rgba(215,255,0,.30); }
.mg-card-overall { grid-column: 1 / -1; border-color: rgba(255,212,90,.38); }
.mg-card-overall .mg-leaderboard-card-body { grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); align-items: start; }
.mg-card-overall .mg-leaderboard-card-body > .mg-partner-head,
.mg-card-overall .mg-leaderboard-card-body > .mg-leaderboard-card-summary,
.mg-card-overall .mg-leaderboard-card-body > .mg-leaderboard-privacy { grid-column: 1; }
.mg-card-overall .mg-leaderboard-card-body > .mg-stat-grid { grid-column: 2; grid-row: 1 / span 3; }
.mg-card-overall .mg-leaderboard-card-body > ol,
.mg-card-overall .mg-leaderboard-card-body > .mg-empty,
.mg-card-overall .mg-leaderboard-card-body > .mg-btn { grid-column: 1 / -1; }
.mg-video-page-hero { position: relative; min-height: 430px; overflow: hidden; border-bottom: 1px solid var(--mg-line); background: #06090d; }
.mg-video-page-collage { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.mg-video-page-collage img { display: block; width: 100%; height: 100%; min-width: 0; object-fit: cover; object-position: center; }
.mg-video-page-hero:after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,7,11,.96), rgba(3,7,11,.66) 54%, rgba(3,7,11,.24)); }
.mg-video-page-hero .container { box-sizing: border-box; position: relative; z-index: 1; display: flex; min-height: 430px; align-items: center; }
.mg-video-page-copy { max-width: 670px; padding: 54px 0; }
.mg-video-page-copy h1 { font-size: 68px; }
.mg-video-detail { padding: 42px 0 72px; }
.mg-video-detail-grid { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(280px, .7fr); gap: 28px; align-items: start; }
.mg-video-player { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; border: 1px solid var(--mg-line); border-radius: 8px; background: #000; box-shadow: 0 22px 70px rgba(0,0,0,.35); }
.mg-video-player iframe { display: block; width: 100%; height: 100%; border: 0; }
.mg-video-detail-copy { padding-top: 24px; }
.mg-video-detail-copy h1 { max-width: 920px; font-size: 52px; line-height: 1.03; }
.mg-video-side { position: sticky; top: 102px; }
.mg-video-side img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 6px; }
.mg-video-facts { display: grid; gap: 10px; margin: 18px 0; }
.mg-video-facts div { display: flex; justify-content: space-between; gap: 18px; padding-bottom: 10px; border-bottom: 1px solid var(--mg-line); }
.mg-video-facts span { color: var(--mg-muted); }
.mg-video-toolbar { display: grid; grid-template-columns: minmax(0, 1fr) minmax(220px, 320px); gap: 12px; margin: 22px 0; }
.mg-video-results { color: var(--mg-muted); margin: 0 0 14px; }
.mg-video-feature { overflow: hidden; border-color: rgba(255,212,90,.24); }
.mg-video-feature img { min-height: 250px; }
.mg-video-card { padding: 0; overflow: hidden; display: grid; grid-template-rows: auto 1fr; transition: transform .18s ease, border-color .18s ease; }
.mg-video-card:hover { transform: translateY(-2px); border-color: rgba(57,255,181,.32); }
.mg-video-card > a { position: relative; display: block; overflow: hidden; }
.mg-video-card > a:after, .mg-home-reel-media:after { content: '\25B6'; position: absolute; left: 50%; top: 50%; display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; background: rgba(3,8,12,.78); color: #fff; font-size: 19px; transform: translate(-50%, -50%) scale(.9); opacity: 0; transition: opacity .2s ease, transform .2s ease, background .2s ease; }
.mg-video-card > a:hover:after, .mg-video-card > a:focus-visible:after, .mg-home-reel-media:hover:after, .mg-home-reel-media:focus-visible:after { opacity: 1; transform: translate(-50%, -50%) scale(1); background: rgba(57,255,181,.88); color: #03100b; }
.mg-video-card img { display: block; border: 0; border-bottom: 1px solid var(--mg-line); border-radius: 0; }
.mg-video-card-body { display: flex; min-width: 0; flex-direction: column; padding: 17px; }
.mg-video-card-body h3 { margin-bottom: 0; }
.mg-video-card-body .mg-btn { margin-top: auto; }
.mg-video-more-row { display: flex; justify-content: center; margin-top: 22px; }
.mg-video-empty { grid-column: 1 / -1; }
.mg-reel-section { overflow: hidden; border-top: 1px solid rgba(101,184,255,.14); border-bottom: 1px solid rgba(101,184,255,.14); background: #060b11; }
.mg-reel-controls { display: flex; gap: 8px; }
.mg-icon-btn { display: grid; width: 44px; height: 44px; flex: 0 0 44px; place-items: center; border: 1px solid var(--mg-line); border-radius: 8px; background: var(--mg-surface-2); color: #fff; cursor: pointer; font-size: 21px; }
.mg-icon-btn:hover:not(:disabled) { border-color: rgba(57,255,181,.42); color: var(--mg-green); }
.mg-icon-btn:disabled { opacity: .35; cursor: default; }
.mg-home-video-rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(280px, 31.5%); gap: 16px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; scrollbar-width: none; padding: 2px 1px 16px; }
.mg-home-video-rail::-webkit-scrollbar { display: none; }
.mg-home-reel-card { scroll-snap-align: start; overflow: hidden; border: 1px solid var(--mg-line); border-radius: 8px; background: #0b141d; transition: transform .2s ease, border-color .2s ease; }
.mg-home-reel-card:hover { transform: translateY(-3px); border-color: rgba(101,184,255,.44); }
.mg-home-reel-media { position: relative; display: block; overflow: hidden; }
.mg-home-reel-media img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .45s ease; }
.mg-home-reel-card:hover .mg-home-reel-media img { transform: scale(1.035); }
.mg-home-reel-body { padding: 15px; }
.mg-home-reel-body h3 { min-height: 2.5em; margin: 0; font-size: 16px; line-height: 1.25; }
.mg-reel-track { height: 3px; overflow: hidden; background: rgba(255,255,255,.10); }
.mg-reel-track span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--mg-blue), var(--mg-green)); transition: width .2s ease; }
.mg-jumpbar { position: sticky; top: 109px; z-index: 120; border-top: 1px solid var(--mg-line); border-bottom: 1px solid var(--mg-line); background: rgba(5,9,14,.94); backdrop-filter: blur(14px); }
.mg-jumpbar .container { display: flex; min-height: 54px; align-items: center; gap: 6px; overflow-x: auto; scrollbar-width: none; }
.mg-jumpbar .container::-webkit-scrollbar { display: none; }
.mg-jumpbar strong { margin-right: 10px; white-space: nowrap; font-size: 13px; }
.mg-jumpbar a { padding: 9px 12px; border: 1px solid transparent; border-radius: 8px; color: var(--mg-muted); font-size: 13px; font-weight: 850; white-space: nowrap; }
.mg-jumpbar a:hover, .mg-jumpbar a.active { border-color: var(--mg-line); background: rgba(255,255,255,.055); color: #fff; }
.mg-reveal { opacity: 0; transform: translateY(16px); transition: opacity .48s ease, transform .48s ease; }
.mg-reveal.is-visible { opacity: 1; transform: translateY(0); }
.mg-back-top { position: fixed; right: 18px; bottom: 18px; z-index: 220; display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid rgba(57,255,181,.34); border-radius: 8px; background: rgba(7,16,24,.94); color: #fff; box-shadow: 0 14px 36px rgba(0,0,0,.34); cursor: pointer; font-size: 21px; opacity: 0; transform: translateY(10px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.mg-back-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mg-btn, .mg-navlinks a, .mg-code-card, .mg-leaderboard-card, .mg-update-card { transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease; }
.mg-leaderboard-card-media > img, .mg-card-banner, .mg-update-media { transition: transform .5s ease; }
@media (hover: hover) and (pointer: fine) {
  .mg-btn:hover { transform: translateY(-2px); }
  .mg-code-card:hover, .mg-leaderboard-card:hover, .mg-update-card:hover { transform: translateY(-4px); box-shadow: 0 28px 68px rgba(0,0,0,.34); }
  .mg-leaderboard-card:hover .mg-leaderboard-card-media > img, .mg-code-card:hover .mg-card-banner, .mg-update-card:hover .mg-update-media { transform: scale(1.025); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mg-page *, .mg-page *:before, .mg-page *:after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .mg-video-card:hover, .mg-home-reel-card:hover, .mg-code-card:hover, .mg-leaderboard-card:hover, .mg-update-card:hover { transform: none; }
  .mg-reveal { opacity: 1; transform: none; }
}
.mg-toast { position: fixed; right: 16px; bottom: 16px; z-index: 250; max-width: 360px; padding: 13px 15px; border-radius: 8px; background: #0e1a24; border: 1px solid rgba(57,255,181,.32); box-shadow: 0 18px 50px rgba(0,0,0,.32); display: none; }
.mg-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
@media (max-width: 980px) {
  .mg-hero-grid, .mg-grid-3, .mg-grid-2, .mg-steps, .mg-stat-grid, .mg-preview-grid, .mg-footer-grid, .mg-podium, .mg-video-hero, .mg-video-feature, .mg-video-grid, .mg-board, .mg-board-visual, .mg-metric-wall, .mg-data-grid, .mg-prize-band { grid-template-columns: minmax(0, 1fr); }
  .mg-card-overall .mg-leaderboard-card-body { grid-template-columns: minmax(0, 1fr); }
  .mg-card-overall .mg-leaderboard-card-body > * { grid-column: 1 !important; grid-row: auto !important; }
  .mg-board-visual.overall { grid-template-columns: 72px minmax(0, 1fr); }
  .mg-board-visual.overall .mg-site-marks { grid-column: 1 / -1; }
  .mg-video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mg-board-visual.goated { grid-template-columns: minmax(0, 1fr); }
  .mg-board-visual.goated .mg-goated-strip-logo { width: min(100%, 260px); }
  .mg-board-visual.goated .mg-goated-strip-chip { justify-self: start; }
  .mg-section-head { display: grid; align-items: start; }
  .mg-prize-action { min-width: 0; text-align: left; }
  .mg-prize-action small { margin-left: 0; }
  .mg-home-copy { width: min(760px, 78%); }
  .mg-home-scene-media { width: 72%; opacity: .78; }
  .mg-home-scene.howl .mg-home-scene-media { width: 78%; }
  .mg-partner-ribbon-inner { grid-template-columns: repeat(3, minmax(210px, 1fr)); overflow-x: auto; }
  .mg-home-video-rail { grid-auto-columns: minmax(280px, 48%); }
  .mg-video-toolbar { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 760px) {
  .mg-notice { position: relative; }
  .mg-notice .container { display: grid; }
  .mg-topbar { top: 0; }
  html { scroll-padding-top: 88px; }
  .mg-menu { display: grid; }
  .mg-navlinks { display: none; position: absolute; left: 16px; right: 16px; top: calc(100% + 8px); grid-template-columns: minmax(0, 1fr); justify-content: stretch; align-items: stretch; padding: 12px; border: 1px solid var(--mg-line); border-radius: 8px; background: #071018; box-shadow: 0 22px 60px rgba(0,0,0,.32); }
  .mg-navlinks.open { display: grid; }
  .mg-navlinks a { display: block; width: 100%; text-align: left; }
  .mg-navlinks .mg-nav-cta { text-align: center; }
  .mg-actions .mg-btn, .mg-row .mg-btn { width: 100%; }
  .mg-prize-action .mg-btn { width: 100%; }
  .mg-goated-vip-heading { align-items: flex-start; }
  .mg-goated-vip-heading img { width: 56px; height: 56px; flex-basis: 56px; }
  .mg-goated-vip-heading h2 { font-size: 32px; }
  .mg-goated-hero-art { grid-template-columns: minmax(0, 1fr); padding: 28px 24px 72px; }
  .mg-goated-chip { width: 88px !important; height: 88px; }
  .mg-page h1, .mg-home-copy h1, .mg-video-page-copy h1 { font-size: 44px; }
  .mg-page h2 { font-size: 32px; }
  .mg-prize-value { font-size: 46px; overflow-wrap: anywhere; }
  .mg-home-hero, .mg-home-hero .container { min-height: 600px; }
  .mg-home-hero .container { padding-top: 18px; padding-bottom: 18px; }
  .mg-home-copy { width: 100%; }
  .mg-home-copy h1 { margin-top: 12px; margin-bottom: 10px; }
  .mg-home-copy .mg-actions { margin-top: 14px; margin-bottom: 14px; }
  .mg-home-copy .mg-actions .mg-btn { width: auto; }
  .mg-home-run { margin-top: 14px; }
  .mg-home-run-head span:last-child { width: 100%; margin-left: 23px; }
  .mg-home-scene-media, .mg-home-scene.howl .mg-home-scene-media { width: 100%; opacity: .48; object-position: 58% center; }
  .mg-home-scene.goated { justify-items: center; padding: 0; }
  .mg-home-scene.goated.is-active { opacity: .58; }
  .mg-home-scene.goated .mg-home-goated-wordmark { width: 70vw; }
  .mg-home-scene.goated .mg-home-goated-chip { margin: 0; }
  .mg-home-scene-caption { display: none; }
  .mg-home-veil { background: rgba(2,7,11,.76); }
  .mg-partner-ribbon { position: relative; z-index: 2; margin-top: -36px; }
  .mg-partner-tile { min-width: 244px; }
  .mg-partner-switch { padding-left: 14px; }
  .mg-partner-switch img { width: 96px; }
  .mg-leaderboard-card-media { height: 150px; }
  .mg-leaderboard-card-media.goated { padding: 20px; }
  .mg-leaderboard-card-media.overall { height: 232px; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: 112px 1fr; }
  .mg-leaderboard-card-media.overall .mg-overall-mark { grid-column: 1 / -1; padding: 16px; }
  .mg-leaderboard-card-media.overall .mg-overall-mark img { height: 72px; }
  .mg-leaderboard-card-media.overall .mg-overall-site { padding: 12px; border-left: 0; border-top: 1px solid var(--mg-line); }
  .mg-overall-brand-row { grid-template-columns: minmax(0, 1fr); }
  .mg-video-page-hero, .mg-video-page-hero .container { min-height: 470px; }
  .mg-video-page-collage { grid-template-columns: minmax(0, 1fr); }
  .mg-video-page-collage img:not(:first-child) { display: none; }
  .mg-video-page-collage img:first-child { object-position: 60% center; }
  .mg-video-page-hero:after { background: rgba(3,7,11,.70); }
  .mg-video-detail-grid { grid-template-columns: minmax(0, 1fr); }
  .mg-video-detail-copy h1 { font-size: 38px; }
  .mg-video-side { position: static; }
  .mg-video-grid { grid-template-columns: minmax(0, 1fr); }
  .mg-video-feature img { min-height: 0; }
  .mg-home-video-rail { grid-auto-columns: 84%; }
  .mg-jumpbar { position: relative; top: auto; }
  .mg-jumpbar .container { min-height: 50px; }
  .mg-back-top { right: 12px; bottom: 12px; }
}
