:root {
  --bg: #0f111a;
  --bg-panel: #141824;
  --bg-card: #1a1d2e;
  --border: rgba(255, 255, 255, 0.06);
  --cyan: #00e5ff;
  --magenta: #ff009d;
  --purple: #7c3aed;
  --text: #f0eef5;
  --muted: #8b879e;
  --radius: 12px;
  --ref: linear-gradient(135deg, #ff009d 0%, #c026d3 100%);
  --glow-magenta: 0 0 24px rgba(255, 0, 157, 0.35);
  --sidebar-w: 260px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Montserrat", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* —— Плашка редиректа (розовая, над шапкой) —— */
.redirect-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 210;
  background: linear-gradient(90deg, #2a0a24 0%, #1f0d1f 35%, #2d0f28 70%, #1a0818 100%);
  border-bottom: 1px solid rgba(255, 0, 157, 0.45);
  box-shadow: 0 4px 28px rgba(255, 0, 157, 0.2);
}

.redirect-bar.is-hidden {
  display: none;
}

body.has-redirect-bar {
  padding-top: 56px;
}

@media (max-width: 720px) {
  body.has-redirect-bar {
    padding-top: 96px;
  }
}

.redirect-bar-inner {
  display: flex;
  align-items: center;
  gap: 0.65rem 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 56px;
  padding: 0.5rem 1rem;
  padding-left: 2.65rem;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}

.redirect-bar-close {
  position: absolute;
  left: 0.35rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, background 0.2s;
}

.redirect-bar-close:hover {
  color: #fff;
  background: rgba(255, 0, 157, 0.25);
}

.redirect-bar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.redirect-bar-logo {
  width: 26px;
  height: 26px;
}

.redirect-bar-brand-text {
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}

.redirect-bar-brand-text .rb-atom {
  color: #ffb6e6;
}

.redirect-bar-brand-text .rb-casino {
  color: #fff;
}

.redirect-bar-msg {
  flex: 1 1 200px;
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 245, 250, 0.92);
  line-height: 1.4;
}

.redirect-bar-msg strong {
  color: #fff;
}

.redirect-bar-timer {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 0, 157, 0.55);
  background: rgba(255, 0, 157, 0.12);
}

.redirect-bar-timer-icon {
  opacity: 0.9;
}

.redirect-count {
  color: #ff6ec7;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.redirect-bar-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff !important;
  border-radius: 999px;
  background: linear-gradient(105deg, #ff009d 0%, #ff4db8 40%, #c026d3 100%);
  box-shadow: 0 0 20px rgba(255, 0, 157, 0.45);
  transition: box-shadow 0.2s, transform 0.15s;
}

.redirect-bar-cta:hover {
  box-shadow: 0 0 28px rgba(255, 0, 157, 0.65);
}

.redirect-bar-cta:active {
  transform: scale(0.98);
}

/* —— Top bar —— */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 17, 26, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 1.25rem;
  max-width: 1600px;
  margin: 0 auto;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo span.atom {
  color: var(--text);
}

.logo span.casino {
  color: var(--cyan);
}

.search-fake {
  flex: 1;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
}

.search-fake svg {
  width: 18px;
  height: 18px;
  opacity: 0.6;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1.15rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn-magenta {
  background: var(--ref);
  color: #fff;
  box-shadow: var(--glow-magenta);
}

.btn-magenta:hover {
  box-shadow: 0 0 32px rgba(255, 0, 157, 0.5);
}

/* —— Shell —— */
.shell {
  display: flex;
  max-width: 1600px;
  margin: 0 auto;
  min-height: calc(100vh - 64px);
}

/* —— Sidebar —— */
.sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  padding: 1rem 0.85rem 2rem;
  border-right: 1px solid var(--border);
  background: linear-gradient(180deg, #12141f 0%, var(--bg) 40%);
  position: relative;
}

.sidebar-close {
  display: none;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
  z-index: 2;
}

.sidebar-close:hover {
  background: rgba(255, 255, 255, 0.14);
}

.sidebar-promo {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.btn-promo {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.btn-promo:hover {
  filter: brightness(1.08);
}

.promo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}

.promo-row button,
.promo-row a {
  padding: 0.45rem;
  font-size: 0.72rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  text-align: center;
}

.promo-row a:hover,
.promo-row button:hover {
  color: var(--text);
  border-color: rgba(0, 229, 255, 0.25);
}

.nav-side h3 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 1rem 0 0.5rem;
  padding-left: 0.5rem;
}

.nav-side ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-side a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.5rem;
  border-radius: 8px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
}

.nav-side a:hover,
.nav-side a.is-active {
  background: rgba(0, 229, 255, 0.08);
  color: var(--cyan);
}

.nav-side .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--magenta);
  opacity: 0.8;
}

.vip-card {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #1e1a2e, #121018);
  border: 1px solid rgba(255, 215, 120, 0.15);
  font-size: 0.8rem;
}

.vip-card strong {
  color: #fcd34d;
}

/* —— Main —— */
.main {
  flex: 1;
  min-width: 0;
  padding: 1.25rem 1.25rem 3rem;
}

.hero-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(125deg, #1a1035 0%, #0d1528 50%, #0a1628 100%);
  border: 1px solid var(--border);
  padding: 1.75rem 1.5rem;
  margin-bottom: 1.5rem;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(0, 229, 255, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(255, 0, 157, 0.08), transparent 50%);
  pointer-events: none;
}

.hero-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-kicker {
  font-size: 0.8rem;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.5rem;
}

.hero-banner h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.2;
  font-weight: 800;
}

.hero-banner h1 .accent {
  background: linear-gradient(90deg, #c084fc, var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-banner p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 560px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* —— Slots grid —— */
.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-title h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.section-title a {
  font-size: 0.82rem;
  color: var(--cyan);
}

.section-title a:hover {
  text-decoration: underline;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.65rem;
}

.slot-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}

.slot-card:hover {
  border-color: rgba(255, 0, 157, 0.35);
  transform: translateY(-2px);
}

.slot-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100%;
  color: inherit;
}

.slot-thumb {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0a0c14;
}

.slot-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slot-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.45rem 0.5rem 0.5rem;
  min-height: 0;
}

.slot-meta h3 {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slot-play {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0.42rem 0.35rem;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--ref);
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(255, 0, 157, 0.25);
}

.badge-drops {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 2;
  max-width: calc(100% - 12px);
  font-size: 0.48rem;
  font-weight: 800;
  line-height: 1.15;
  padding: 0.2rem 0.3rem;
  border-radius: 4px;
  background: linear-gradient(90deg, #f59e0b, #ea580c);
  color: #fff;
}

.slot-card-link {
  position: relative;
}

/* —— Bonuses —— */
.bonuses-block {
  margin-top: 2.5rem;
}

.bonuses-block > h2 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  font-weight: 700;
}

.bonuses-lead {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 720px;
}

.bonus-top {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: 1.25rem;
  align-items: stretch;
  margin-bottom: 1.25rem;
}

@media (max-width: 900px) {
  .bonus-top {
    grid-template-columns: 1fr;
  }
}

.bonus-visual-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.2s, transform 0.2s;
}

.bonus-visual-card:hover {
  border-color: rgba(255, 0, 157, 0.3);
  transform: translateY(-2px);
}

.bonus-visual-card img {
  width: 100%;
  min-height: 220px;
  height: clamp(220px, 28vw, 320px);
  object-fit: cover;
}

.bonus-visual-caption {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  background: linear-gradient(180deg, rgba(26, 29, 46, 0.95), var(--bg-card));
}

.welcome-cta {
  margin-top: 1rem;
  display: inline-flex !important;
}

.welcome-card {
  border-radius: var(--radius);
  padding: 1.25rem;
  background: linear-gradient(160deg, #1e1b4b, #0f172a);
  border: 1px solid var(--border);
}

.welcome-card--media {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.welcome-card-photo {
  height: 140px;
  flex-shrink: 0;
  overflow: hidden;
  background: #0a0c14;
}

.welcome-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.welcome-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.welcome-card .big {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
}

.welcome-card .pill-bonus {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 0.65rem;
  background: var(--magenta);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
}

.welcome-card p {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.bonus-cards-wide {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  min-width: 0;
}

.bonus-tile {
  position: relative;
  min-width: 0;
  border-radius: var(--radius);
  padding: 1.25rem;
  background: linear-gradient(180deg, #2d1f4a 0%, #1a1228 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 240px;
}

.bonus-tile--media {
  padding: 0;
  overflow: hidden;
  min-height: 300px;
  position: relative;
  align-items: stretch;
}

.bonus-tile--media .info-i {
  top: 0.55rem;
  right: 0.55rem;
  z-index: 3;
  background: rgba(10, 12, 20, 0.65);
}

.bonus-tile-photo {
  height: 120px;
  overflow: hidden;
  background: #0a0c14;
}

.bonus-tile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bonus-tile--media .label,
.bonus-tile--media .value,
.bonus-tile--media .bonus-desc {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
  max-width: calc(100% - 2.5rem);
  box-sizing: border-box;
}

.bonus-tile--media .label {
  margin-top: 1rem;
}

.bonus-tile--media .btn-magenta {
  margin-bottom: 1.25rem;
  margin-left: 1.25rem;
  margin-right: 1.25rem;
  width: calc(100% - 2.5rem);
  max-width: calc(100% - 2.5rem);
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  line-height: 1.25;
  padding-left: 0.65rem;
  padding-right: 0.65rem;
}

.bonus-desc {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  color: rgba(232, 230, 242, 0.65);
  line-height: 1.45;
}

.bonus-tile .label {
  align-self: flex-start;
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.bonus-tile .value {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 auto;
}

.bonus-tile .btn-magenta {
  margin-top: 1rem;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  line-height: 1.25;
  padding-left: 0.65rem;
  padding-right: 0.65rem;
}

.bonus-tile:not(.bonus-tile--media) .btn-magenta {
  width: 100%;
}

.info-i {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

/* —— SEO article —— */
.seo-article {
  margin-top: 2.75rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-panel);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
}

.seo-article h2 {
  color: var(--text);
  font-size: 1.05rem;
  margin: 0 0 1rem;
}

.seo-article p {
  margin: 0 0 1rem;
}

.seo-article p:last-child {
  margin-bottom: 0;
}

/* —— FAQ —— */
.faq-section {
  margin-top: 2.75rem;
  padding: 1.75rem 1.25rem 2rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #12141f 0%, var(--bg-panel) 100%);
  border: 1px solid var(--border);
}

.faq-section-head {
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.faq-section-head h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 800;
}

.faq-section-intro {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.faq-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1.5rem;
}

@media (max-width: 900px) {
  .faq-columns {
    grid-template-columns: 1fr;
  }
}

.faq-subtitle {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
  font-weight: 700;
}

.faq-col details {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.45rem;
  padding: 0.65rem 0.85rem;
  background: rgba(15, 17, 26, 0.6);
}

.faq-col summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.86rem;
  list-style: none;
}

.faq-col summary::-webkit-details-marker {
  display: none;
}

.faq-col details p {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.faq-cta {
  margin-top: 1.75rem;
  text-align: center;
}

/* —— Chat FAB —— */
.fab-support {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 90;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0284c7, #2563eb);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.45);
  border: none;
  cursor: pointer;
}

.fab-support svg {
  width: 24px;
  height: 24px;
}

/* —— Footer —— */
.site-footer {
  max-width: 1600px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

/* —— Responsive —— */
@media (max-width: 1200px) {
  .slots-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .search-fake {
    display: none;
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: flex;
  }

  .sidebar {
    position: fixed;
    left: 0;
    top: 56px;
    bottom: 0;
    z-index: 95;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
    box-shadow: 8px 0 32px rgba(0, 0, 0, 0.5);
  }

  body.nav-open .sidebar {
    transform: translateX(0);
  }

  .sidebar-close {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .shell {
    display: block;
  }

  .main {
    padding: 1rem;
  }

  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .topbar-inner {
    flex-wrap: wrap;
  }
}

@media (max-width: 380px) {
  .top-actions .btn {
    padding: 0.45rem 0.65rem;
    font-size: 0.78rem;
  }
}
