/* MAXW1N Home — lobby platform UI */
:root {
    --mw-bg: #06080f;
    --mw-bg-2: #0a0d14;
    --mw-surface: #10141f;
    --mw-border: rgba(255, 255, 255, 0.07);
    --mw-border-hover: rgba(255, 255, 255, 0.16);
    --mw-text: #eef1f8;
    --mw-muted: #8b96ad;
    --mw-dim: #5c677d;
    --mw-accent: #3d7cff;
    --mw-accent-2: #6b5cff;
    --mw-live: #ff4d6d;
    --mw-green: #2ecc71;
    --mw-radius: 12px;
    --mw-radius-lg: 16px;
    --mw-header-h: 72px;
    --mw-container: 1240px;
    --mw-row-gap: 36px;
    --mw-hero-gap: 48px;
}

/* ===== Shell ===== */
body.mw-home-page {
    background: var(--mw-bg) !important;
    overflow-x: hidden;
}

body.mw-home-page #sidebar,
body.mw-home-page .bottom-text-blc,
body.mw-home-page footer.bg-black:not(.mw-lobby-footer) {
    display: none !important;
}

body.mw-home-page .side-menu--home {
    background: var(--mw-bg-2);
    border-right: 1px solid var(--mw-border);
}

.mw-home {
    padding-top: var(--mw-header-h);
    padding-bottom: 0;
    background: var(--mw-bg);
}

.mw-container {
    max-width: var(--mw-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== First screen (hero + categories) ===== */
.mw-first-screen {
    padding-bottom: 8px;
    border-bottom: 1px solid var(--mw-border);
}

.mw-hero-zone {
    min-height: auto;
    padding: 36px 0 0;
}

.mw-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(400px, 520px);
    gap: var(--mw-hero-gap);
    align-items: center;
}

.mw-hero-copy__eyebrow {
    margin: 0 0 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--mw-dim);
}

.mw-hero-copy__title {
    margin: 0 0 12px;
    font-size: clamp(34px, 4.2vw, 58px);
    font-weight: 700;
    line-height: 1.08;
    color: var(--mw-text);
    max-width: 700px;
}

.mw-hero-copy__sub {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: var(--mw-muted);
    max-width: 560px;
}

.mw-hero-copy__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.mw-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    max-width: 720px;
    margin-top: 22px;
}

.mw-hero-stats__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 68px;
    padding: 10px 12px;
    border-radius: var(--mw-radius);
    background: var(--mw-surface);
    border: 1px solid var(--mw-border);
}

.mw-hero-stats__item strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--mw-text);
    line-height: 1.2;
}

.mw-hero-stats__item span {
    margin-top: 3px;
    font-size: 10px;
    font-weight: 600;
    color: var(--mw-dim);
    line-height: 1.3;
}

/* Dashboard — CSS grid cluster */
.mw-hero-dash {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    width: 100%;
    max-width: 480px;
    min-height: 340px;
    margin-left: auto;
}

.mw-dash-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid var(--mw-border);
    background: var(--mw-surface);
    text-decoration: none;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}

.mw-dash-tile:hover {
    border-color: var(--mw-border-hover);
    transform: translateY(-1px);
}

.mw-dash-tile__shade {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.mw-dash-tile__body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 12px;
}

.mw-dash-tile__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--mw-muted);
}

.mw-dash-tile__tag i {
    font-size: 12px;
    color: var(--mw-accent);
}

.mw-dash-tile__metric {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mw-dash-tile__num {
    font-size: 32px;
    font-weight: 800;
    color: var(--mw-text);
    line-height: 1;
    letter-spacing: -0.02em;
}

.mw-dash-tile__num--sm {
    font-size: 26px;
    margin-top: 8px;
}

.mw-dash-tile__lbl {
    font-size: 11px;
    color: var(--mw-dim);
    line-height: 1.35;
}

.mw-dash-tile__thumbs {
    display: flex;
    gap: 6px;
    margin-top: auto;
}

.mw-dash-tile__thumbs img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.3);
}

.mw-dash-tile__live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--mw-green);
    margin-top: auto;
}

.mw-dash-tile__live i {
    font-size: 7px;
    animation: mwPulse 2s ease infinite;
}

.mw-dash-tile__odds {
    font-size: 15px;
    font-weight: 700;
    color: var(--mw-accent);
    letter-spacing: 0.02em;
    margin-top: 6px;
}

.mw-dash-tile__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 8px 0 4px;
}

.mw-dash-tile__chips span {
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--mw-border);
    font-size: 10px;
    font-weight: 700;
    color: var(--mw-text);
}

/* Slots — tall featured tile with cover bg */
.mw-dash-tile--slots {
    grid-row: 1 / 3;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--mw-surface);
    background-image: var(--dash-img, none);
    background-size: cover;
    background-position: center center;
}

.mw-dash-tile--slots .mw-dash-tile__shade {
    background: linear-gradient(
        180deg,
        rgba(6, 8, 15, 0.15) 0%,
        rgba(6, 8, 15, 0.55) 45%,
        rgba(6, 8, 15, 0.94) 100%
    );
}

.mw-dash-tile--slots .mw-dash-tile__body {
    padding: 20px;
    min-height: 100%;
}

.mw-dash-tile--slots .mw-dash-tile__tag {
    color: rgba(255, 255, 255, 0.75);
}

.mw-dash-tile--slots .mw-dash-tile__num {
    font-size: 36px;
}

.mw-dash-tile--slots .mw-dash-tile__lbl {
    color: rgba(255, 255, 255, 0.55);
}

.mw-dash-tile--live {
    background: linear-gradient(145deg, rgba(255, 77, 109, 0.08), var(--mw-surface));
}

.mw-dash-tile--sport {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 16px;
    padding: 16px 20px;
    background: linear-gradient(145deg, rgba(61, 124, 255, 0.08), var(--mw-surface));
}

.mw-dash-tile--sport .mw-dash-tile__tag { margin-right: auto; }
.mw-dash-tile--sport .mw-dash-tile__odds { margin-top: 0; }
.mw-dash-tile--sport .mw-dash-tile__lbl { margin-left: auto; }

.mw-dash-tile--pay {
    background: linear-gradient(145deg, rgba(107, 92, 255, 0.08), var(--mw-surface));
}

@keyframes mwPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.45; }
}

/* Category nav — tight to hero */
.mw-category-nav {
    margin-top: 28px;
    margin-bottom: 0;
    padding-bottom: 20px;
}

.mw-category-nav__inner {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mw-category-nav .mw-lobby-tabs {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    flex: 1;
    min-width: 0;
    scrollbar-width: none;
}

.mw-category-nav .mw-lobby-tabs::-webkit-scrollbar { display: none; }

.mw-category-nav .mw-lobby-tabs a {
    flex: 0 0 auto;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--mw-muted);
    white-space: nowrap;
}

.mw-category-nav .mw-lobby-tabs a:hover,
.mw-category-nav .mw-lobby-tabs a.is-active {
    color: var(--mw-text);
    background: var(--mw-surface);
}

.mw-category-nav .mw-lobby-search {
    flex: 0 0 220px;
}

/* ===== Buttons ===== */
.mw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
}

.mw-btn--primary { background: var(--mw-accent); color: #fff; }
.mw-btn--primary:hover { background: #4d8aff; color: #fff; }
.mw-btn--ghost { background: transparent; border: 1px solid var(--mw-border); color: var(--mw-text); }
.mw-btn--ghost:hover { border-color: var(--mw-border-hover); color: var(--mw-text); }
.mw-btn--sm { padding: 8px 14px; font-size: 12px; }

/* Legacy aliases removed — hero uses mw-hero-* above */

.mw-lobby-search {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 220px;
    padding: 8px 12px;
    border-radius: 10px;
    background: var(--mw-surface);
    border: 1px solid var(--mw-border);
}

.mw-lobby-search i { color: var(--mw-dim); font-size: 13px; }

.mw-lobby-search input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    color: var(--mw-text);
    font-size: 13px;
}

.mw-lobby-search input::placeholder { color: var(--mw-dim); }

/* ===== Game rows (horizontal lanes) ===== */
.mw-lobby-row {
    padding: var(--mw-row-gap) 0 0;
}

.mw-first-screen + .mw-lobby-row {
    padding-top: 40px;
}

.mw-first-screen + .mw-sports-section {
    padding-top: 36px;
}

.mw-sports-section + .mw-lobby-row {
    padding-top: 36px;
}

/* ===== Sportsbook preview ===== */
.mw-sports-section {
    padding: 36px 0 8px;
}

.mw-sports-section.is-fallback {
    padding-bottom: 4px;
}

.mw-sports-section.is-fallback .mw-sports-board {
    display: none;
}

.mw-sports-section.has-events {
    padding-bottom: 12px;
}

.mw-sports-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.mw-sports-header__title {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 700;
    color: var(--mw-text);
}

.mw-sports-header__sub {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--mw-muted);
    max-width: 560px;
}

.mw-sports-header__cta {
    flex-shrink: 0;
}

.mw-sports-board {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    min-width: 0;
}

.mw-sports-board[hidden] { display: none !important; }

.mw-sports-section.is-loading .mw-sports-board {
    display: grid;
}

.mw-match-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 156px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.045);
    transition: border-color 0.2s, transform 0.2s;
}

.mw-match-card:hover {
    border-color: rgba(61, 124, 255, 0.45);
    transform: translateY(-1px);
}

.mw-match-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
}

.mw-league {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex: 1;
}

.mw-league__icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(61, 124, 255, 0.12);
    color: var(--mw-accent);
    font-size: 11px;
}

.mw-league__name {
    font-size: 11px;
    font-weight: 600;
    color: var(--mw-dim);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mw-match-status {
    flex-shrink: 0;
}

.mw-match-status__time {
    font-size: 11px;
    font-weight: 600;
    color: var(--mw-muted);
    white-space: nowrap;
}

.mw-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.22);
    font-size: 10px;
    font-weight: 700;
    color: #5dd39e;
    letter-spacing: 0.04em;
    line-height: 1;
}

.mw-live-badge i {
    font-size: 6px;
    color: #2ecc71;
    animation: mwPulse 2s ease infinite;
}

.mw-match-score-row {
    min-height: 28px;
}

.mw-score {
    font-size: 22px;
    font-weight: 700;
    color: var(--mw-text);
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.mw-time {
    font-size: 12px;
    font-weight: 600;
    color: var(--mw-muted);
}

.mw-teams {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.mw-team {
    min-width: 0;
}

.mw-team-name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--mw-text);
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mw-vs {
    font-size: 10px;
    font-weight: 600;
    color: var(--mw-dim);
    text-transform: lowercase;
    line-height: 1.2;
    padding: 1px 0;
}

.mw-match-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(61, 124, 255, 0.1);
    color: var(--mw-text);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: background 0.15s, border-color 0.15s;
    cursor: pointer;
}

.mw-match-link:hover {
    background: rgba(61, 124, 255, 0.18);
    border-color: rgba(61, 124, 255, 0.35);
}

.mw-odds-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.mw-odds-row:has(.mw-odd-button:nth-child(2):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mw-odd-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-height: 44px;
    padding: 6px 8px;
    border-radius: 10px;
    border: 1px solid var(--mw-border);
    background: rgba(255, 255, 255, 0.04);
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s, transform 0.15s;
}

.mw-odd-button:hover {
    background: rgba(61, 124, 255, 0.12);
    border-color: rgba(61, 124, 255, 0.35);
    transform: translateY(-1px);
}

.mw-odd-button__lbl {
    font-size: 10px;
    font-weight: 600;
    color: var(--mw-dim);
}

.mw-odd-button__val {
    font-size: 14px;
    font-weight: 700;
    color: var(--mw-text);
    line-height: 1.2;
}

.mw-odd-button {
    cursor: pointer;
}

.mw-match-card--skeleton {
    pointer-events: none;
}

.mw-skeleton-line {
    height: 10px;
    border-radius: 6px;
    background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.12), rgba(255,255,255,0.06));
    background-size: 200% 100%;
    animation: mwShimmer 1.2s ease infinite;
    margin-bottom: 8px;
}

.mw-skeleton-line--sm { width: 35%; }
.mw-skeleton-line--md { width: 55%; }
.mw-skeleton-line--lg { width: 80%; }

.mw-skeleton-odd {
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(255,255,255,0.04), rgba(255,255,255,0.08), rgba(255,255,255,0.04));
    background-size: 200% 100%;
    animation: mwShimmer 1.2s ease infinite;
}

@keyframes mwShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.mw-sports-fallback {
    border-radius: var(--mw-radius-lg);
    border: 1px solid var(--mw-border);
    background: linear-gradient(135deg, rgba(61, 124, 255, 0.08), rgba(107, 92, 255, 0.04));
    backdrop-filter: blur(8px);
    max-height: 220px;
    overflow: hidden;
}

.mw-sports-fallback[hidden] { display: none !important; }

.mw-sports-fallback__inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    min-height: 120px;
    max-height: 220px;
}

.mw-sports-fallback__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(61, 124, 255, 0.14);
    border: 1px solid rgba(61, 124, 255, 0.22);
    color: var(--mw-accent);
    font-size: 22px;
}

.mw-sports-fallback__body {
    flex: 1;
    min-width: 0;
}

.mw-sports-fallback__title {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
    color: var(--mw-text);
    line-height: 1.35;
}

.mw-sports-fallback__text {
    margin: 0 0 10px;
    font-size: 12px;
    line-height: 1.45;
    color: var(--mw-muted);
    max-width: 520px;
}

.mw-sports-fallback__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.mw-sports-fallback__chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid var(--mw-border);
    background: rgba(255, 255, 255, 0.04);
    font-size: 11px;
    font-weight: 600;
    color: var(--mw-muted);
}

.mw-sports-fallback__chip i {
    font-size: 9px;
    color: var(--mw-accent);
}

.mw-sports-fallback__chip:first-child i {
    color: var(--mw-green);
    font-size: 6px;
}

.mw-sports-fallback__cta {
    flex-shrink: 0;
    white-space: nowrap;
}

.mw-sports-cta {
    text-decoration: none;
}

@media (min-width: 1440px) {
    .mw-sports-board {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.mw-dash-tile__lbl--block {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.4;
}

.mw-lobby-row__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.mw-lobby-row__title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--mw-text);
}

.mw-lobby-row__all {
    font-size: 12px;
    font-weight: 600;
    color: var(--mw-muted);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid var(--mw-border);
}

.mw-lobby-row__all:hover { color: var(--mw-text); border-color: var(--mw-border-hover); }

.mw-lobby-row__track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.mw-lobby-row__track::-webkit-scrollbar { display: none; }

.mw-lobby-card {
    flex: 0 0 148px;
    scroll-snap-align: start;
    text-decoration: none;
}

.mw-lobby-card__media {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: var(--mw-radius-lg);
    overflow: hidden;
    background: var(--mw-surface);
    border: 1px solid var(--mw-border);
}

.mw-lobby-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.mw-lobby-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 7px;
    border-radius: 5px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.04em;
    z-index: 2;
}

.mw-lobby-card__badge--hot { background: var(--mw-live); color: #fff; }
.mw-lobby-card__badge--new { background: var(--mw-green); color: #000; }
.mw-lobby-card__badge--live { background: var(--mw-live); color: #fff; }

.mw-lobby-card__foot {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px 10px 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%);
    z-index: 1;
}

.mw-lobby-card__name {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mw-lobby-card__prov {
    display: block;
    font-size: 10px;
    color: rgba(255,255,255,0.65);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mw-lobby-card__hover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 3;
}

.mw-lobby-card:hover .mw-lobby-card__hover { opacity: 1; }
.mw-lobby-card:hover .mw-lobby-card__media img { transform: scale(1.05); }

.mw-lobby-card__play {
    padding: 8px 16px;
    border-radius: 8px;
    background: var(--mw-accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.mw-lobby-card__online {
    font-size: 10px;
    color: var(--mw-green);
    font-weight: 600;
}

/* ===== Originals lane ===== */
.mw-lobby-row__track--originals { gap: 12px; }

.mw-original-tile {
    flex: 0 0 min(320px, 85vw);
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: var(--mw-radius-lg);
    border: 1px solid var(--mw-border);
    background: var(--mw-surface);
    text-decoration: none;
    scroll-snap-align: start;
    transition: border-color 0.2s;
}

.mw-original-tile:hover { border-color: var(--mw-border-hover); }

.mw-original-tile__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: rgba(255,255,255,0.05);
    color: var(--mw-accent);
    flex-shrink: 0;
}

.mw-original-tile__body { min-width: 0; flex: 1; }
.mw-original-tile__body h3 { margin: 0 0 4px; font-size: 15px; font-weight: 700; color: var(--mw-text); }
.mw-original-tile__body p { margin: 0; font-size: 12px; line-height: 1.45; color: var(--mw-muted); }

.mw-original-tile__go {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
    color: var(--mw-accent);
}

/* ===== Promo strip ===== */
.mw-lobby-promo {
    padding: var(--mw-row-gap) 0 0;
    margin-top: 4px;
}

.mw-lobby-promo__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.mw-lobby-promo__head h2 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 700;
    color: var(--mw-text);
}

.mw-lobby-promo__head p {
    margin: 0;
    font-size: 13px;
    color: var(--mw-muted);
}

.mw-lobby-promo__actions { display: flex; flex-wrap: wrap; gap: 8px; flex-shrink: 0; }

.mw-lobby-promo__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.mw-lobby-promo__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border-radius: var(--mw-radius);
    border: 1px solid var(--mw-border);
    background: var(--mw-surface);
    text-decoration: none;
    transition: border-color 0.2s;
}

.mw-lobby-promo__item:hover { border-color: var(--mw-border-hover); }
.mw-lobby-promo__item i { color: var(--mw-accent); font-size: 16px; margin-top: 2px; }
.mw-lobby-promo__item strong { display: block; font-size: 13px; color: var(--mw-text); margin-bottom: 2px; }
.mw-lobby-promo__item span { font-size: 11px; color: var(--mw-muted); line-height: 1.4; }

/* ===== SEO accordion ===== */
.mw-lobby-about {
    padding: var(--mw-row-gap) 0 0;
}

.mw-lobby-about__title {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--mw-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.mw-lobby-about__list {
    border: 1px solid var(--mw-border);
    border-radius: var(--mw-radius);
    overflow: hidden;
    background: var(--mw-surface);
}

.mw-lobby-about__item {
    border-bottom: 1px solid var(--mw-border);
}

.mw-lobby-about__item:last-child { border-bottom: none; }

.mw-lobby-about__item summary {
    padding: 14px 16px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--mw-text);
    list-style: none;
}

.mw-lobby-about__item summary::-webkit-details-marker { display: none; }

.mw-lobby-about__item summary::after {
    content: "+";
    float: right;
    color: var(--mw-dim);
    font-weight: 400;
}

.mw-lobby-about__item[open] summary::after { content: "−"; }

.mw-lobby-about__item p {
    margin: 0;
    padding: 0 16px 14px;
    font-size: 12px;
    line-height: 1.6;
    color: var(--mw-muted);
}

/* ===== Footer ===== */
.mw-lobby-footer {
    margin-top: var(--mw-row-gap);
    margin-bottom: 0;
    padding: 32px 0 16px;
    border-top: 1px solid var(--mw-border);
    background: var(--mw-bg-2);
}

footer.mw-lobby-footer {
    margin-top: var(--mw-row-gap) !important;
    padding-top: 32px !important;
    padding-bottom: 16px !important;
}

.mw-lobby-footer__main {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    margin-bottom: 0;
}

.mw-lobby-footer__logo { height: 32px; width: auto; }

.mw-lobby-footer__brand p {
    margin: 10px 0 0;
    font-size: 12px;
    line-height: 1.55;
    color: var(--mw-muted);
}

.mw-lobby-footer__cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mw-lobby-footer__col h4 {
    margin: 0 0 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--mw-dim);
}

.mw-lobby-footer__col a {
    display: block;
    padding: 3px 0;
    font-size: 12px;
    color: var(--mw-muted);
}

.mw-lobby-footer__col a:hover { color: var(--mw-text); }

.mw-lobby-footer__pay {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.mw-lobby-footer__pay span {
    padding: 5px 8px;
    border-radius: 6px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--mw-border);
    font-size: 10px;
    font-weight: 700;
    color: var(--mw-muted);
}

.mw-lobby-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid var(--mw-border);
    font-size: 11px;
    color: var(--mw-dim);
}

.mw-lobby-footer__18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--mw-dim);
    font-weight: 800;
    font-size: 10px;
}

.mw-lobby-footer__rg { flex: 1; min-width: 200px; }

/* ===== Mobile bottom nav (desktop: hidden in mw-mobile.css) ===== */

/* ===== Responsive ===== */
@media (max-width: 1366px) {
    .mw-hero-grid { gap: 40px; }
    .mw-hero-copy__title { font-size: clamp(34px, 3.8vw, 52px); }
    .mw-hero-dash { max-width: 440px; min-height: 320px; }
}

@media (max-width: 1024px) {
    .mw-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .mw-hero-dash {
        max-width: 100%;
        min-height: 300px;
        margin-left: 0;
    }
    .mw-lobby-promo__grid { grid-template-columns: 1fr; }
    .mw-lobby-footer__main { grid-template-columns: 1fr; }
    .mw-lobby-footer__cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .mw-hero-zone { padding-top: 32px; }
    .mw-hero-copy__title { font-size: clamp(32px, 8vw, 36px); line-height: 1.1; }
    .mw-hero-copy__sub { font-size: 15px; line-height: 1.55; }
    .mw-hero-copy__actions { flex-wrap: wrap; gap: 10px; }
    .mw-hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; max-width: 100%; }
    .mw-hero-dash {
        grid-template-columns: 1fr 1fr;
        min-height: 280px;
    }
    .mw-dash-tile--slots { grid-row: 1 / 3; }
    .mw-dash-tile--sport { grid-column: 1 / -1; flex-direction: column; align-items: flex-start; }
    .mw-dash-tile--sport .mw-dash-tile__lbl { margin-left: 0; }
    .mw-sports-header { flex-direction: column; align-items: stretch; }
    .mw-sports-header__cta { width: 100%; justify-content: center; }
    .mw-sports-board { grid-template-columns: 1fr; }

    .mw-category-nav {
        margin-top: 20px;
        padding-bottom: 12px;
    }

    .mw-category-nav__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 0 15px;
    }

    .mw-category-nav .mw-lobby-tabs {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        margin: 0 -15px;
        padding: 0 15px 8px;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .mw-category-nav .mw-lobby-tabs::-webkit-scrollbar { display: none; }

    .mw-category-nav .mw-lobby-tabs a {
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .mw-category-nav .mw-lobby-search {
        flex: 1 1 auto;
        width: 100%;
        max-width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .mw-sports-fallback__inner {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
        padding: 16px;
        max-height: 260px;
    }

    .mw-sports-fallback__icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .mw-sports-fallback__cta {
        width: 100%;
        justify-content: center;
    }
    .mw-lobby-card { flex-basis: 132px; }
}

@media (max-width: 640px) {
    :root { --mw-row-gap: 22px; }

    .mw-container { padding: 0 16px; }
    .mw-hero-dash { display: none; }
    .mw-first-screen + .mw-lobby-row { padding-top: 32px; }
    .mw-lobby-footer__cols { grid-template-columns: 1fr; }
    .mw-lobby-promo__head { flex-direction: column; }
    .mw-lobby-promo__actions { width: 100%; }
    .mw-lobby-promo__actions .mw-btn { flex: 1; }
}

@media (max-width: 430px) {
    .mw-hero-zone { padding: 34px 15px 28px; }
    .mw-hero-copy__title { font-size: 34px; }
    .mw-hero-copy__sub { font-size: 15px; }
    .mw-hero-stats { gap: 12px; }
}

@media (max-width: 360px) {
    .mw-container { padding: 0 12px; }
    .mw-lobby-card { flex-basis: 124px; }
    .mw-hero-stats { gap: 8px; }
    .mw-hero-stats__item { min-height: 60px; padding: 8px 10px; }
}

@media (prefers-reduced-motion: reduce) {
    .mw-lobby-card__media img,
    .mw-btn { transition: none; }
}
