:root {
  --lw-orange: #ff4b0b;
  --lw-orange-bright: #ff7a00;
  --lw-blue: #008df1;
  --lw-blue-bright: #20c9f4;
  --lw-gold: #ffc928;
  --lw-ink: #07111f;
  --lw-panel: #101d2e;
  --lw-panel-soft: #17263a;
  --cms-font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --cms-heading-font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --cms-h1-weight: 600;
  --cms-h2-weight: 600;
  --cms-h3-weight: 600;
}

html { min-height: 100%; background: #07111f; }

* {
  scrollbar-color: #40546d #081525;
  scrollbar-width: thin;
}

*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-track { background: #081525; }
*::-webkit-scrollbar-thumb {
  border: 2px solid #081525;
  border-radius: 999px;
  background: #40546d;
}
*::-webkit-scrollbar-thumb:hover { background: #58708e; }

body.cms-page {
  background:
    radial-gradient(circle at 12% 8%, rgb(255 75 11 / 20%), transparent 28rem),
    radial-gradient(circle at 90% 2%, rgb(0 141 241 / 22%), transparent 32rem),
    linear-gradient(145deg, #07111f 0%, #0c1828 55%, #07111f 100%);
  background-attachment: fixed;
  color: #f4f8ff;
}

body.cms-page::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgb(255 255 255 / 2%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 2%) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 65%);
}

.cms-shell { padding: 20px 0 40px; }
.cms-stack { gap: 16px; }

.cms-admin-authenticated .cms-admin-panel {
  max-width: none !important;
  width: 100%;
  min-height: 100vh;
  margin: 0 !important;
  border: 0;
  border-radius: 0;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.cms-admin-authenticated .cms-admin-panel > aside.cms-card { top: 0; height: 100vh; overflow-y: auto; border-width: 0 1px 0 0; border-radius: 0; padding: 24px 22px; }
.cms-admin-authenticated .cms-admin-panel > main { min-height: 100vh; padding: 28px clamp(20px, 2.5vw, 44px) 48px; }
.cms-admin-authenticated .cms-admin-panel > main { min-width: 0; width: 100%; overflow: visible; }
.cms-player-authenticated .cms-shell { width: 100%; max-width: none; margin: 0; padding: 0 0 90px; }
.cms-player-authenticated .cms-shell > .cms-card:first-child { position: sticky; z-index: 30; top: 0; border-width: 0 0 1px; border-radius: 0; padding: 12px clamp(18px, 3vw, 44px); box-shadow: 0 8px 28px rgb(0 0 0 / 22%); }
.cms-player-authenticated .cms-shell > :not(:first-child) { width: calc(100% - clamp(32px, 5vw, 72px)); margin-inline: auto; }
.cms-player-menu-toggle, .cms-player-nav-backdrop, .cms-nav-backdrop { display: none; }

.cms-card,
.cms-admin-panel,
.cms-player-panel,
.cms-settings-form,
.cms-preview-panel {
  border-color: rgb(255 255 255 / 10%);
  background: rgb(15 29 47 / 96%);
  box-shadow: 0 12px 36px rgb(0 0 0 / 18%);
}

.cms-card { padding: 22px; }
.cms-card-header { margin-bottom: 18px; }

.cms-brand-mark { min-height: 54px; }
.cms-brand-logo { width: auto; max-width: 250px; height: 68px; filter: drop-shadow(0 7px 12px rgb(0 0 0 / 32%)); }
.cms-brand-logo + span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }

h1, .cms-h1, h2, .cms-h2, h3, .cms-h3 { color: #f7f9fc; letter-spacing: -.02em; }
h1, .cms-h1 { font-size: clamp(1.75rem, 3vw, 2.35rem); }
p { line-height: 1.65; }
a { color: var(--lw-blue-bright); }

.cms-button {
  min-height: 46px;
  gap: 9px;
  border-radius: 12px;
  padding-inline: 18px;
  font-weight: 600;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.cms-button:hover { transform: translateY(-2px); filter: brightness(1.08); }
.cms-button-primary { background: linear-gradient(135deg, var(--lw-orange-bright), var(--lw-orange)); box-shadow: 0 10px 24px rgb(255 75 11 / 25%); }
.cms-button-secondary { background: #21334a; border-color: rgb(255 255 255 / 11%); }
.cms-button-gold { background: linear-gradient(135deg, #ffe676, var(--lw-gold)); color: #1d1600; box-shadow: 0 10px 24px rgb(255 201 40 / 20%); }

.cms-input,
.cms-select {
  min-height: 48px;
  border-color: rgb(255 255 255 / 13%);
  border-radius: 12px;
  outline: none;
  background: rgb(3 12 24 / 60%);
  color: #fff;
  padding: 10px 13px;
}
.cms-input:focus, .cms-select:focus { border-color: var(--lw-blue-bright); box-shadow: 0 0 0 3px rgb(32 201 244 / 14%); }
.cms-select option { color: #111; }
.cms-form-row, .cms-table-detail, .cms-page-header p, .cms-section-heading small, .cms-dashboard-widget small { color: #9eacc0; }

.cms-tabs { gap: 6px; margin: 4px 0 0; padding-top: 15px; border-top: 1px solid rgb(255 255 255 / 8%); }
.cms-tabs a { border-color: transparent; border-radius: 11px; color: #bdc9d9; padding: 9px 13px; font-size: .9rem; font-weight: 600; }
.cms-tabs a:hover { background: rgb(255 255 255 / 6%); color: #fff; }
.cms-tabs a[aria-current="page"] { background: linear-gradient(135deg, var(--lw-blue), #006fd0); border-color: transparent; box-shadow: 0 7px 20px rgb(0 141 241 / 24%); }

.cms-status-badge { background: rgb(255 201 40 / 10%); border: 1px solid rgb(255 201 40 / 20%); color: #f7d76e; font-weight: 600; }
.cms-alert { border-color: rgb(32 201 244 / 40%); background: rgb(0 141 241 / 10%); color: #dbefff; }

.cms-dashboard-widget,
.cms-kpi-card,
.cms-game-card,
.cms-empty-state,
.cms-mobile-action-card {
  border-color: rgb(255 255 255 / 9%);
  background: rgb(255 255 255 / 2%);
}
.cms-dashboard-widget-link:hover, .cms-game-card:hover { border-color: rgb(32 201 244 / 55%); box-shadow: 0 12px 28px rgb(0 0 0 / 18%); transform: translateY(-1px); }
.cms-dashboard-widget, .cms-game-card { transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.cms-dashboard-widget-header > i, .cms-section-heading > i, .cms-module-name-icon { color: var(--lw-orange); }
.cms-dashboard-widget h2 { font-size: 1rem; font-weight: 600; letter-spacing: -.01em; }
.cms-dashboard-value { color: #f5f8fc; font-family: inherit; font-size: 1.65rem; font-weight: 600; letter-spacing: -.025em; }

.cms-table th { color: #8fa1b8; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.cms-table th, .cms-table td { border-color: rgb(255 255 255 / 8%); }
.cms-card > .cms-table { display: block; overflow-x: auto; }

.lw-studio-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(360px, .65fr); gap: 20px; align-items: start; }
.lw-studio-controls { display: grid; gap: 16px; min-width: 0; }
.lw-studio-preview { position: sticky; top: 28px; overflow: hidden; border: 1px solid rgb(255 255 255 / 11%); border-radius: 20px; background: #07111f; box-shadow: 0 24px 70px rgb(0 0 0 / 32%); }
.lw-preview-toolbar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-bottom: 1px solid rgb(255 255 255 / 8%); padding: 12px 15px; color: #91a2b8; font-size: .74rem; }
.lw-preview-toolbar span { display: flex; gap: 5px; color: #ff6a33; font-size: .42rem; }
.lw-preview-toolbar strong { color: #dce7f5; font-weight: 600; }
.lw-preview-toolbar em { justify-self: end; font-style: normal; }
.lw-preview-app { min-height: 620px; padding-bottom: 24px; background: linear-gradient(155deg, var(--cms-bg), color-mix(in srgb, var(--cms-bg), #000 12%)); color: var(--cms-text); font-size: calc(.9rem * var(--cms-font-scale)); }
.lw-preview-app > header { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--cms-border); background: var(--cms-surface); padding: 14px 18px; }
.lw-preview-app > header img { width: auto; max-width: 165px; height: 46px; object-fit: contain; }
.lw-preview-app button { border: 0; border-radius: var(--cms-button-radius); background: var(--cms-primary); color: #fff; padding: 11px 16px; font: inherit; }
.lw-preview-app > header button { display: grid; width: 42px; height: 42px; place-items: center; padding: 0; }
.lw-preview-hero { margin: 18px; border-radius: var(--cms-card-radius); background: linear-gradient(135deg, var(--cms-primary), var(--cms-secondary)); color: #fff; padding: 28px; }
.lw-preview-hero small { opacity: .72; letter-spacing: .08em; }
.lw-preview-hero h2 { margin: 8px 0; color: #fff; font-family: var(--cms-heading-font-family); font-size: 1.65rem; font-weight: 600; }
.lw-preview-hero p { margin: 0 0 18px; opacity: .82; }
.lw-preview-hero button { background: var(--cms-accent); }
.lw-preview-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 0 18px 18px; }
.lw-preview-cards article { display: flex; gap: 11px; align-items: center; border: 1px solid var(--cms-border); border-radius: var(--cms-card-radius); background: var(--cms-surface); padding: 15px; }
.lw-preview-cards i { color: var(--cms-primary); }
.lw-preview-cards span, .lw-preview-cards small { display: block; }
.lw-preview-cards small { margin-top: 3px; color: var(--cms-muted); }
.lw-preview-games { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin: 0 18px; }
.lw-preview-games span { aspect-ratio: 4 / 5; border-radius: var(--cms-card-radius); background: linear-gradient(145deg, color-mix(in srgb, var(--cms-primary), #fff 30%), color-mix(in srgb, var(--cms-secondary), #000 10%)); }
.lw-asset-preview { display: flex; gap: 24px; align-items: flex-end; margin-bottom: 18px; }
.lw-asset-preview span { display: grid; gap: 7px; color: #8fa1b8; font-size: .76rem; }
.lw-asset-preview img { width: auto; max-width: 210px; height: 64px; object-fit: contain; object-position: left center; }
.lw-asset-preview span:last-child img { width: 64px; }
.lw-colour-control { display: grid; grid-template-columns: 54px 1fr; gap: 10px; align-items: center; min-height: 48px; border: 1px solid rgb(255 255 255 / 13%); border-radius: 12px; background: rgb(3 12 24 / 60%); padding: 6px; }
.lw-colour-control input { width: 54px; height: 34px; border: 0; background: transparent; cursor: pointer; }
.lw-colour-control code { color: #c8d4e3; }
.lw-inline-editor { position: relative; }
.lw-inline-editor > summary { list-style: none; cursor: pointer; }
.lw-inline-editor > summary::-webkit-details-marker { display: none; }
.lw-inline-editor > form { position: absolute; z-index: 20; right: 0; display: grid; width: min(380px, 82vw); gap: 9px; margin-top: 8px; border: 1px solid rgb(255 255 255 / 12%); border-radius: 14px; background: #132238; padding: 14px; box-shadow: 0 20px 55px rgb(0 0 0 / 45%); }

.cms-nav a { color: #b9c6d6; font-weight: 500; }
.cms-nav a:hover { background: rgb(255 255 255 / 6%); color: #fff; }
.cms-nav a[href*="page=dashboard"] { color: #fff; background: linear-gradient(135deg, rgb(0 141 241 / 22%), rgb(32 201 244 / 8%)); }
.cms-admin-panel > aside.cms-card { position: sticky; top: 18px; border-top: 3px solid var(--lw-orange); }

.cms-page-header, .cms-dashboard-module-group, .cms-settings-section, .cms-asset-grid { border-color: rgb(255 255 255 / 9%); }
.cms-copy-field, .cms-settings-actions { border-color: rgb(255 255 255 / 9%); background: rgb(3 12 24 / 38%); }

.cms-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(240px, .65fr);
  gap: 28px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 22px;
  background: linear-gradient(120deg, rgb(255 75 11 / 95%), rgb(255 122 0 / 88%) 48%, rgb(0 141 241 / 90%));
  padding: clamp(28px, 5vw, 58px);
  box-shadow: 0 24px 70px rgb(0 0 0 / 28%);
}
.cms-hero::after { position: absolute; width: 280px; height: 280px; right: 18%; bottom: -190px; border: 50px solid rgb(255 255 255 / 8%); border-radius: 50%; content: ""; }
.cms-hero-copy, .cms-hero-stat { position: relative; z-index: 1; }
.cms-hero h1 { margin: 10px 0 8px; font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 650; line-height: 1; text-shadow: 0 3px 12px rgb(7 17 31 / 22%); }
.cms-hero p { max-width: 650px; margin: 0 0 22px; font-size: 1.05rem; }
.cms-eyebrow { display: inline-flex; gap: 8px; align-items: center; color: #9eacc0; font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.cms-hero-stat { align-self: center; border: 1px solid rgb(255 255 255 / 22%); border-radius: 18px; background: rgb(7 17 31 / 38%); backdrop-filter: blur(12px); padding: 24px; }
.cms-hero-stat span, .cms-hero-stat small { display: block; color: #dbeeff; }
.cms-hero-stat strong { display: block; margin: 4px 0; color: #fff; font-family: inherit; font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 600; letter-spacing: -.03em; }

.cms-quick-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.cms-quick-card { display: grid; grid-template-columns: 42px 1fr auto; gap: 12px; align-items: center; border: 1px solid rgb(255 255 255 / 9%); border-radius: 16px; background: linear-gradient(145deg, var(--lw-panel-soft), var(--lw-panel)); color: #fff; padding: 17px; text-decoration: none; transition: transform .18s ease, border-color .18s ease; }
.cms-quick-card:hover { transform: translateY(-3px); border-color: var(--lw-orange); }
.cms-quick-card > i:first-child { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 12px; background: rgb(255 75 11 / 15%); color: var(--lw-orange-bright); }
.cms-quick-card span { display: grid; gap: 3px; }
.cms-quick-card small { color: #91a2b8; }
.cms-quick-card > i:last-child { color: #60738d; font-size: .75rem; }

.cms-responsible-banner { display: flex; gap: 16px; align-items: center; border-left: 4px solid var(--lw-gold); }
.cms-responsible-banner > i { color: var(--lw-gold); font-size: 1.8rem; }
.cms-responsible-banner p { margin: 2px 0 0; color: #9eacc0; }
.cms-responsible-banner a { margin-left: auto; white-space: nowrap; font-weight: 750; }

.cms-auth-page .cms-shell { width: min(960px, calc(100% - 28px)); padding-top: clamp(30px, 8vh, 90px); }
.cms-auth-page .cms-shell > .cms-card:first-child { border: 0; background: transparent; box-shadow: none; text-align: center; }
.cms-auth-page .cms-shell > .cms-card:first-child .cms-card-header { justify-content: center; }
.cms-auth-page .cms-brand-logo { max-width: min(480px, 80vw); height: auto; max-height: 150px; }
.cms-auth-page .cms-shell > .cms-card:not(:first-child),
.cms-auth-page .cms-admin-panel > main .cms-card { max-width: 560px; width: 100%; margin-inline: auto; border-top: 3px solid var(--lw-orange); }
.cms-admin-page.cms-auth-page .cms-admin-panel { display: grid; grid-template-columns: 1fr; background: transparent; box-shadow: none; }
.cms-admin-page.cms-auth-page .cms-admin-panel > aside { position: static; max-width: 560px; width: 100%; margin: 0 auto; border: 0; background: transparent; box-shadow: none; }

.cms-login-card { overflow: hidden; }
.cms-login-card h1 { margin: 8px 0; }
.cms-auth-intro { max-width: 460px; margin: 0 0 22px; color: #aebdd0; }
.cms-button-full { width: 100%; margin-top: 8px; }
.cms-auth-switch { margin: 20px 0 0; color: #8fa1b8; text-align: center; }
.cms-auth-switch a { color: var(--lw-gold); font-weight: 600; }
.cms-birthdate-fieldset { min-width: 0; margin: 18px 0 8px; border: 0; padding: 0; }
.cms-birthdate-fieldset legend { margin-bottom: 8px; color: #9eacc0; }
.cms-birthdate-selects { display: grid; grid-template-columns: .65fr 1.35fr .9fr; gap: 10px; }
.cms-birthdate-selects label { display: grid; gap: 6px; min-width: 0; color: #9eacc0; }
.cms-birthdate-selects label span { font-size: .8rem; }
.cms-otp-input { height: 64px; color: var(--lw-gold); font-family: inherit; font-size: 2rem; font-weight: 600; letter-spacing: .38em; text-align: center; }
.cms-link-button { display: block; margin: 18px auto 0; border: 0; background: transparent; color: var(--lw-blue-bright); cursor: pointer; font: inherit; }
.cms-install-button { display: none; margin-left: auto; }
.cms-alerts-button { display: inline-flex; gap: 8px; align-items: center; min-height: 38px; border: 1px solid rgb(255 201 40 / 18%); border-radius: 999px; background: rgb(255 201 40 / 8%); color: #f7d76e; padding: 7px 12px; cursor: pointer; font: inherit; font-size: .78rem; }
.cms-alerts-button[hidden] { display: none; }

.cms-public-home .cms-shell { width: 100%; max-width: none; margin: 0; padding: 0 0 40px; }
.cms-public-home .cms-shell > .cms-card:first-child { position: sticky; z-index: 30; top: 0; border-width: 0 0 1px; border-radius: 0; padding: 10px clamp(20px, 4vw, 72px); background: rgb(7 17 31 / 90%); backdrop-filter: blur(18px); }
.cms-public-home .cms-shell > .cms-card:first-child .cms-card-header { max-width: 1560px; margin: 0 auto; }
.cms-public-home .cms-shell > :not(:first-child) { width: calc(100% - clamp(32px, 8vw, 140px)); max-width: 1560px; margin-inline: auto; }
.cms-public-home .cms-shell > .lw-casino-rail { width: 72px; max-width: none; margin: 0; }
.cms-public-home .cms-shell > .lw-casino-floor { width: 100%; max-width: none; margin-inline: 0; }
.cms-public-home .cms-shell > .lw-casino-mobile-nav { width: auto; max-width: none; margin: 0; }
.lw-public-actions { display: flex; gap: 12px; align-items: center; margin-left: auto; }
.lw-public-actions > a:first-child { color: #d7e1ee; padding: 12px 8px; text-decoration: none; }
.lw-public-hero { position: relative; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr); gap: clamp(28px, 6vw, 90px); align-items: center; min-height: 590px; overflow: hidden; padding: clamp(58px, 9vw, 128px) clamp(8px, 2vw, 28px); }
.lw-public-hero::before { position: absolute; z-index: -1; width: min(52vw, 760px); aspect-ratio: 1; right: -10%; border: 1px solid rgb(32 201 244 / 18%); border-radius: 50%; background: radial-gradient(circle, rgb(0 141 241 / 23%), transparent 66%); box-shadow: 0 0 120px rgb(0 141 241 / 16%); content: ""; }
.lw-public-hero-copy { max-width: 840px; }
.lw-public-hero h1 { max-width: 780px; margin: 14px 0 18px; font-size: clamp(3.2rem, 7.2vw, 7.4rem); font-weight: 600; line-height: .92; letter-spacing: -.065em; }
.lw-public-hero-copy > p { max-width: 680px; margin: 0 0 30px; color: #b2c0d1; font-size: clamp(1.05rem, 1.5vw, 1.28rem); }
.lw-trust-row { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 34px; color: #8fa2b9; font-size: .88rem; }
.lw-trust-row span { display: inline-flex; gap: 8px; align-items: center; }
.lw-trust-row i { color: var(--lw-blue-bright); }
.lw-public-feature { border: 1px solid rgb(255 255 255 / 12%); border-radius: 24px; background: linear-gradient(145deg, rgb(23 38 58 / 88%), rgb(9 22 38 / 94%)); padding: clamp(26px, 4vw, 48px); box-shadow: 0 32px 90px rgb(0 0 0 / 32%); }
.lw-public-feature > span { color: #90a4bc; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.lw-public-feature > strong { display: block; margin-top: 12px; color: var(--lw-gold); font-size: clamp(4rem, 7vw, 6.5rem); font-weight: 500; line-height: .9; letter-spacing: -.06em; }
.lw-public-feature p { margin: 9px 0 34px; color: #c0ccda; }
.lw-public-feature a { display: flex; justify-content: space-between; border-top: 1px solid rgb(255 255 255 / 10%); color: #fff; padding-top: 18px; text-decoration: none; }
.lw-public-highlights { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.lw-public-highlights article { display: grid; grid-template-columns: 52px 1fr; gap: 16px; border: 1px solid rgb(255 255 255 / 9%); border-radius: 18px; background: rgb(15 29 47 / 78%); padding: 24px; }
.lw-public-highlights article > i { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 15px; background: rgb(255 75 11 / 12%); color: var(--lw-orange-bright); font-size: 1.2rem; }
.lw-public-highlights h2 { margin: 1px 0 7px; font-size: 1.05rem; font-weight: 600; }
.lw-public-highlights p { margin: 0; color: #8fa2b9; font-size: .9rem; line-height: 1.55; }
.lw-public-games { padding-block: clamp(64px, 8vw, 108px); }
.lw-public-games > header { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin-bottom: 24px; }
.lw-public-games h2, .lw-public-join h2 { margin: 6px 0 0; font-size: clamp(1.8rem, 3vw, 2.65rem); font-weight: 600; }
.lw-public-games > header > a { color: #c9d6e5; text-decoration: none; }
.lw-public-game-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.lw-public-game-grid > a { min-width: 0; color: #fff; text-decoration: none; }
.lw-public-game-media { position: relative; display: grid; aspect-ratio: 1.25; overflow: hidden; place-items: center; border: 1px solid rgb(255 255 255 / 8%); border-radius: 16px; background: linear-gradient(145deg, #162a44, #0a1728); color: var(--lw-orange); }
.lw-public-game-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.lw-public-game-media em { position: absolute; inset: 0; display: grid; place-items: center; background: rgb(3 12 24 / 48%); opacity: 0; transition: opacity .2s ease; }
.lw-public-game-media em i { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 50%; background: var(--lw-orange); }
.lw-public-game-grid > a:hover .lw-public-game-media em { opacity: 1; }
.lw-public-game-grid > a:hover img { transform: scale(1.04); }
.lw-public-game-grid strong, .lw-public-game-grid small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lw-public-game-grid strong { margin-top: 10px; font-size: .9rem; font-weight: 600; }
.lw-public-game-grid small { margin-top: 3px; color: #7f92a9; font-size: .76rem; }
.lw-public-empty { display: flex; gap: 15px; align-items: center; border: 1px solid rgb(255 255 255 / 9%); border-radius: 18px; background: rgb(15 29 47 / 78%); padding: 30px; }
.lw-public-empty > i { color: var(--lw-orange); font-size: 1.5rem; }
.lw-public-empty span, .lw-public-empty small { display: block; }
.lw-public-empty small { margin-top: 4px; color: #8fa2b9; }
.lw-public-join { display: flex; justify-content: space-between; gap: 28px; align-items: center; border: 1px solid rgb(255 255 255 / 10%); border-radius: 22px; background: linear-gradient(120deg, rgb(0 141 241 / 16%), rgb(255 75 11 / 12%)); padding: clamp(28px, 5vw, 54px); }
.lw-public-join p { margin: 8px 0 0; color: #9dafc3; }
.lw-public-footer { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgb(255 255 255 / 8%); color: #788ba2; padding-block: 26px; font-size: .82rem; }
.lw-public-footer nav { display: flex; flex-wrap: wrap; gap: 18px; }
.lw-public-footer a { color: #9dafc3; text-decoration: none; }

body.cms-public-home { overflow-x: hidden; background: #030912; }
body.cms-public-home::before { content: none; }
.cms-public-home .cms-shell { width: 100%; min-width: 0; overflow-x: clip; padding-left: 72px; }
.cms-public-home .cms-shell > .cms-card:first-child { min-height: 74px; padding-block: 8px; background: rgb(3 10 20 / 94%); }
.cms-public-home .cms-brand-logo { height: 54px; max-width: 210px; }
.cms-brand-mark > span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.lw-casino-rail { position: fixed; z-index: 45; top: 0; bottom: 0; left: 0; display: grid; width: 72px; align-content: start; gap: 6px; border-right: 1px solid rgb(255 255 255 / 7%); background: #050b13; padding: 92px 9px 20px; }
.lw-casino-rail a, .lw-casino-rail button { position: relative; display: grid; width: 54px; height: 52px; place-items: center; border: 0; border-radius: 13px; background: transparent; color: #718298; cursor: pointer; font: inherit; text-decoration: none; }
.lw-casino-rail a:hover, .lw-casino-rail button:hover, .lw-casino-rail .is-active { background: rgb(255 122 0 / 11%); color: var(--lw-orange-bright); }
.lw-casino-rail span { position: absolute; left: 62px; display: none; border: 1px solid rgb(255 255 255 / 10%); border-radius: 8px; background: #111d2d; color: #eaf0f7; padding: 7px 10px; font-size: .75rem; white-space: nowrap; box-shadow: 0 10px 30px rgb(0 0 0 / 35%); }
.lw-casino-rail a:hover span, .lw-casino-rail button:hover span { display: block; }
.lw-casino-floor { width: min(1600px, calc(100% - 36px)); margin: 0 auto; padding: 18px 0 46px; }
.lw-jackpot-strip { display: flex; max-width: 100%; min-height: 48px; gap: 12px 26px; align-items: center; justify-content: center; overflow-x: auto; border: 1px solid rgb(255 201 40 / 13%); border-radius: 14px; background: linear-gradient(90deg, rgb(255 75 11 / 7%), rgb(255 201 40 / 9%), rgb(0 141 241 / 7%)); color: #8294aa; padding: 8px 18px; white-space: nowrap; }
.lw-jackpot-strip span { font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; }
.lw-jackpot-strip i, .lw-jackpot-strip strong { color: var(--lw-gold); }
.lw-jackpot-strip strong { font-size: .92rem; font-weight: 600; }
.lw-casino-banner { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); min-height: 340px; overflow: hidden; margin-top: 16px; border: 1px solid rgb(255 255 255 / 9%); border-radius: 22px; background: radial-gradient(circle at 82% 40%, rgb(0 141 241 / 28%), transparent 35%), linear-gradient(125deg, #2a0d08, #111c2e 55%, #071425); box-shadow: 0 24px 70px rgb(0 0 0 / 28%); }
.lw-casino-banner::after { content: none; }
.lw-casino-banner-copy { z-index: 2; align-self: center; max-width: 700px; padding: clamp(30px, 4vw, 66px); }
.lw-casino-banner-copy > span { color: var(--lw-orange-bright); font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.lw-casino-banner h1 { margin: 9px 0 12px; font-size: clamp(2.3rem, 4.2vw, 4.7rem); font-weight: 550; line-height: .94; letter-spacing: -.055em; }
.lw-casino-banner p { margin: 0 0 22px; color: #a7b7ca; font-size: 1rem; }
.lw-casino-banner-games { position: relative; min-height: 340px; }
.lw-casino-banner-games span { position: absolute; top: calc(38px + var(--card-position) * 18px); right: calc(17% + (2 - var(--card-position)) * 22%); width: clamp(145px, 14vw, 230px); aspect-ratio: .82; overflow: hidden; border: 4px solid rgb(255 255 255 / 9%); border-radius: 18px; background: #16283f; box-shadow: 0 28px 65px rgb(0 0 0 / 48%); transform: rotate(calc((var(--card-position) - 1) * 8deg)); }
.lw-casino-banner-games img { width: 100%; height: 100%; object-fit: cover; }
.lw-casino-controls { scroll-margin-top: 90px; padding-top: 28px; }
.lw-casino-section-head { display: flex; justify-content: space-between; gap: 18px; align-items: end; }
.lw-casino-section-head > div > span { color: #788ca4; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.lw-casino-section-head h2 { margin: 5px 0 0; font-size: 1.5rem; font-weight: 600; }
.lw-casino-section-head small { color: #7f92aa; }
.lw-casino-section-head small b { color: #dce7f5; font-weight: 600; }
.lw-casino-categories { display: grid; grid-template-columns: repeat(5, minmax(118px, 1fr)); gap: 9px; margin-top: 18px; overflow-x: auto; }
.lw-casino-categories button { display: flex; min-height: 48px; gap: 9px; align-items: center; justify-content: center; border: 1px solid rgb(255 255 255 / 8%); border-radius: 12px; background: #0e1928; color: #9eacbe; cursor: pointer; font: inherit; font-size: .84rem; }
.lw-casino-categories button:hover, .lw-casino-categories button.is-active { border-color: rgb(255 122 0 / 42%); background: linear-gradient(135deg, rgb(255 75 11 / 18%), rgb(255 201 40 / 8%)); color: #fff; }
.lw-casino-categories i { color: var(--lw-orange-bright); }
.lw-casino-filterbar { display: grid; grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr); gap: 12px; margin-top: 12px; }
.lw-casino-search { display: grid; grid-template-columns: 22px minmax(0, 1fr) 34px; align-items: center; border: 1px solid rgb(255 255 255 / 9%); border-radius: 12px; background: #0b1523; padding: 0 10px 0 14px; }
.lw-casino-search > i { color: #63778f; }
.lw-casino-search input { min-width: 0; height: 48px; border: 0; outline: 0; background: transparent; color: #fff; font: inherit; }
.lw-casino-search button { width: 32px; height: 32px; border: 0; border-radius: 8px; background: transparent; color: #63778f; cursor: pointer; }
.lw-casino-providers { display: flex; gap: 7px; align-items: center; overflow-x: auto; scrollbar-width: none; }
.lw-casino-providers::-webkit-scrollbar { display: none; }
.lw-casino-providers button { flex: 0 0 auto; min-height: 39px; border: 1px solid rgb(255 255 255 / 8%); border-radius: 999px; background: #0e1928; color: #8fa0b4; padding: 0 14px; cursor: pointer; font: inherit; font-size: .76rem; }
.lw-casino-providers button.is-active { border-color: rgb(32 201 244 / 35%); background: rgb(0 141 241 / 14%); color: #d9f6ff; }
.lw-casino-sections { display: grid; gap: 28px; padding-top: 26px; }
.lw-casino-row[hidden] { display: none; }
.lw-casino-row > header { display: flex; min-height: 38px; justify-content: space-between; gap: 16px; align-items: center; margin-bottom: 11px; }
.lw-casino-row > header > div { display: flex; gap: 9px; align-items: center; min-width: 0; }
.lw-provider-monogram { display: grid; width: 30px; height: 30px; flex: 0 0 30px; place-items: center; border-radius: 9px; background: linear-gradient(135deg, var(--lw-orange), #ff9a19); color: #fff; font-size: .8rem; font-weight: 600; }
.lw-casino-row h2 { overflow: hidden; margin: 0; font-size: 1rem; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.lw-casino-row header small { color: #687b92; font-size: .72rem; }
.lw-casino-row header button { border: 0; background: transparent; color: #9fb0c3; cursor: pointer; font: inherit; font-size: .76rem; }
.lw-casino-grid { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 10px; overflow: hidden; }
.lw-casino-row:not(.is-expanded) .lw-casino-game:nth-child(n+9) { display: none; }
.lw-casino-game { min-width: 0; color: #e9f0f8; text-decoration: none; }
.lw-casino-game[hidden] { display: none !important; }
.lw-casino-game-media { position: relative; display: grid; aspect-ratio: 1.32; overflow: hidden; place-items: center; border: 1px solid rgb(255 255 255 / 7%); border-radius: 12px; background: linear-gradient(145deg, #162a44, #081321); color: var(--lw-orange); }
.lw-casino-game-media > img { width: 100%; height: 100%; min-height: 0; object-fit: contain; }
.lw-casino-play { position: absolute; inset: 0; display: flex; gap: 7px; align-items: center; justify-content: center; background: rgb(1 7 15 / 62%); color: #fff; font-size: .75rem; font-style: normal; opacity: 0; transition: opacity .18s ease; }
.lw-casino-provider { position: absolute; bottom: 5px; left: 6px; max-width: calc(100% - 12px); overflow: hidden; border-radius: 999px; background: rgb(1 7 15 / 72%); color: #d6e0ec; padding: 3px 7px; font-size: .56rem; text-overflow: ellipsis; white-space: nowrap; }
.lw-casino-game:hover .lw-casino-play { opacity: 1; }
.lw-casino-game:hover img { transform: none; }
.lw-casino-game > strong { display: block; overflow: hidden; margin-top: 7px; font-size: .74rem; font-weight: 500; text-overflow: ellipsis; white-space: nowrap; }
.lw-casino-no-results { border: 1px dashed rgb(255 255 255 / 13%); border-radius: 14px; color: #8294aa; padding: 30px; text-align: center; }
.lw-casino-footer { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; border-top: 1px solid rgb(255 255 255 / 7%); color: #61748b; padding-top: 24px; font-size: .76rem; }
.lw-casino-footer nav { display: flex; gap: 18px; }
.lw-casino-footer a { color: #8294aa; text-decoration: none; }
.lw-casino-mobile-nav { display: none; }

@media (display-mode: standalone) {
  .cms-public-home .cms-shell > .cms-card:first-child { min-height: 62px; padding-top: max(7px, env(safe-area-inset-top)); }
  .cms-public-home .cms-brand-logo { height: 44px; }
  .lw-casino-rail, .lw-jackpot-strip { display: none; }
  .cms-public-home .cms-shell { padding-left: 0; }
  .lw-casino-floor { padding-top: 8px; padding-bottom: calc(88px + env(safe-area-inset-bottom)); }
  .lw-casino-banner { min-height: 210px; margin-top: 0; }
  .lw-casino-mobile-nav { padding-bottom: env(safe-area-inset-bottom); }
}
.cms-pwa-standalone.cms-public-home .cms-shell > .cms-card:first-child { min-height: 62px; padding-top: max(7px, env(safe-area-inset-top)); }
.cms-pwa-standalone.cms-public-home .cms-brand-logo { height: 44px; }
.cms-pwa-standalone .lw-casino-rail, .cms-pwa-standalone .lw-jackpot-strip { display: none; }
.cms-pwa-standalone.cms-public-home .cms-shell { padding-left: 0; }
.cms-pwa-standalone .lw-casino-floor { padding-top: 8px; padding-bottom: calc(88px + env(safe-area-inset-bottom)); }
.cms-pwa-standalone .lw-casino-banner { min-height: 210px; margin-top: 0; }
.cms-pwa-standalone .lw-casino-mobile-nav { padding-bottom: env(safe-area-inset-bottom); }

.cms-account-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.cms-account-grid-admin { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cms-account-balance { margin: 8px 0 18px; color: #f7f9fc; font-family: inherit; font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 600; line-height: 1; letter-spacing: -.035em; }
.cms-account-section { margin-top: 22px; border-top: 1px solid rgb(255 255 255 / 9%); padding-top: 22px; }
.cms-profile-form { max-width: 680px; }
.cms-detail-list { display: grid; gap: 0; margin: 14px 0 0; }
.cms-detail-list > div { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgb(255 255 255 / 8%); padding: 11px 0; }
.cms-detail-list dt { color: #8fa1b8; }
.cms-detail-list dd { margin: 0; color: #fff; text-align: right; }
.cms-textarea { min-height: 130px; resize: vertical; }
.cms-account-controls { display: grid; grid-template-columns: minmax(0, 2fr) minmax(240px, 1fr); gap: 24px; }
.cms-account-state-action { align-self: start; border: 1px solid rgb(255 75 11 / 22%); border-radius: 14px; background: rgb(255 75 11 / 6%); padding: 18px; }
.cms-button-danger { background: #a92d2d; color: #fff; }
.cms-activity-list { display: grid; gap: 2px; }
.cms-activity-list article { display: flex; gap: 13px; align-items: center; border-bottom: 1px solid rgb(255 255 255 / 8%); padding: 13px 2px; }
.cms-activity-list article > i { color: var(--lw-blue-bright); }
.cms-activity-list span, .cms-activity-list small { display: block; }
.cms-activity-list small { margin-top: 3px; color: #8fa1b8; }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.lw-admin-pagehead { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; padding: 10px 4px 6px; }
.lw-admin-pagehead h1 { margin: 3px 0 4px; }
.lw-admin-pagehead p { margin: 0; color: #93a4b9; }
.lw-admin-kicker { display: block; color: #7f92aa; font-size: .72rem; font-weight: 600; letter-spacing: .075em; text-transform: uppercase; }
.lw-admin-kicker.is-alert { color: #ffab86; }
.lw-admin-search { display: flex; gap: 9px; width: min(480px, 48%); }
.lw-admin-search label { position: relative; flex: 1; }
.lw-admin-search label > i { position: absolute; top: 50%; left: 14px; color: #71839a; transform: translateY(-50%); }
.lw-admin-search input { width: 100%; min-height: 46px; border: 1px solid rgb(255 255 255 / 11%); border-radius: 12px; background: rgb(4 14 27 / 56%); color: #fff; padding: 10px 14px 10px 40px; font: inherit; }
.lw-admin-search input:focus { border-color: rgb(32 201 244 / 55%); outline: none; box-shadow: 0 0 0 3px rgb(32 201 244 / 9%); }
.lw-command-kpis { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.lw-command-kpi { position: relative; display: grid; grid-template-columns: 38px 1fr; grid-template-rows: auto auto auto; gap: 1px 12px; min-height: 150px; overflow: hidden; border: 1px solid rgb(255 255 255 / 9%); border-radius: 16px; background: linear-gradient(145deg, rgb(22 39 60 / 92%), rgb(13 27 44 / 96%)); color: #eef4fb; padding: 18px; text-decoration: none; box-shadow: 0 12px 30px rgb(0 0 0 / 12%); transition: border-color .18s ease, transform .18s ease; }
.lw-command-kpi:hover { border-color: rgb(32 201 244 / 42%); transform: translateY(-2px); }
.lw-command-kpi-icon { display: grid; grid-row: 1 / 3; width: 38px; height: 38px; place-items: center; border-radius: 11px; background: rgb(255 75 11 / 10%); color: #ff8254; }
.lw-command-kpi .lw-admin-kicker { overflow: hidden; padding-right: 18px; text-overflow: ellipsis; white-space: nowrap; }
.lw-command-kpi-value { align-self: end; margin-top: 8px; font-size: 1.75rem; font-weight: 600; letter-spacing: -.035em; }
.lw-command-kpi small { grid-column: 1 / -1; align-self: end; color: #8fa1b7; line-height: 1.35; }
.lw-command-kpi-arrow { position: absolute; right: 17px; top: 19px; color: #52657d; font-size: .8rem; }
.lw-command-layout { display: grid; grid-template-columns: minmax(0, 1.8fr) minmax(290px, .72fr); gap: 16px; align-items: start; }
.lw-command-main, .lw-command-side { display: grid; gap: 16px; }
.lw-command-panel { margin: 0; padding: 20px; border-radius: 17px; box-shadow: 0 12px 32px rgb(0 0 0 / 14%); }
.lw-panel-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 17px; }
.lw-panel-heading h2 { margin: 3px 0 0; font-size: 1.2rem; }
.lw-panel-heading > a { color: #8edcff; font-size: .82rem; text-decoration: none; }
.lw-count-pill { border: 1px solid rgb(255 255 255 / 10%); border-radius: 999px; background: rgb(255 255 255 / 4%); color: #aebed0; padding: 5px 10px; font-size: .76rem; }
.lw-action-list { display: grid; gap: 7px; }
.lw-action-list > a { display: grid; grid-template-columns: 38px minmax(0, 1fr) auto auto; gap: 13px; align-items: center; border: 1px solid transparent; border-radius: 12px; color: #eef4fb; padding: 11px 12px; text-decoration: none; }
.lw-action-list > a:hover { border-color: rgb(255 255 255 / 8%); background: rgb(255 255 255 / 2%); }
.lw-action-icon { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 10px; background: rgb(0 141 241 / 10%); color: #63c8ff; }
.lw-action-list b { display: block; font-weight: 600; }
.lw-action-list small { display: block; margin-top: 3px; color: #7f92aa; }
.lw-action-count { min-width: 30px; color: #f4f7fb; font-size: 1.15rem; font-weight: 600; text-align: center; }
.lw-action-list em { color: #8092a8; font-size: .78rem; font-style: normal; }
.lw-action-list em i { margin-left: 5px; font-size: .68rem; }
.lw-command-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.lw-feature-stat { display: flex; gap: 14px; align-items: center; min-height: 74px; }
.lw-feature-icon { display: grid; width: 50px; height: 50px; flex: 0 0 50px; place-items: center; border-radius: 14px; background: rgb(0 141 241 / 11%); color: #58c4ff; font-size: 1.1rem; }
.lw-feature-icon.is-gold { background: rgb(255 201 40 / 10%); color: #f1c84e; }
.lw-feature-stat span { display: block; color: #f4f7fb; font-size: 1.15rem; font-weight: 600; }
.lw-feature-stat small { display: block; margin-top: 5px; color: #8193a9; line-height: 1.4; }
.lw-module-summary { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.lw-module-summary a { display: grid; grid-template-columns: 22px minmax(0, 1fr) auto; gap: 9px; align-items: center; border: 1px solid rgb(255 255 255 / 7%); border-radius: 11px; background: rgb(255 255 255 / 2%); color: #cbd5e1; padding: 11px; text-decoration: none; }
.lw-module-summary a:hover { border-color: rgb(32 201 244 / 35%); }
.lw-module-summary a > i { color: #ff7545; }
.lw-module-summary span { overflow: hidden; font-size: .82rem; text-overflow: ellipsis; white-space: nowrap; }
.lw-module-summary em { color: #8193a9; font-style: normal; }
.lw-health-list { display: grid; }
.lw-health-list > div { display: grid; grid-template-columns: 34px minmax(0, 1fr) auto; gap: 11px; align-items: center; border-top: 1px solid rgb(255 255 255 / 7%); padding: 13px 0; }
.lw-health-list > div:first-child { border-top: 0; }
.lw-health-icon { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 10px; background: rgb(255 255 255 / 4%); color: #8fa2b9; }
.lw-health-list b { display: block; font-size: .86rem; font-weight: 600; }
.lw-health-list small { display: block; margin-top: 3px; color: #71839a; font-size: .72rem; line-height: 1.35; }
.lw-health-list em { border-radius: 999px; background: rgb(255 255 255 / 5%); color: #aebed0; padding: 4px 8px; font-size: .72rem; font-style: normal; }
.lw-health-list em[data-tone="success"] { background: rgb(32 190 120 / 10%); color: #76dcb1; }
.lw-health-list em[data-tone="warning"] { background: rgb(255 174 66 / 11%); color: #ffc374; }
.lw-quick-panel nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.lw-quick-panel nav a { display: flex; gap: 9px; align-items: center; min-height: 44px; border: 1px solid rgb(255 255 255 / 7%); border-radius: 11px; background: rgb(255 255 255 / 2%); color: #b9c6d6; padding: 10px 11px; font-size: .82rem; text-decoration: none; }
.lw-quick-panel nav a:hover { border-color: rgb(255 75 11 / 28%); color: #fff; }
.lw-quick-panel nav i { color: #ff7545; }
.lw-gateway-state { display: inline-flex; gap: 7px; align-items: center; border: 1px solid rgb(255 174 66 / 18%); border-radius: 999px; background: rgb(255 174 66 / 8%); color: #ffc374; padding: 7px 11px; font-size: .78rem; }
.lw-gateway-state.is-ready { border-color: rgb(32 190 120 / 18%); background: rgb(32 190 120 / 8%); color: #76dcb1; }
.lw-settings-layout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(300px, .7fr); gap: 16px; align-items: start; }
.lw-premium-form { display: grid; gap: 5px; }
.lw-secret-note { display: flex; gap: 10px; align-items: center; margin: 8px 0 14px; border: 1px solid rgb(32 201 244 / 12%); border-radius: 11px; background: rgb(0 141 241 / 5%); color: #93a8bd; padding: 11px 13px; font-size: .82rem; }
.lw-secret-note i { color: #55c8ff; }
.lw-config-checks { display: grid; gap: 9px; margin-top: 20px; border-top: 1px solid rgb(255 255 255 / 7%); padding-top: 16px; }
.lw-config-checks span { display: flex; gap: 9px; align-items: center; color: #9dafc2; font-size: .82rem; }
.lw-config-checks i.fa-check { color: #65d6a6; }
.lw-config-checks i.fa-xmark { color: #ff9b83; }
.cms-button:disabled { cursor: not-allowed; filter: grayscale(.6); opacity: .5; transform: none; }
.lw-nav-group { margin-top: 7px; border-top: 1px solid rgb(255 255 255 / 7%); padding-top: 7px; }
.lw-nav-group summary { display: flex; align-items: center; justify-content: space-between; border-radius: 10px; color: #aab9cb; padding: 9px 10px; cursor: pointer; font-size: .88rem; }
.lw-nav-group summary::-webkit-details-marker { display: none; }
.lw-nav-group summary span { display: flex; gap: 8px; align-items: center; }
.lw-nav-group summary em { border-radius: 999px; background: rgb(255 255 255 / 6%); padding: 2px 7px; font-size: .7rem; font-style: normal; }
.lw-nav-group > div { display: grid; gap: 2px; margin-top: 3px; padding-left: 8px; }
.lw-nav-group > div a { font-size: .82rem; }
.lw-admin-identity { display: grid; gap: 2px; margin-top: 14px; border-top: 1px solid rgb(255 255 255 / 7%); padding: 14px 10px 0; }
.lw-admin-identity span { color: #dce5ef; font-size: .85rem; }
.lw-admin-identity small { overflow: hidden; color: #71839a; font-size: .7rem; text-overflow: ellipsis; }
.lw-queue-summary { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.lw-queue-summary a { display: grid; grid-template-columns: 1fr auto; gap: 5px 12px; border: 1px solid rgb(255 255 255 / 8%); border-radius: 14px; background: rgb(15 29 47 / 96%); color: #dce5ef; padding: 16px; text-decoration: none; }
.lw-queue-summary a.is-active { border-color: rgb(32 201 244 / 40%); background: rgb(0 141 241 / 6%); }
.lw-queue-summary span { color: #8fa1b7; font-size: .78rem; text-transform: uppercase; }
.lw-queue-summary b { grid-row: 1 / 3; grid-column: 2; align-self: center; font-size: 1.7rem; font-weight: 600; }
.lw-queue-summary small { color: #f1f5f9; }
.lw-filter-links { display: flex; gap: 5px; flex-wrap: wrap; }
.lw-filter-links a { border-radius: 999px; color: #8092a8; padding: 6px 10px; font-size: .76rem; text-decoration: none; }
.lw-filter-links a.is-active { background: rgb(0 141 241 / 12%); color: #7cd4ff; }
.lw-review-form { display: grid; gap: 8px; min-width: 220px; }
.lw-review-form > div { display: flex; gap: 7px; }
.lw-review-form .cms-button { min-height: 36px; padding-inline: 11px; font-size: .78rem; }
.lw-integration-kpis { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.lw-integration-kpis article { display: flex; gap: 13px; align-items: center; min-height: 88px; border: 1px solid rgb(255 255 255 / 8%); border-radius: 14px; background: rgb(15 29 47 / 96%); padding: 16px; }
.lw-integration-kpis article > i { display: grid; width: 40px; height: 40px; flex: 0 0 40px; place-items: center; border-radius: 11px; background: rgb(0 141 241 / 10%); color: #62c9ff; }
.lw-integration-kpis span, .lw-integration-kpis b { display: block; }
.lw-integration-kpis span { color: #8092a8; font-size: .75rem; }
.lw-integration-kpis b { margin-top: 4px; color: #edf3f9; font-size: 1rem; font-weight: 600; }
.lw-gg-layout { grid-template-columns: minmax(0, 1.5fr) minmax(320px, .72fr); }
.lw-form-actions { display: flex; gap: 9px; flex-wrap: wrap; }
.lw-endpoint-field { display: grid; grid-template-columns: minmax(0, 1fr) 42px; gap: 8px; align-items: stretch; margin: 14px 0 6px; }
.lw-endpoint-field code { overflow-wrap: anywhere; border: 1px solid rgb(255 255 255 / 9%); border-radius: 11px; background: rgb(3 12 24 / 54%); color: #b9dff2; padding: 12px; font-size: .76rem; }
.lw-endpoint-field button { border: 1px solid rgb(255 255 255 / 9%); border-radius: 11px; background: #21334a; color: #dce7f2; cursor: pointer; }
.lw-operator-note { display: flex; gap: 10px; margin: 18px 0 0; border-radius: 11px; background: rgb(255 174 66 / 7%); color: #aab8c9; padding: 12px; font-size: .8rem; line-height: 1.45; }
.lw-operator-note i { margin-top: 3px; color: #ffc374; }
.lw-game-catalogue { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.lw-game-catalogue article { display: grid; grid-template-columns: 48px minmax(0, 1fr) auto; gap: 11px; align-items: center; min-height: 70px; border: 1px solid rgb(255 255 255 / 7%); border-radius: 12px; background: rgb(255 255 255 / 2%); padding: 10px; }
.lw-game-catalogue img, .lw-game-catalogue article > span { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 9px; background: rgb(255 75 11 / 9%); color: #ff8155; object-fit: cover; }
.lw-game-catalogue b, .lw-game-catalogue small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lw-game-catalogue b { color: #e8eef5; font-size: .84rem; font-weight: 600; }
.lw-game-catalogue small { margin-top: 4px; color: #71839a; font-size: .7rem; }
.lw-game-catalogue em { color: #6ed6a8; font-size: .68rem; font-style: normal; }
.lw-template-list { display: grid; gap: 4px; max-height: 520px; overflow-y: auto; }
.lw-template-list article { display: grid; grid-template-columns: 24px minmax(0, 1fr); gap: 10px; align-items: center; border-bottom: 1px solid rgb(255 255 255 / 7%); padding: 11px 2px; }
.lw-template-list i { color: #64d7a7; }
.lw-template-list b, .lw-template-list small { display: block; }
.lw-template-list b { color: #e7eef6; font-size: .84rem; font-weight: 600; }
.lw-template-list small { margin-top: 3px; color: #75879d; font-size: .72rem; }
.lw-lobby-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; padding: 26px 4px 6px; }
.lw-lobby-head h1 { margin: 8px 0 5px; }
.lw-lobby-head p { margin: 0; color: #8fa1b7; }
.lw-lobby-tools { display: grid; gap: 13px; border: 1px solid rgb(255 255 255 / 8%); border-radius: 16px; background: rgb(15 29 47 / 94%); padding: 15px; }
.lw-lobby-tools > label { position: relative; }
.lw-lobby-tools > label i { position: absolute; top: 50%; left: 15px; color: #70849b; transform: translateY(-50%); }
.lw-lobby-tools input { width: 100%; min-height: 50px; border: 1px solid rgb(255 255 255 / 10%); border-radius: 12px; background: rgb(3 12 24 / 62%); color: #fff; padding: 10px 14px 10px 44px; font: inherit; }
.lw-lobby-tools input:focus { border-color: #28c9f2; outline: 0; box-shadow: 0 0 0 3px rgb(32 201 244 / 11%); }
.lw-provider-chips { display: flex; gap: 7px; overflow-x: auto; padding-bottom: 2px; scrollbar-width: thin; }
.lw-provider-chips button { flex: 0 0 auto; border: 1px solid rgb(255 255 255 / 8%); border-radius: 999px; background: rgb(255 255 255 / 3%); color: #9dafc2; padding: 8px 12px; cursor: pointer; font: inherit; font-size: .78rem; }
.lw-provider-chips button.is-active { border-color: rgb(32 201 244 / 30%); background: rgb(0 141 241 / 13%); color: #8edcff; }
.lw-lobby-strip, .lw-lobby-catalogue { border: 1px solid rgb(255 255 255 / 8%); border-radius: 17px; background: rgb(15 29 47 / 94%); padding: 19px; }
.lw-lobby-strip > div:last-child { display: flex; gap: 10px; overflow-x: auto; }
.lw-lobby-strip a { display: grid; flex: 0 0 128px; gap: 7px; color: #e8eef5; text-decoration: none; }
.lw-lobby-strip img, .lw-lobby-strip a > span { display: grid; width: 128px; height: 84px; place-items: center; border-radius: 11px; background: rgb(255 75 11 / 10%); object-fit: cover; }
.lw-lobby-strip b { overflow: hidden; font-size: .78rem; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.lw-player-game-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 13px; }
.lw-player-game-grid article { min-width: 0; overflow: hidden; border: 1px solid rgb(255 255 255 / 8%); border-radius: 14px; background: rgb(255 255 255 / 2%); transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.lw-player-game-grid article:hover { border-color: rgb(32 201 244 / 38%); box-shadow: 0 14px 28px rgb(0 0 0 / 22%); transform: translateY(-3px); }
.lw-player-game-grid article[hidden] { display: none; }
.lw-game-media { position: relative; display: block; aspect-ratio: 1.45; overflow: hidden; background: linear-gradient(145deg, #14263d, #091524); }
.lw-game-media img, .lw-game-media > span:first-child { display: grid; width: 100%; height: 100%; place-items: center; color: #ff7545; object-fit: cover; transition: transform .22s ease; }
.lw-player-game-grid article:hover .lw-game-media img { transform: scale(1.04); }
.lw-play-overlay { position: absolute; inset: 0; display: grid; place-items: center; background: rgb(3 12 24 / 44%); color: #fff; opacity: 0; transition: opacity .18s ease; }
.lw-play-overlay i { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: linear-gradient(135deg, #ff7a00, #ff4b0b); box-shadow: 0 8px 20px rgb(255 75 11 / 35%); }
.lw-player-game-grid article:hover .lw-play-overlay { opacity: 1; }
.lw-game-copy { display: grid; grid-template-columns: minmax(0, 1fr) 34px; gap: 5px; align-items: center; padding: 11px; }
.lw-game-copy > a { min-width: 0; color: #e8eef5; text-decoration: none; }
.lw-game-copy b, .lw-game-copy small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lw-game-copy b { font-size: .82rem; font-weight: 600; }
.lw-game-copy small { margin-top: 3px; color: #71839a; font-size: .68rem; }
.lw-game-copy form { margin: 0; }
.lw-game-copy button { display: grid; width: 34px; height: 34px; place-items: center; border: 0; border-radius: 10px; background: rgb(255 255 255 / 4%); color: #ff765e; cursor: pointer; }

@media (display-mode: standalone) {
  .cms-install-button { display: none !important; }
  body.cms-page { user-select: none; -webkit-tap-highlight-color: transparent; }
}

@media (max-width: 900px) {
  .cms-public-home .cms-shell { padding-left: 0; }
  .lw-casino-rail { display: none; }
  .lw-casino-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lw-public-game-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lw-studio-layout { grid-template-columns: 1fr; }
  .lw-studio-preview { position: static; }
  .cms-quick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lw-command-kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lw-command-layout { grid-template-columns: 1fr; }
  .lw-settings-layout { grid-template-columns: 1fr; }
  .lw-integration-kpis { grid-template-columns: 1fr; }
  .lw-game-catalogue { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lw-player-game-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lw-module-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .cms-install-button:not([hidden]) { display: inline-flex; }
  .cms-public-home .cms-shell > .cms-card:first-child { padding: 8px 12px; }
  .cms-public-home .cms-brand-logo { max-width: 155px; height: 50px; }
  .lw-public-actions { gap: 8px; }
  .lw-public-actions > a:first-child { display: none; }
  .lw-public-actions .cms-button { min-height: 40px; padding-inline: 13px; font-size: .82rem; }
  .cms-public-home .cms-install-button:not([hidden]) { position: fixed; z-index: 50; right: 14px; bottom: 14px; margin: 0; box-shadow: 0 14px 38px rgb(0 0 0 / 45%); }
  .cms-public-home .cms-shell > :not(:first-child) { width: calc(100% - 24px); }
  .cms-public-home .cms-shell > .lw-casino-floor { width: 100%; }
  .cms-public-home .cms-shell > .lw-casino-mobile-nav { width: 100%; }
  .lw-public-hero { grid-template-columns: 1fr; min-height: auto; padding: 58px 2px 44px; }
  .lw-public-hero::before { width: 110vw; right: -55%; top: 12%; }
  .lw-public-hero h1 { font-size: clamp(3.1rem, 16vw, 5rem); }
  .lw-public-feature { padding: 28px; }
  .lw-public-highlights { grid-template-columns: 1fr; }
  .lw-public-games { padding-block: 58px; }
  .lw-public-games > header { align-items: start; flex-direction: column; }
  .lw-public-game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .lw-public-join, .lw-public-footer { align-items: flex-start; flex-direction: column; }
  .cms-public-home .cms-shell { padding-bottom: 76px; }
  .cms-public-home .cms-shell > .cms-card:first-child { min-height: 60px; }
  .cms-public-home .cms-brand-logo { height: 42px; max-width: 145px; }
  .lw-casino-floor { width: 100%; padding: 0 0 28px; }
  .lw-jackpot-strip { min-height: 38px; justify-content: flex-start; border-width: 0 0 1px; border-radius: 0; padding-inline: 12px; }
  .lw-jackpot-strip span, .lw-jackpot-strip strong { font-size: .64rem; }
  .lw-casino-banner { grid-template-columns: 1fr; min-height: 250px; margin: 10px 10px 0; border-radius: 16px; }
  .lw-casino-banner-copy { z-index: 3; align-self: end; padding: 24px 20px; background: linear-gradient(0deg, rgb(4 10 19 / 94%), rgb(4 10 19 / 22%)); }
  .lw-casino-banner h1 { font-size: clamp(2rem, 10vw, 2.8rem); }
  .lw-casino-banner p { max-width: 260px; font-size: .82rem; line-height: 1.45; }
  .lw-casino-banner-games { position: absolute; inset: 0; min-height: 0; opacity: .7; }
  .lw-casino-banner-games span { top: calc(16px + var(--card-position) * 9px); right: calc(-4% + (2 - var(--card-position)) * 24%); width: 42%; border-width: 2px; border-radius: 13px; }
  .lw-casino-banner .cms-button { min-height: 40px; padding-inline: 13px; font-size: .78rem; }
  .lw-casino-controls { padding: 22px 10px 0; }
  .lw-casino-section-head h2 { font-size: 1.25rem; }
  .lw-casino-section-head small { font-size: .68rem; }
  .lw-casino-categories { display: flex; margin-inline: -10px; padding: 0 10px 4px; scrollbar-width: none; }
  .lw-casino-categories button { flex: 0 0 92px; min-height: 66px; flex-direction: column; gap: 5px; padding: 8px; font-size: .68rem; }
  .lw-casino-filterbar { grid-template-columns: 1fr; }
  .lw-casino-providers { margin-inline: -10px; padding-inline: 10px; }
  .lw-casino-sections { gap: 24px; padding: 22px 10px 0; }
  .lw-casino-row header button { display: none; }
  .lw-casino-grid { display: flex; gap: 9px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 4px; }
  .lw-casino-grid::-webkit-scrollbar { display: none; }
  .lw-casino-row:not(.is-expanded) .lw-casino-game:nth-child(n+7) { display: none; }
  .lw-casino-game { flex: 0 0 min(42vw, 180px); scroll-snap-align: start; }
  .lw-casino-game-media { aspect-ratio: 1.28; border-radius: 11px; }
  .lw-casino-game > strong { font-size: .72rem; }
  .lw-casino-footer { align-items: flex-start; flex-direction: column; padding-inline: 10px; }
  .lw-casino-mobile-nav { position: fixed; z-index: 60; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(4, 1fr); min-height: 66px; border-top: 1px solid rgb(255 255 255 / 10%); background: rgb(5 12 22 / 94%); backdrop-filter: blur(18px); box-shadow: 0 -12px 35px rgb(0 0 0 / 32%); }
  .lw-casino-mobile-nav a, .lw-casino-mobile-nav button { display: grid; gap: 4px; place-content: center; border: 0; background: transparent; color: #73869e; font: inherit; font-size: .62rem; text-align: center; text-decoration: none; }
  .lw-casino-mobile-nav i { font-size: 1rem; }
  .lw-casino-mobile-nav .is-active { color: var(--lw-orange-bright); }
  .cms-birthdate-selects { grid-template-columns: .7fr 1.3fr 1fr; gap: 7px; }
  .cms-player-menu-toggle { position: relative; z-index: 80; }
  .cms-shell { width: 100%; padding-top: 0; }
  .cms-card { padding: 16px; }
  .cms-brand-logo { max-width: 210px; height: 58px; }
  .cms-hero { grid-template-columns: 1fr; padding: 28px 22px; }
  .cms-hero-stat { max-width: 100%; }
  .cms-quick-grid { grid-template-columns: 1fr; }
  .cms-responsible-banner { align-items: flex-start; flex-wrap: wrap; }
  .cms-responsible-banner a { margin-left: 48px; }
  .cms-admin-authenticated .cms-admin-panel { display: block; min-height: 100vh; }
  .cms-admin-authenticated .cms-admin-panel > aside.cms-card { position: sticky; z-index: 60; top: 0; width: 100%; height: auto; overflow: visible; border-width: 0 0 1px; padding: 10px 14px; box-shadow: 0 8px 30px rgb(0 0 0 / 28%); }
  .cms-admin-authenticated .cms-admin-panel > aside .cms-card-header { margin: 0; }
  .cms-admin-authenticated .cms-admin-panel > aside .cms-brand-logo { height: 48px; max-width: 180px; }
  .cms-admin-authenticated .cms-admin-panel > main { min-height: calc(100vh - 69px); padding: 18px 14px 36px; }
  .cms-admin-navigation { position: fixed; z-index: 70; top: 0; left: 0; display: block; width: min(86vw, 330px); height: 100dvh; overflow-y: auto; background: #0d1b2d; padding: 22px 18px; box-shadow: 18px 0 60px rgb(0 0 0 / 45%); transform: translateX(-105%); transition: transform .22s ease; }
  .cms-admin-navigation.is-open { display: block; transform: translateX(0); }
  .cms-nav-backdrop { position: fixed; z-index: 55; inset: 0; border: 0; background: rgb(1 7 15 / 72%); backdrop-filter: blur(3px); }
  .cms-menu-open .cms-nav-backdrop { display: block; }
  .cms-menu-open { overflow: hidden; }
  .cms-admin-menu-toggle { width: 46px; min-width: 46px; padding: 0; justify-content: center; }
  .cms-admin-menu-toggle span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
  .cms-admin-navigation .cms-nav { padding-top: 12px; }
  .cms-admin-navigation .lw-admin-identity { margin-top: 20px; }
  .cms-player-authenticated .cms-shell > .cms-card:first-child { padding: 8px 12px; }
  .cms-player-authenticated .cms-shell > .cms-card:first-child .cms-card-header { margin: 0; }
  .cms-player-authenticated .cms-shell > :not(:first-child) { width: calc(100% - 24px); }
  .cms-player-authenticated .cms-brand-logo { height: 50px; max-width: 165px; }
  .cms-player-authenticated .cms-status-badge { margin-left: auto; font-size: .72rem; }
  .cms-alerts-button span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
  .cms-alerts-button { width: 38px; min-height: 38px; justify-content: center; padding: 0; }
  .cms-player-menu-toggle { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgb(255 255 255 / 10%); border-radius: 11px; background: #21334a; color: #fff; font-size: 1rem; }
  .cms-player-authenticated .cms-tabs { position: fixed; z-index: 70; top: 0; right: 0; display: grid; align-content: start; width: min(86vw, 330px); height: 100dvh; overflow-y: auto; margin: 0; border: 0; background: #0d1b2d; padding: 84px 18px 24px; box-shadow: -18px 0 60px rgb(0 0 0 / 45%); transform: translateX(105%); transition: transform .22s ease; }
  .cms-player-authenticated .cms-tabs.is-open { transform: translateX(0); }
  .cms-player-authenticated .cms-tabs a { display: flex; min-height: 46px; align-items: center; border-radius: 10px; padding: 10px 13px; }
  .cms-player-nav-backdrop { position: fixed; z-index: 65; inset: 0; border: 0; background: rgb(1 7 15 / 72%); backdrop-filter: blur(3px); }
  .cms-player-menu-open .cms-player-nav-backdrop { display: block; }
  .cms-player-menu-open { overflow: hidden; }
  .cms-account-grid, .cms-account-grid-admin, .cms-account-controls { grid-template-columns: 1fr; }
  .cms-dashboard-grid { grid-template-columns: 1fr; }
  .lw-admin-pagehead { display: grid; align-items: stretch; }
  .lw-admin-search { width: 100%; }
  .lw-command-kpis, .lw-command-columns { grid-template-columns: 1fr; }
  .lw-command-kpi { min-height: 132px; }
  .lw-action-list > a { grid-template-columns: 38px minmax(0, 1fr) auto; }
  .lw-action-list em { display: none; }
  .lw-module-summary { grid-template-columns: 1fr; }
  .lw-queue-summary { grid-template-columns: 1fr; }
  .lw-game-catalogue { grid-template-columns: 1fr; }
  .lw-lobby-head { display: grid; align-items: start; padding-top: 18px; }
  .lw-lobby-head .cms-button { width: max-content; }
  .lw-lobby-strip, .lw-lobby-catalogue { padding: 14px; }
  .lw-player-game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
}

/* Casino lobby v2: application-first layout */
.cms-public-home .cms-shell { padding-left: 224px; transition: padding-left .2s ease; }
.cms-public-home .cms-shell > .cms-card:first-child { min-height: 68px; border-radius: 0; }
.cms-public-home .lw-public-actions .cms-button,
.cms-public-home .cms-button { border-radius: 3px; }
.cms-public-home .cms-shell > .lw-casino-rail {
  z-index: 70;
  width: 224px;
  gap: 0;
  overflow-x: hidden;
  overflow-y: auto;
  align-content: start;
  border-radius: 0;
  background: #02070d;
  padding: 8px 10px 18px;
  transition: width .2s ease;
}
.lw-casino-rail a,
.lw-casino-rail button {
  display: flex;
  width: 100%;
  height: 44px;
  gap: 13px;
  justify-content: flex-start;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  color: #c3cfdd;
  padding: 0 10px;
  font-size: .82rem;
  font-weight: 600;
}
.lw-casino-rail a:hover,
.lw-casino-rail button:hover,
.lw-casino-rail .is-active {
  border-bottom-color: rgb(255 122 0 / 40%);
  background: linear-gradient(90deg, rgb(255 91 18 / 15%), transparent);
  color: #fff;
}
.lw-casino-rail a img,
.lw-casino-rail button img {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  object-fit: contain;
}
.lw-casino-rail span { position: static; display: block; border: 0; background: none; padding: 0; box-shadow: none; }
.lw-casino-rail a:hover span,
.lw-casino-rail button:hover span { display: block; }
.lw-casino-rail-label {
  margin: 10px 10px 4px;
  color: #536579;
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.lw-casino-rail-toggle { margin-bottom: 9px; border-bottom-color: rgb(255 255 255 / 10%) !important; }
.lw-casino-rail-bottom { margin-top: auto; }
.cms-casino-rail-collapsed .cms-shell { padding-left: 72px; }
.cms-casino-rail-collapsed .cms-shell > .lw-casino-rail { width: 72px; }
.cms-casino-rail-collapsed .lw-casino-rail a,
.cms-casino-rail-collapsed .lw-casino-rail button { justify-content: center; padding-inline: 0; }
.cms-casino-rail-collapsed .lw-casino-rail a span,
.cms-casino-rail-collapsed .lw-casino-rail button span,
.cms-casino-rail-collapsed .lw-casino-rail-label { display: none; }
.lw-casino-floor {
  width: 100%;
  margin: 0;
  padding: 12px 14px 42px;
}
.lw-jackpot-strip { display: none; }
.lw-casino-banner {
  min-height: 210px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background-image: linear-gradient(90deg, rgb(2 7 13 / 92%) 0%, rgb(2 7 13 / 65%) 42%, rgb(2 7 13 / 5%) 72%), url('lekker-wen-casino-banner.webp');
  background-position: center;
  background-size: cover;
  box-shadow: 0 14px 34px rgb(0 0 0 / 30%);
}
.lw-casino-banner-copy { max-width: 610px; padding: 28px 38px; }
.lw-casino-banner h1 { margin: 5px 0 8px; font-size: clamp(2rem, 3.1vw, 3.55rem); line-height: .98; }
.lw-casino-banner p { margin-bottom: 15px; }
.lw-casino-banner-games { display: none; }
.lw-casino-controls { padding-top: 16px; }
.lw-casino-section-head h2 { font-size: 1.22rem; }
.lw-casino-categories { gap: 1px; margin-top: 11px; background: rgb(255 255 255 / 8%); }
.lw-casino-categories button {
  min-height: 46px;
  border: 0;
  border-radius: 0;
  background: #0a1523;
}
.lw-casino-categories button img { width: 24px; height: 24px; object-fit: contain; }
.lw-casino-categories button:hover,
.lw-casino-categories button.is-active { background: linear-gradient(180deg, #19283a, #101c2b); box-shadow: inset 0 -2px 0 var(--lw-orange-bright); }
.lw-casino-filterbar { margin-top: 8px; }
.lw-casino-search { border-radius: 0; }
.lw-casino-search button { border-radius: 0; }
.lw-casino-providers { gap: 1px; }
.lw-casino-providers button {
  min-height: 39px;
  border-radius: 0;
  background: #0a1523;
  padding-inline: 16px;
}
.lw-casino-providers button.is-active { box-shadow: inset 0 -2px 0 var(--lw-blue-bright); }
.lw-casino-sections { gap: 24px; padding-top: 16px; }
.lw-provider-monogram,
.lw-casino-game-media,
.lw-casino-provider,
.lw-casino-no-results,
.lw-public-empty { border-radius: 0; }
.lw-casino-provider { border-left: 2px solid var(--lw-orange-bright); }

@media (max-width: 760px) {
  .cms-public-home .cms-shell { padding-left: 0; padding-bottom: 72px; }
  .cms-public-home .cms-shell > .lw-casino-rail { display: none; }
  .cms-public-home .cms-shell > .cms-card:first-child { min-height: 58px; }
  .cms-public-home .cms-brand-logo { height: 39px; max-width: 138px; }
  .lw-casino-floor { padding: 0 0 24px; }
  .lw-casino-banner {
    min-height: 168px;
    margin: 0;
    background-image: linear-gradient(90deg, rgb(2 7 13 / 96%) 0%, rgb(2 7 13 / 78%) 48%, rgb(2 7 13 / 12%) 76%, transparent 100%), url('lekker-wen-casino-banner.webp');
    background-position: right center;
  }
  .lw-casino-banner-copy { align-self: center; max-width: 78%; padding: 18px 15px; background: none; }
  .lw-casino-banner-copy > span { font-size: .58rem; }
  .lw-casino-banner h1 { margin: 4px 0 6px; font-size: clamp(1.65rem, 8vw, 2.25rem); }
  .lw-casino-banner p { max-width: 250px; margin-bottom: 10px; font-size: .72rem; line-height: 1.35; }
  .lw-casino-banner .cms-button { min-height: 36px; padding-inline: 10px; }
  .lw-casino-controls { padding-top: 14px; }
  .lw-casino-categories { gap: 1px; margin-top: 9px; }
  .lw-casino-categories button { flex: 0 0 86px; min-height: 59px; }
  .lw-casino-categories button img { width: 22px; height: 22px; }
  .lw-casino-mobile-nav { grid-template-columns: repeat(5, 1fr); min-height: 64px; border-radius: 0; }
  .lw-casino-mobile-nav a,
  .lw-casino-mobile-nav button { gap: 3px; }
  .lw-casino-mobile-nav img { width: 22px; height: 22px; margin: auto; object-fit: contain; }
  .lw-casino-game-media { border-radius: 0; }
}

@media (display-mode: standalone) {
  .cms-public-home .cms-shell { padding-left: 0; }
  .cms-public-home .cms-shell > .lw-casino-rail { display: none; }
  .lw-casino-banner { min-height: 158px; }
}
.cms-pwa-standalone.cms-public-home .cms-shell { padding-left: 0; }
.cms-pwa-standalone .cms-shell > .lw-casino-rail { display: none; }
.cms-pwa-standalone .lw-casino-banner { min-height: 158px; }

/* Keep horizontal shelves inside the viewport rather than clipping an oversized page. */
.cms-public-home .cms-shell { display: block; padding-bottom: 0; }
.cms-public-home .lw-casino-floor { padding-bottom: 0; }
.lw-casino-banner { grid-template-columns: minmax(0, 1fr); }
.cms-public-home .cms-shell > .cms-card:first-child { padding: 8px 14px; }
.cms-public-home .cms-card-header { width: 100%; min-width: 0; }
.cms-public-home .cms-brand-mark { min-width: 0; margin: 0; }
.lw-casino-floor, .lw-casino-controls, .lw-casino-sections, .lw-casino-row,
.lw-casino-grid, .lw-casino-filterbar, .lw-casino-providers { min-width: 0; max-width: 100%; box-sizing: border-box; }
.lw-casino-footer { align-items: center; flex-wrap: wrap; margin-top: 24px; padding: 16px 0; color: #bbc9da; font-size: 14px; line-height: 1.5; }
.lw-casino-footer nav { flex-wrap: wrap; gap: 4px 20px; }
.lw-casino-footer a { display: inline-flex; align-items: center; min-height: 44px; color: #d7e5f5; }
.lw-casino-footer a:hover { color: #fff; text-decoration: underline; }
.lw-casino-rail a:focus-visible, .lw-casino-rail button:focus-visible,
.lw-casino-footer a:focus-visible, .lw-casino-game:focus-visible { outline: 2px solid #20c9f4; outline-offset: -2px; }
@media(max-width:760px) {
  .cms-public-home .cms-shell { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  .cms-public-home .cms-card-header { display: flex; flex-wrap: nowrap; gap: 8px; }
  .cms-public-home .cms-brand-logo { max-width: 115px; height: auto; max-height: 42px; }
  .cms-public-home .lw-public-actions { flex-shrink: 0; gap: 6px; }
  .cms-public-home .lw-public-actions > a:first-child { display: inline-flex; padding: 10px 4px; font-size: 12px; }
  .cms-public-home .lw-public-actions .cms-button { padding-inline: 8px; font-size: 12px; }
  .lw-casino-footer { align-items: flex-start; gap: 4px; padding: 14px 12px 4px; }
  .lw-casino-footer nav { gap: 4px 18px; }
  .cms-public-home .cms-install-button:not([hidden]) { bottom: calc(76px + env(safe-area-inset-bottom)); }
}
@media(min-width:761px) and (max-width:1100px) {
  .cms-public-home .cms-shell { padding-left: 72px; }
  .cms-public-home .cms-shell > .lw-casino-rail { display: grid; width: 72px; }
  .lw-casino-rail a, .lw-casino-rail button { justify-content: center; padding: 0; }
  .cms-casino-rail-collapsed .lw-casino-rail .lw-casino-rail-label { display: none; }
  .cms-public-home:not(.cms-casino-rail-collapsed) .cms-shell > .lw-casino-rail { width: 224px; z-index: 100; background: #050a11; }
  .cms-public-home:not(.cms-casino-rail-collapsed) .lw-casino-rail a,
  .cms-public-home:not(.cms-casino-rail-collapsed) .lw-casino-rail button { justify-content: flex-start; padding-inline: 10px; }
  .lw-casino-banner-copy { max-width: 65%; padding: 24px; }
  .lw-casino-filterbar { grid-template-columns: minmax(0,1fr); }
}
/* Public lobby: shared alignment, crisp navigation and contained mobile grids. */
.cms-public-home .cms-shell > .cms-card:first-child { padding: 12px 16px; min-height: 88px; }
.cms-public-home .cms-shell > .cms-card:first-child .cms-card-header { max-width: none; margin: 0; align-items: center; }
.cms-public-home .cms-brand-mark, .cms-public-home .cms-brand-mark a { display: flex; align-items: center; min-height: 0; line-height: 1; }
.cms-public-home .cms-brand-logo { display: block; width: 224px; max-width: none; height: auto; max-height: none; filter: none; }
.cms-public-home .lw-public-actions { margin-left: auto; align-items: center; }
.cms-public-home .lw-public-actions .cms-button { box-shadow: none; }
.cms-public-home .lw-casino-floor { padding-inline: 16px; }
.lw-casino-rail { font-family: Arial, sans-serif; }
.lw-casino-rail a, .lw-casino-rail button { font-size: 14px; }
.lw-casino-rail .lw-casino-rail-label { color: #8ba1b7; font-size: 11px; }
.lw-casino-rail img, .lw-casino-categories img, .lw-casino-mobile-nav img { width: 24px; height: 24px; object-fit: contain; filter: none; }
.lw-casino-categories { margin-inline: 0; padding: 0; }
.lw-casino-filterbar { grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr); align-items: start; }
.lw-casino-providers { display: flex; flex-wrap: wrap; overflow: visible; margin: 0; padding: 0; gap: 4px; }
.lw-casino-providers button { min-height: 44px; padding-inline: 12px; }
.lw-provider-select { display: none; }
.lw-casino-sections { padding-inline: 0; }
.lw-casino-row header button { min-height: 44px; padding: 0; color: #c5d8e8; font-size: 13px; }
.lw-casino-game > strong { font-size: 13px; line-height: 1.4; }
.lw-casino-row.is-filtered .lw-casino-game:not([hidden]) { display: block; }
.lw-casino-footer { display: flex; flex-direction: row; align-items: center; justify-content: space-between; padding: 20px 0; gap: 16px; margin-top: 28px; }
.lw-footer-identity { display: grid; gap: 6px; }
.lw-footer-identity strong { color: #fff; font-size: 16px; }
.lw-footer-identity span { color: #aebed0; font-size: 13px; }
.lw-casino-footer nav { gap: 20px; }
.lw-library-dialog { width: min(440px, calc(100% - 32px)); box-sizing: border-box; border: 1px solid #314355; border-top: 3px solid #ff7900; border-radius: 0; padding: 28px; background: #0b1724; color: #e7f0f8; }
.lw-library-dialog::backdrop { background: rgb(0 0 0 / 75%); }
.lw-library-dialog h2 { margin: 0 30px 12px 0; }
.lw-library-dialog p { color: #b8cada; line-height: 1.6; }
.lw-dialog-close { position: absolute; top: 4px; right: 4px; width: 44px; height: 44px; border: 0; background: transparent; color: white; font-size: 28px; cursor: pointer; }
@media(max-width:760px) {
 .cms-public-home .cms-shell > .cms-card:first-child { min-height: 84px; padding: 12px; }
 .cms-public-home .cms-brand-logo { width: 168px; max-width: none; height: auto; max-height: none; }
 .cms-public-home .lw-public-actions { gap: 10px; }
 .cms-public-home .lw-public-actions > a:first-child { font-size: 13px; padding: 0; min-height: 44px; align-items: center; }
 .cms-public-home .lw-public-actions .cms-button { min-height: 44px; padding-inline: 10px; font-size: 12px; }
 .cms-public-home .lw-casino-floor { padding-inline: 12px; }
 .lw-casino-banner { margin-inline: 0; }
 .lw-casino-section-head { align-items: center; gap: 8px; }
 .lw-casino-section-head h2 { font-size: 20px; }
 .lw-casino-section-head small { font-size: 11px; }
 .lw-casino-categories { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); overflow: visible; gap: 2px; }
 .lw-casino-categories button { min-width: 0; min-height: 64px; padding: 6px 2px; font-size: 11px; }
 .lw-casino-filterbar { display: grid; grid-template-columns: minmax(0,1fr); gap: 12px; }
 .lw-casino-providers { display: none; }
 .lw-provider-select { display: grid; grid-template-columns: auto minmax(0,1fr); align-items: center; gap: 12px; color: #b8cada; font-size: 13px; }
 .lw-provider-select select { width: 100%; min-width: 0; height: 44px; border: 1px solid #314355; border-radius: 0; background: #0a1523; color: #fff; padding: 0 12px; font: inherit; }
 .lw-casino-sections { padding: 16px 0 0; gap: 24px; }
 .lw-casino-row > header { gap: 8px; margin-bottom: 8px; }
 .lw-casino-row header button { display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0; }
 .lw-casino-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; overflow: visible; padding: 0; }
 .lw-casino-game { min-width: 0; width: 100%; }
 .lw-casino-row:not(.is-expanded):not(.is-filtered) .lw-casino-game:nth-child(n+5) { display: none; }
 .lw-casino-game-media { aspect-ratio: 1.28; }
 .lw-casino-footer { align-items: stretch; flex-direction: column; gap: 12px; padding: 20px 0 12px; }
 .lw-casino-footer nav { display: grid; grid-template-columns: auto auto 1fr; gap: 16px; }
 .lw-casino-footer nav a:last-child { justify-content: flex-end; }
 .lw-casino-mobile-nav a, .lw-casino-mobile-nav button { font-size: 11px; gap: 5px; color: #b8cada; }
 .lw-casino-mobile-nav img { justify-self: center; }
}
@media(max-width:360px) {
 .cms-public-home .cms-card-header { flex-wrap: wrap; justify-content: center; gap: 6px; }
 .cms-public-home .lw-public-actions { width: 100%; margin: 0; justify-content: space-between; }
}

.lw-casino-row header button[hidden] { display: none; }
.lw-casino-controls { padding-inline: 0; }
.cms-auth-page .cms-brand-logo { width: 224px; max-width: 100%; height: auto; max-height: none; filter: none; }
.cms-auth-page .cms-brand-mark a { display: inline-flex; }
.cms-auth-page .cms-shell { padding-top: 24px; gap: 20px; }
.cms-auth-page .cms-card, .cms-auth-page .cms-input, .cms-auth-page .cms-button { border-radius: 0; }
.cms-pwa-standalone.cms-public-home .cms-brand-logo { width: 168px; height: auto; max-width: none; max-height: none; }
.cms-pwa-standalone.cms-public-home .cms-shell > .cms-card:first-child { min-height: 84px; padding: max(12px, env(safe-area-inset-top)) 12px 12px; }
.cms-wallet-balances { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 13px; color: #aec5d8; }
.cms-wallet-balances span { display: grid; gap: 4px; }
.cms-wallet-balances strong { color: #fff; font-size: 18px; }
.lw-bonus-panel, .lw-bonus-panel .cms-card, .lw-bonus-panel .cms-input, .lw-bonus-panel .cms-select, .lw-bonus-panel .cms-textarea, .lw-bonus-panel .cms-button, .lw-bonus-panel .cms-alert { border-radius: 0; }
.lw-bonus-status { color: #b8cada; font-size: 14px; }
/* One control rhythm across desktop, mobile and installed lobby. */
.lw-casino-controls { --lw-control-height: 44px; }
.lw-casino-categories button,
.lw-casino-providers button,
.lw-casino-search,
.lw-provider-select select { box-sizing: border-box; height: var(--lw-control-height); min-height: var(--lw-control-height); border-radius: 0; }
.lw-casino-search input { height: 100%; padding-block: 0; }
.lw-casino-categories button { padding-block: 0; }
.lw-casino-search { border-color: #284359; background: #0c1d2c; }
.lw-casino-search:focus-within { border-color: #20c9f4; box-shadow: inset 0 -2px #20c9f4; }
.lw-casino-categories button { background: #102637; color: #d9e9f3; }
.lw-casino-categories button:hover,
.lw-casino-categories button.is-active { background: #733209; color: #fff; box-shadow: inset 0 -3px #ff8700; }
.lw-casino-providers button { background: #0c2433; border-color: #23475b; color: #bdd8e9; }
.lw-casino-providers button:hover,
.lw-casino-providers button.is-active { background: #064961; border-color: #20c9f4; color: #fff; box-shadow: inset 0 -2px #20c9f4; }
.lw-casino-row > header { border-bottom: 1px solid #193344; padding-bottom: 8px; }
.lw-casino-row header button { color: #39d2f6; }
.lw-casino-row:nth-child(even) .lw-provider-monogram { background: #087ca4; }
.lw-casino-game-media { background: #08121b; border-color: #274051; }
.lw-casino-game:hover .lw-casino-game-media { border-color: #ff8700; }
.lw-casino-game:focus-visible .lw-casino-play { opacity: 1; }
@media(max-width:760px) {
 .lw-casino-categories button { gap: 2px; font-size: 10px; }
 .lw-casino-categories button img { width: 18px; height: 18px; }
}
@media(min-width:1281px) {
 .lw-casino-filterbar { grid-template-columns: minmax(220px,.6fr) minmax(0,1.4fr); }
}
@media(min-width:761px) and (max-width:1280px) {
 .lw-casino-filterbar { grid-template-columns: minmax(0,1fr); }
}
/* Catalogue-driven navigation and compact, grouped footer. */
.lw-casino-categories { grid-template-columns: repeat(5,minmax(0,1fr)); }
.lw-casino-categories small { color: #8ee3f5; font-size: 11px; }
.lw-casino-rail button small { margin-left: auto; color: #77cde2; font-size: 11px; }
.cms-casino-rail-collapsed .lw-casino-rail button small { display: none; }
.lw-casino-footer { justify-content: flex-start; align-items: center; gap: 32px; margin-top: 24px; padding: 20px; border-top: 2px solid #177e9a; background: #0b1824; }
.lw-footer-identity { gap: 8px; }
.lw-footer-logo { display: block; width: 180px; height: auto; }
.lw-casino-footer nav { display: flex; justify-content: flex-start; flex-wrap: wrap; gap: 8px 24px; }
.lw-casino-footer nav a { justify-content: flex-start; font-size: 14px; }
.lw-casino-no-results { margin: 0; padding: 24px; }
@media(max-width:760px) {
 .lw-casino-categories button { font-size: 10px; line-height: 12px; }
 .lw-casino-categories small { display: none; }
 .lw-casino-footer { flex-direction: column; align-items: flex-start; gap: 12px; padding: 16px; margin-top: 20px; }
 .lw-casino-footer nav { gap: 4px 18px; }
 .lw-casino-footer nav a:last-child { justify-content: flex-start; }
}
.lw-casino-search input::-webkit-search-cancel-button { -webkit-appearance: none; }
/* Search consumes spare desktop width; provider buttons end at the content edge. */
@media(min-width:1281px) {
 .lw-casino-filterbar { grid-template-columns: minmax(220px,1fr) max-content; }
 .lw-casino-providers { flex-wrap: nowrap; }
}
@media(min-width:761px) and (max-width:1280px) {
 .lw-casino-providers button { flex: 1 0 auto; }
}
/* Optical centring compensates for the supplied logo's transparent bottom margin. */
.cms-public-home .cms-brand-logo { transform: translateY(9.9%); }
.lw-casino-game-media { aspect-ratio: 1.75; }
.lw-casino-provider { display: none; }
#browse-games { scroll-margin-top: 120px; }
/* Image-sized frame: native artwork touches its border, with provider overlay retained. */
.lw-casino-game-media { aspect-ratio:auto; align-self:start; }
.lw-casino-game-media>img { display:block; width:100%; height:auto; }
.lw-casino-provider { display:block; }
.lw-casino-game { display:grid; grid-template-rows:auto 1fr; align-content:start; }
.lw-casino-game>strong { align-self:end; }
.lw-promo-carousel { position:relative; }
.lw-promo-carousel [hidden] { display:none!important; }
.lw-promo-carousel .lw-casino-banner { margin-bottom:0; }
.lw-promo-carousel h2 { font-size:clamp(28px,3vw,48px);line-height:1.05;margin:12px 0; }
.lw-promo-rewards { background:radial-gradient(ellipse at right,#725013,#091824 70%); }
.lw-promo-tables { background:radial-gradient(ellipse at right,#125553,#091824 70%); }
.lw-promo-art { position:absolute;right:8%;top:25%;display:flex;gap:10px;transform:rotate(-8deg);pointer-events:none; }
.lw-promo-art b { background:linear-gradient(#fff,#9cb6c8);color:#182635;border:4px solid #e5b645;padding:20px 12px;font:bold italic 36px Arial; }
.lw-card-art b { color:#b13531; }
.lw-promo-pagination { display:flex;gap:4px;justify-content:flex-end;padding:8px 0; }
.lw-promo-pagination button { min-width:36px;height:36px;border:1px solid #25465b;background:#102433;color:#d9eaf5;cursor:pointer; }
.lw-promo-pagination [aria-pressed=true] { border-color:#ff8900;color:#ffb63b; }
.lw-welcome-promo { width:min(460px,calc(100% - 32px));border:2px solid #ecaa35;border-radius:0;background:linear-gradient(140deg,#192f43,#071019);color:white;padding:32px; }
.lw-welcome-promo::backdrop { background:#000b; }
.lw-welcome-promo>span,.lw-promotions-page header>span,.lw-promotion-list article>span { color:#f6b044;font-size:12px;letter-spacing:1px; }
.lw-welcome-promo button { background:transparent;color:white;border:0;min-height:44px;cursor:pointer; }
.lw-welcome-promo button[aria-label] { position:absolute;right:8px;top:4px;font-size:28px; }
.lw-welcome-promo small { display:block;color:#bdd0df; }
.lw-promotions-page { padding:24px;max-width:1200px;margin:auto; }
.lw-promotions-page header { padding:32px 0; }
.lw-promotion-list { display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,300px),1fr));gap:20px; }
.lw-promotion-list article { padding:24px;background:linear-gradient(135deg,#183247,#0a1521);border-top:3px solid #e8a535;line-height:1.6; }
.lw-promotion-list dl { display:grid;grid-template-columns:1fr 1fr;gap:8px;font-size:14px; }
.lw-promotion-list dd { margin:0;color:#fff; }
@media(max-width:760px){.lw-promo-art{right:14px;top:30%;opacity:.25}.lw-promo-art b{font-size:25px;padding:12px 5px}.lw-promo-carousel .lw-casino-banner-copy{position:relative;z-index:1}.lw-promotions-page{padding:16px}}
.lw-club-art { display:block;width:100%;max-height:240px;object-fit:contain;margin-bottom:16px; }
.lw-reel-windows { display:flex;gap:12px;justify-content:center;padding:24px;background:#07131e;border:2px solid #eabc52; }
.lw-reel-windows b { padding:18px 12px;background:linear-gradient(#a3b4bf,#fff,#a3b4bf);color:#142330;font:bold italic 28px Arial; }
.lw-award-reveal.is-revealing b { animation:club-reel .2s linear infinite; }
@keyframes club-reel { 50% { transform:translateY(10px);filter:blur(2px); } }
@media(prefers-reduced-motion:reduce){.lw-award-reveal.is-revealing b { animation:none; }}
@media(max-width:760px){.lw-welcome-promo{margin:auto 12px 16px;width:calc(100% - 24px);max-height:85dvh;overflow:auto;padding:24px}.lw-welcome-promo .lw-club-art{max-height:160px}}
.lw-promo-carousel .lw-casino-banner { position:relative;overflow:hidden; }
.lw-slide-background { position:absolute;right:0;top:0;width:55%;height:100%;object-fit:cover;opacity:.65; }
.lw-promo-carousel .lw-casino-banner-copy { position:relative;z-index:1; }
@media(max-width:760px){.lw-slide-background{display:none}}
