/* PokerNap premium cash lobby */
:root {
  --pl-ink: #f8f1df;
  --pl-muted: #adbaa9;
  --pl-gold: #e9bd62;
  --pl-gold-bright: #ffe3a0;
  --pl-green: #0d4b38;
  --pl-green-deep: #041d18;
  --pl-green-soft: #17644a;
  --pl-red: #781f2a;
  --pl-red-deep: #3c1018;
  --pl-panel: rgba(6, 30, 24, 0.88);
  --pl-panel-solid: #092c24;
  --pl-line: rgba(233, 189, 98, 0.2);
  --pl-line-soft: rgba(255, 255, 255, 0.08);
  --pl-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --pl-radius-xl: 28px;
  --pl-radius-lg: 20px;
  --pl-radius-md: 14px;
  --pl-font: "Noto Kufi Arabic", "DIN Next Arabic", "Trebuchet MS", sans-serif;
  --pl-display: "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

#lobbyScreen.premium-lobby-mounted {
  align-items: stretch;
  justify-content: flex-start;
  min-height: 100dvh;
  padding: 0;
  overflow: auto;
  color: var(--pl-ink);
  background:
    radial-gradient(circle at 82% 10%, rgba(120, 31, 42, 0.42), transparent 31rem),
    radial-gradient(circle at 8% 95%, rgba(23, 100, 74, 0.52), transparent 34rem),
    linear-gradient(135deg, #031612 0%, #062b21 48%, #041b17 100%);
}

#lobbyScreen.premium-lobby-mounted > :not(.premium-lobby-shell) {
  display: none !important;
}

.premium-lobby-shell {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 100dvh;
  padding: clamp(14px, 2vw, 28px);
  overflow: hidden;
  font-family: var(--pl-font);
}

.premium-lobby-shell::before,
.premium-lobby-shell::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.premium-lobby-shell::before {
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(30deg, transparent 47%, rgba(233, 189, 98, 0.22) 49%, transparent 51%),
    linear-gradient(150deg, transparent 47%, rgba(233, 189, 98, 0.16) 49%, transparent 51%);
  background-size: 68px 118px;
}

.premium-lobby-shell::after {
  top: -170px;
  right: -110px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(233, 189, 98, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(233, 189, 98, 0.025),
    0 0 0 110px rgba(233, 189, 98, 0.018);
}

.premium-lobby-frame {
  width: min(1500px, 100%);
  margin-inline: auto;
}

.premium-lobby-topbar {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 72px;
  padding: 10px 14px;
  border: 1px solid var(--pl-line);
  border-radius: var(--pl-radius-lg);
  background: linear-gradient(135deg, rgba(7, 38, 30, 0.94), rgba(4, 23, 19, 0.84));
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  animation: pl-drop 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.premium-brand,
.premium-profile,
.premium-toolbar,
.premium-wallet,
.premium-live-pill,
.premium-section-heading,
.premium-table-meta,
.premium-table-seats,
.premium-table-actions,
.premium-last-table-head {
  display: flex;
  align-items: center;
}

.premium-brand {
  gap: 12px;
  min-width: 0;
}

.premium-brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border: 2px dashed rgba(255, 227, 160, 0.72);
  border-radius: 50%;
  color: var(--pl-gold-bright);
  background: radial-gradient(circle, #9b3340 0 38%, #641b25 40% 62%, #173f33 64%);
  box-shadow: inset 0 0 0 3px #09261f, 0 8px 20px rgba(0, 0, 0, 0.32);
  font-family: var(--pl-display);
  font-size: 22px;
  font-weight: 900;
}

.premium-brand-copy {
  min-width: 0;
}

.premium-brand-name {
  display: block;
  overflow: hidden;
  color: #fff8e8;
  font-family: var(--pl-display);
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.premium-brand-tagline,
.premium-profile-id,
.premium-eyebrow,
.premium-section-kicker,
.premium-table-label,
.premium-table-status,
.premium-footer-note {
  color: var(--pl-muted);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.premium-profile {
  justify-self: center;
  gap: 10px;
  min-width: 0;
  padding: 5px 14px 5px 6px;
  border: 1px solid var(--pl-line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.premium-profile-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 2px solid var(--pl-gold);
  border-radius: 50%;
  color: #fff8e8;
  background: linear-gradient(145deg, var(--pl-red), var(--pl-red-deep));
  box-shadow: 0 0 0 3px rgba(233, 189, 98, 0.12);
  font-weight: 900;
}

.premium-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.premium-profile-name {
  display: block;
  max-width: 160px;
  overflow: hidden;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.premium-toolbar {
  justify-self: end;
  gap: 8px;
}

.premium-wallet {
  gap: 9px;
  min-width: 132px;
  padding: 8px 12px;
  border: 1px solid rgba(233, 189, 98, 0.28);
  border-radius: 13px;
  background: linear-gradient(180deg, rgba(233, 189, 98, 0.11), rgba(233, 189, 98, 0.035));
}

.premium-wallet-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #40270b;
  background: linear-gradient(145deg, var(--pl-gold-bright), #bc8430);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
  font-family: var(--pl-display);
  font-weight: 900;
}

.premium-wallet-copy span,
.premium-wallet-copy strong {
  display: block;
}

.premium-wallet-copy span {
  color: var(--pl-muted);
  font-size: 10px;
}

.premium-wallet-copy strong {
  color: var(--pl-gold-bright);
  font-family: var(--pl-display);
  font-size: 15px;
  letter-spacing: 0.03em;
}

.premium-icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--pl-line-soft);
  border-radius: 13px;
  color: var(--pl-ink);
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.premium-icon-button:hover,
.premium-icon-button:focus-visible {
  border-color: rgba(233, 189, 98, 0.56);
  background: rgba(233, 189, 98, 0.12);
  transform: translateY(-2px);
}

.premium-language-code {
  font-family: var(--pl-display);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.premium-lobby-main {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.premium-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  min-height: 286px;
  overflow: hidden;
  border: 1px solid rgba(233, 189, 98, 0.24);
  border-radius: var(--pl-radius-xl);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 227, 160, 0.1), transparent 22rem),
    linear-gradient(112deg, rgba(86, 18, 27, 0.97) 0%, rgba(48, 12, 19, 0.97) 52%, rgba(5, 38, 29, 0.96) 100%);
  box-shadow: var(--pl-shadow);
  animation: pl-rise 620ms 80ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.premium-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.2;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0 1px, transparent 1.5px);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, #000, transparent 68%);
  pointer-events: none;
}

.premium-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(26px, 4vw, 54px);
}

.premium-live-pill {
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: #dce8df;
  background: rgba(4, 24, 19, 0.35);
  font-size: 11px;
  font-weight: 800;
}

.premium-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #54e89b;
  box-shadow: 0 0 0 5px rgba(84, 232, 155, 0.1), 0 0 14px rgba(84, 232, 155, 0.72);
  animation: pl-pulse 1.8s ease-in-out infinite;
}

.premium-live-pill[data-status="connecting"] .premium-live-dot {
  background: var(--pl-gold);
  box-shadow: 0 0 0 5px rgba(233, 189, 98, 0.1);
}

.premium-live-pill[data-status="offline"] .premium-live-dot {
  background: #e36d77;
  box-shadow: 0 0 0 5px rgba(227, 109, 119, 0.1);
  animation: none;
}

.premium-hero h1 {
  max-width: 720px;
  margin: 0;
  color: #fff8e9;
  font-family: var(--pl-display);
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.08;
  text-wrap: balance;
}

.premium-hero-description {
  max-width: 620px;
  margin: 13px 0 22px;
  color: #d8cfc5;
  font-size: clamp(12px, 1.25vw, 15px);
  line-height: 1.9;
}

.premium-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.premium-primary-button,
.premium-secondary-button,
.premium-table-enter,
.premium-last-enter {
  border: 0;
  border-radius: 14px;
  font-family: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.premium-primary-button {
  min-width: 160px;
  padding: 13px 22px;
  color: #321b08;
  background: linear-gradient(135deg, var(--pl-gold-bright), #d69a3a 65%, #b87522);
  box-shadow: 0 10px 28px rgba(223, 164, 65, 0.28), inset 0 1px rgba(255, 255, 255, 0.62);
}

.premium-secondary-button {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  color: var(--pl-ink);
  background: rgba(255, 255, 255, 0.07);
}

.premium-primary-button:hover,
.premium-primary-button:focus-visible,
.premium-secondary-button:hover,
.premium-secondary-button:focus-visible,
.premium-table-enter:hover,
.premium-table-enter:focus-visible,
.premium-last-enter:hover,
.premium-last-enter:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.premium-hero-visual {
  position: relative;
  min-height: 286px;
}

.premium-mini-table {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(88%, 520px);
  aspect-ratio: 1.72;
  border: 12px solid #542016;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08), transparent 62%),
    linear-gradient(145deg, #14704f, #074331);
  box-shadow:
    inset 0 0 0 4px #ca984a,
    inset 0 0 45px rgba(0, 0, 0, 0.48),
    0 28px 40px rgba(0, 0, 0, 0.42);
  transform: translate(-50%, -45%) perspective(750px) rotateX(57deg) rotateZ(-4deg);
}

.premium-mini-table::after {
  position: absolute;
  inset: 12%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 227, 160, 0.3);
  border-radius: 50%;
  color: rgba(255, 227, 160, 0.42);
  content: "POKERNAP";
  font-family: var(--pl-display);
  font-size: clamp(12px, 2vw, 24px);
  font-weight: 900;
  letter-spacing: 0.22em;
}

.premium-show-cards {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: flex;
  gap: 7px;
  transform: translate(-50%, -34%) rotate(-4deg);
}

.premium-show-card {
  position: relative;
  width: clamp(57px, 6vw, 82px);
  aspect-ratio: 0.7;
  border: 1px solid #cfc8b9;
  border-radius: 9px;
  color: #171717;
  background: linear-gradient(145deg, #fffef8, #e9e3d5);
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.38);
  font-family: Georgia, serif;
  font-size: clamp(20px, 2.5vw, 34px);
  font-weight: 900;
}

.premium-show-card span {
  position: absolute;
  top: 8px;
  left: 9px;
  line-height: 0.92;
  text-align: center;
}

.premium-show-card.is-red {
  color: #a5212d;
  transform: translateY(9px) rotate(7deg);
}

.premium-hero-chip {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 4px dashed #fff0bb;
  border-radius: 50%;
  color: #fff4cf;
  background: #8d2733;
  box-shadow: inset 0 0 0 4px #54151e, 0 9px 15px rgba(0, 0, 0, 0.32);
  font-family: var(--pl-display);
  font-size: 11px;
  font-weight: 900;
}

.premium-hero-chip.chip-one {
  right: 13%;
  bottom: 16%;
  transform: rotate(13deg);
}

.premium-hero-chip.chip-two {
  right: 22%;
  bottom: 9%;
  background: #1a5e47;
  transform: rotate(-10deg);
}

.premium-game-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  padding: 8px;
  border: 1px solid var(--pl-line);
  border-radius: var(--pl-radius-lg);
  background: rgba(4, 24, 19, 0.78);
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(15px);
  animation: pl-rise 620ms 150ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.premium-game-tab {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 62px;
  padding: 8px 12px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--pl-muted);
  text-align: start;
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.premium-game-tab:hover,
.premium-game-tab:focus-visible {
  color: var(--pl-ink);
  background: rgba(255, 255, 255, 0.05);
}

.premium-game-tab[aria-selected="true"] {
  border-color: rgba(233, 189, 98, 0.36);
  color: #fff8e8;
  background: linear-gradient(145deg, rgba(120, 31, 42, 0.66), rgba(75, 20, 29, 0.58));
  box-shadow: inset 0 -2px var(--pl-gold), 0 7px 18px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.premium-game-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(233, 189, 98, 0.24);
  border-radius: 12px;
  color: var(--pl-gold-bright);
  background: rgba(233, 189, 98, 0.08);
  font-family: var(--pl-display);
  font-size: 18px;
  font-weight: 900;
}

.premium-game-label,
.premium-game-subtitle {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.premium-game-label {
  font-size: 12px;
  font-weight: 900;
}

.premium-game-subtitle {
  margin-top: 3px;
  color: var(--pl-muted);
  font-size: 9px;
}

.premium-lobby-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 16px;
  animation: pl-rise 620ms 220ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.premium-tables-panel,
.premium-side-card {
  border: 1px solid var(--pl-line);
  border-radius: var(--pl-radius-lg);
  background: linear-gradient(150deg, rgba(8, 46, 36, 0.93), rgba(4, 27, 22, 0.92));
  box-shadow: 0 17px 40px rgba(0, 0, 0, 0.22);
}

.premium-tables-panel {
  min-width: 0;
  padding: clamp(15px, 2vw, 23px);
}

.premium-section-heading {
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.premium-section-heading h2,
.premium-side-card h3 {
  margin: 3px 0 0;
  color: #fff8e8;
  font-family: var(--pl-display);
}

.premium-section-heading h2 {
  font-size: clamp(20px, 2vw, 28px);
}

.premium-live-summary {
  padding: 7px 11px;
  border: 1px solid var(--pl-line-soft);
  border-radius: 999px;
  color: var(--pl-muted);
  background: rgba(0, 0, 0, 0.14);
  font-size: 10px;
  white-space: nowrap;
}

.premium-short-notice {
  display: none;
  margin: -2px 0 14px;
  padding: 10px 12px;
  border: 1px solid rgba(233, 189, 98, 0.28);
  border-radius: 12px;
  color: #f7dfaa;
  background: rgba(120, 31, 42, 0.28);
  font-size: 11px;
  font-weight: 800;
}

.premium-short-notice.is-visible {
  display: block;
}

.premium-table-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
}

.premium-table-card {
  position: relative;
  min-width: 0;
  padding: 14px;
  overflow: hidden;
  border: 1px solid var(--pl-line-soft);
  border-radius: var(--pl-radius-md);
  background:
    radial-gradient(circle at 100% 0%, rgba(233, 189, 98, 0.09), transparent 10rem),
    rgba(255, 255, 255, 0.035);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.premium-table-card:hover {
  border-color: rgba(233, 189, 98, 0.34);
  background-color: rgba(255, 255, 255, 0.055);
  transform: translateY(-3px);
}

.premium-table-card::before {
  position: absolute;
  top: 0;
  right: 18px;
  width: 34px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  content: "";
  background: var(--pl-gold);
}

.premium-table-meta {
  justify-content: space-between;
  gap: 8px;
}

.premium-table-status {
  padding: 4px 7px;
  border-radius: 999px;
  color: #99d7b9;
  background: rgba(84, 232, 155, 0.08);
}

.premium-table-card h3 {
  margin: 13px 0 4px;
  overflow: hidden;
  color: #fff;
  font-family: var(--pl-display);
  font-size: 17px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.premium-table-stakes {
  margin: 0;
  color: var(--pl-gold-bright);
  font-family: var(--pl-display);
  font-size: 21px;
  font-weight: 900;
}

.premium-table-buyin {
  margin-top: 7px;
  color: var(--pl-muted);
  font-size: 10px;
}

.premium-seat-meter {
  height: 4px;
  margin: 13px 0 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.premium-seat-meter span {
  display: block;
  width: var(--seat-fill, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pl-green-soft), var(--pl-gold));
}

.premium-table-seats {
  justify-content: space-between;
  color: var(--pl-muted);
  font-size: 10px;
}

.premium-table-actions {
  gap: 8px;
  margin-top: 12px;
}

.premium-table-enter {
  flex: 1;
  min-height: 36px;
  padding: 8px 11px;
  color: #281704;
  background: linear-gradient(135deg, #f1cb7d, #c8892e);
}

.premium-wait-badge {
  min-width: 38px;
  padding: 7px;
  border: 1px solid var(--pl-line-soft);
  border-radius: 10px;
  color: var(--pl-muted);
  font-size: 9px;
  text-align: center;
  background: rgba(0, 0, 0, 0.14);
}

.premium-table-skeleton {
  min-height: 202px;
  border-radius: var(--pl-radius-md);
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.03) 20%, rgba(255, 255, 255, 0.08) 40%, rgba(255, 255, 255, 0.03) 60%);
  background-size: 220% 100%;
  animation: pl-shimmer 1.3s linear infinite;
}

.premium-side-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.premium-side-card {
  padding: 17px;
}

.premium-last-table-head {
  justify-content: space-between;
  gap: 10px;
}

.premium-side-card h3 {
  font-size: 18px;
}

.premium-side-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(233, 189, 98, 0.25);
  border-radius: 12px;
  color: var(--pl-gold-bright);
  background: rgba(233, 189, 98, 0.08);
}

.premium-last-description,
.premium-info-list {
  color: var(--pl-muted);
  font-size: 11px;
  line-height: 1.8;
}

.premium-last-description {
  min-height: 38px;
  margin: 11px 0 13px;
}

.premium-last-enter {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(233, 189, 98, 0.24);
  color: var(--pl-gold-bright);
  background: rgba(233, 189, 98, 0.08);
}

.premium-info-list {
  display: grid;
  gap: 9px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.premium-info-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.premium-info-check {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #91e6b8;
  background: rgba(84, 232, 155, 0.09);
  font-size: 10px;
  font-weight: 900;
}

.premium-lobby-footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 4px 5px 0;
}

.premium-lobby-shell[dir="ltr"] .premium-brand-name,
.premium-lobby-shell[dir="ltr"] .premium-hero h1,
.premium-lobby-shell[dir="ltr"] .premium-section-heading h2,
.premium-lobby-shell[dir="ltr"] .premium-side-card h3 {
  letter-spacing: 0.015em;
}

@keyframes pl-drop {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pl-rise {
  from { opacity: 0; transform: translateY(22px) scale(0.99); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes pl-pulse {
  0%, 100% { opacity: 0.75; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes pl-shimmer {
  to { background-position: -220% 0; }
}

@media (max-width: 1120px) {
  .premium-lobby-topbar { grid-template-columns: 1fr auto; }
  .premium-profile { display: none; }
  .premium-table-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .premium-lobby-grid { grid-template-columns: minmax(0, 1fr) 280px; }
}

@media (max-width: 860px) {
  .premium-lobby-shell { padding: 10px; }
  .premium-lobby-topbar { min-height: 62px; border-radius: 16px; }
  .premium-brand-tagline { display: none; }
  .premium-wallet { min-width: 110px; }
  .premium-hero { grid-template-columns: 1fr; min-height: 430px; }
  .premium-hero-copy { justify-content: flex-start; padding: 25px 22px; }
  .premium-hero-visual { min-height: 180px; }
  .premium-mini-table { width: min(80%, 430px); }
  .premium-show-cards { top: 42%; }
  .premium-game-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .premium-lobby-grid { grid-template-columns: 1fr; }
  .premium-side-column { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .premium-lobby-topbar { grid-template-columns: minmax(0, 1fr) auto; gap: 7px; padding: 8px; }
  .premium-brand-mark { flex-basis: 40px; width: 40px; height: 40px; }
  .premium-brand-name { font-size: 15px; }
  .premium-wallet { min-width: 0; padding: 7px 9px; }
  .premium-wallet-icon { display: none; }
  .premium-icon-button { width: 38px; height: 38px; }
  .premium-toolbar { gap: 5px; }
  .premium-hero { min-height: 405px; border-radius: 20px; }
  .premium-hero h1 { font-size: 31px; }
  .premium-hero-description { margin-bottom: 16px; }
  .premium-primary-button { min-width: 145px; }
  .premium-game-nav { gap: 6px; padding: 6px; }
  .premium-game-tab { grid-template-columns: 34px minmax(0, 1fr); gap: 7px; min-height: 55px; padding: 7px; }
  .premium-game-icon { width: 34px; height: 34px; font-size: 15px; }
  .premium-table-grid { grid-template-columns: 1fr; }
  .premium-side-column { grid-template-columns: 1fr; }
  .premium-section-heading { align-items: flex-start; }
  .premium-live-summary { white-space: normal; text-align: end; }
  .premium-lobby-footer { flex-direction: column; gap: 3px; }
}

@media (orientation: landscape) and (max-height: 700px) and (min-width: 760px) {
  .premium-lobby-shell { padding: 10px 14px; }
  .premium-lobby-topbar { min-height: 58px; }
  .premium-brand-mark { flex-basis: 38px; width: 38px; height: 38px; }
  .premium-profile-avatar { width: 36px; height: 36px; }
  .premium-icon-button { width: 38px; height: 38px; }
  .premium-wallet { padding-block: 5px; }
  .premium-lobby-main { gap: 10px; margin-top: 10px; }
  .premium-hero { min-height: 200px; }
  .premium-hero-copy { padding: 22px 34px; }
  .premium-hero h1 { font-size: clamp(29px, 3.4vw, 45px); }
  .premium-hero-description { margin: 7px 0 12px; line-height: 1.55; }
  .premium-hero-visual { min-height: 200px; }
  .premium-game-tab { min-height: 52px; }
  .premium-table-card { padding: 11px; }
  .premium-table-card h3 { margin-top: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .premium-lobby-shell *,
  .premium-lobby-shell *::before,
  .premium-lobby-shell *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
