/* Lüks Casino — sportsbook-style 3-column layout, matching the real
   platform structure shared with 1King (same white-label bundle):
   topbar + left sidebar + main + betslip. */

:root {
  --sh-bg: #2D1329;
  --sh-panel: #580151;
  --sh-gold: #F4CF5F;
  --sh-accent: #39DFD4;
  --sh-text: #F5F5F4;
  --sh-text-dim: #C9AFCB;
  --sh-border: #3D1E3B;
}

* { box-sizing: border-box; }

html, body { max-width: 100%; overflow-x: hidden; }

body.shop-body {
  background: var(--sh-bg);
  color: var(--sh-text);
  font-family: -apple-system, "Segoe UI", Roboto, Ubuntu, sans-serif;
  margin: 0;
}

img { max-width: 100%; height: auto; }

/* ---- Topbar ---- */
.shop-topbar {
  background: var(--sh-panel);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
  border-bottom: 1px solid var(--sh-border);
  flex-wrap: wrap;
}
.shop-topbar__left { display: flex; align-items: center; gap: 20px; }
.shop-topbar__burger { background: none; border: none; color: var(--sh-text); cursor: pointer; }
.shop-topbar__logo img { height: 24px; display: block; }
.shop-topbar__nav { display: flex; gap: 22px; flex-wrap: wrap; }
.shop-topbar__nav a {
  color: var(--sh-text-dim);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}
.shop-topbar__nav a:hover { color: var(--sh-text); }
.shop-topbar__right { display: flex; align-items: center; gap: 12px; }
.shop-topbar__lang { display: flex; align-items: center; gap: 6px; color: var(--sh-text-dim); font-size: 13px; }
.shop-btn { border-radius: 8px; padding: 10px 18px; font-size: 14px; font-weight: 600; text-decoration: none; border: none; cursor: pointer; }
.shop-btn--ghost { background: transparent; border: 1px solid var(--sh-border); color: var(--sh-text); }
.shop-btn--primary { background: var(--sh-gold); color: #2D1329; }

/* ---- App shell (3 columns) ---- */
.shop-shell {
  display: grid;
  grid-template-columns: 300px 1fr 320px;
  gap: 0;
  align-items: start;
}
@media (max-width: 1200px) {
  .shop-shell { grid-template-columns: 260px 1fr; }
  .shop-betslip { display: none; }
}
@media (max-width: 860px) {
  .shop-shell { grid-template-columns: 1fr; }
  .shop-sidebar { display: none; }
}

/* ---- Left sidebar ---- */
.shop-sidebar {
  background: var(--sh-panel);
  min-height: 100%;
  padding: 12px 0;
  border-right: 1px solid var(--sh-border);
}
.shop-sidebar__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  color: var(--sh-text);
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid var(--sh-border);
}
.shop-sidebar__item svg { flex-shrink: 0; opacity: 0.85; }
.shop-sidebar__section-title {
  padding: 16px 20px 8px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--sh-text-dim);
  text-transform: uppercase;
}
.shop-sidebar__league {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: var(--sh-text);
  text-decoration: none;
  font-size: 14px;
}
.shop-sidebar__league span.flag { width: 20px; height: 14px; border-radius: 2px; background: var(--sh-accent); display: inline-block; }

/* ---- Main column ---- */
.shop-main { padding: 20px; min-width: 0; }

.shop-hero {
  background: linear-gradient(135deg, #3D1E3B, var(--sh-panel) 70%);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.shop-hero::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(57,223,212,0.2), transparent 70%);
}
.shop-hero__title { font-size: 32px; font-weight: 800; color: #fff; margin: 0 0 10px; max-width: 60%; }
.shop-hero__text { font-size: 16px; color: rgba(255,255,255,0.85); margin: 0 0 20px; max-width: 55%; }
.shop-hero__cta { align-self: flex-start; }

.shop-icon-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 8px 0 20px;
}
.shop-icon-row__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 76px;
  text-decoration: none;
  color: var(--sh-text);
}
.shop-icon-row__circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--sh-panel);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--sh-border);
}
.shop-icon-row__label { font-size: 12px; text-align: center; color: var(--sh-text-dim); }

.shop-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 12px;
}
.shop-live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sh-accent); display: inline-block; }

.shop-winners-row { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 10px; }
.shop-winner-card {
  background: var(--sh-panel);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 240px;
  border: 1px solid var(--sh-border);
}
.shop-winner-card img { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; }
.shop-winner-card .name { font-size: 13px; }
.shop-winner-card .id { font-size: 11px; color: var(--sh-text-dim); }
.shop-winner-card .amount { font-size: 14px; font-weight: 700; color: var(--sh-accent); }

.shop-slots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 12px; }
.shop-slots-grid a { display: block; border-radius: 10px; overflow: hidden; background: var(--sh-panel); text-decoration: none; }
.shop-slots-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.shop-slots-grid .label { font-size: 12px; padding: 6px 8px; color: var(--sh-text); }

/* ---- Right sidebar / betslip ---- */
.shop-betslip {
  background: var(--sh-panel);
  min-height: 100%;
  padding: 20px;
  border-left: 1px solid var(--sh-border);
}
.shop-betslip__title { font-size: 16px; font-weight: 700; margin: 0 0 20px; }
.shop-betslip__empty { text-align: center; padding: 40px 10px; color: var(--sh-text-dim); }
.shop-betslip__empty svg { margin-bottom: 16px; opacity: 0.6; }

/* ---- Content article (SEO body) ---- */
.shop-article {
  background: var(--sh-panel);
  border-radius: 16px;
  padding: 28px;
  margin-top: 24px;
}
.shop-article h1 { font-size: 26px; margin-top: 0; }
.shop-article h2 { font-size: 20px; margin-top: 28px; }
.shop-article h3 { font-size: 16px; color: var(--sh-text-dim); }
.shop-article p, .shop-article li { color: #EADDEA; line-height: 1.65; }
.shop-article table { border-collapse: collapse; margin: 16px 0; min-width: 100%; }
.shop-article th, .shop-article td { border: 1px solid var(--sh-border); padding: 8px 12px; text-align: left; font-size: 14px; white-space: nowrap; }
.shop-article th { background: rgba(255,255,255,0.04); }
.shop-article blockquote { border-left: 3px solid var(--sh-gold); padding: 12px 16px; color: var(--sh-text-dim); font-size: 13px; margin: 20px 0; }
.shop-article a { color: var(--sh-gold); }
.shop-article__table-wrap { overflow-x: auto; margin: 16px 0; }
.shop-article__table-wrap table { margin: 0; }

/* ---- Mobile ---- */
@media (max-width: 600px) {
  .shop-topbar { padding: 12px 14px; gap: 12px; }
  .shop-topbar__nav { display: none; }
  .shop-topbar__lang span { display: none; }
  .shop-main { padding: 12px; }
  .shop-hero { padding: 24px 18px; min-height: 0; }
  .shop-hero__title { font-size: 22px; max-width: 100%; }
  .shop-hero__text { font-size: 14px; max-width: 100%; }
  .shop-article { padding: 16px; }
  .shop-article h1 { font-size: 21px; }
  .shop-article h2 { font-size: 17px; }
  .shop-icon-row__item { min-width: 64px; }
  .shop-icon-row__circle { width: 46px; height: 46px; }
  .shop-winner-card { min-width: 200px; }
  .shop-footer { padding: 20px 14px; }
}

/* ---- Footer ---- */
.shop-footer { background: var(--sh-panel); border-top: 1px solid var(--sh-border); padding: 32px 24px; margin-top: 24px; }
.shop-footer__grid { display: flex; flex-wrap: wrap; gap: 32px; }
.shop-footer__col span { display: block; font-size: 12px; letter-spacing: 0.06em; color: var(--sh-text-dim); margin-bottom: 10px; }
.shop-footer__col ul { list-style: none; margin: 0; padding: 0; }
.shop-footer__col li { margin-bottom: 8px; }
.shop-footer__col a { color: var(--sh-text); text-decoration: none; font-size: 13px; }
.shop-footer__brand p { color: var(--sh-text-dim); font-size: 12px; max-width: 320px; }
.shop-footer__bottom { display: flex; align-items: center; gap: 12px; margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--sh-border); flex-wrap: wrap; }
.shop-footer__age { background: var(--sh-gold); color: #2D1329; font-weight: 800; border-radius: 6px; padding: 4px 8px; font-size: 12px; }
.shop-footer__note { color: var(--sh-text-dim); font-size: 12px; flex: 1; min-width: 240px; }
.shop-footer__copy { color: var(--sh-text-dim); font-size: 12px; }
