/* =========================================================
   Panda Casino — общие стили сайта
   Тёмная тема, зелёно-золотая палитра
   ========================================================= */

:root {
  --bg: #070b09;
  --bg-soft: #0c1310;
  --bg-elevated: #121b16;
  --bg-card: #16211b;
  --bg-card-hover: #1c2a22;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.12);

  --text: #eef4ef;
  --text-muted: #a9bdb1;
  --text-dim: #728579;

  --green-500: #17c964;
  --green-400: #3fe08a;
  --green-600: #0e9a4d;
  --green-700: #0a7a3c;
  --green-glow: rgba(23, 201, 100, 0.35);

  --gold-300: #ffe6a0;
  --gold-400: #f3cd63;
  --gold-500: #e4b73f;
  --gold-600: #c8952a;
  --gold-700: #9c721c;
  --gold-glow: rgba(228, 183, 63, 0.35);

  --red-500: #ef4d5e;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-glow-green: 0 0 0 1px rgba(23, 201, 100, 0.25), 0 8px 24px rgba(23, 201, 100, 0.18);
  --shadow-glow-gold: 0 0 0 1px rgba(228, 183, 63, 0.3), 0 8px 24px rgba(228, 183, 63, 0.2);

  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(ellipse 120% 60% at 50% -10%, rgba(23, 201, 100, 0.10), transparent 60%),
    radial-gradient(ellipse 90% 50% at 100% 0%, rgba(228, 183, 63, 0.08), transparent 55%),
    var(--bg);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: "Poppins", "Manrope", system-ui, sans-serif;
  line-height: 1.22;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4.4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p { margin: 0 0 14px; color: var(--text-muted); }

ul, ol {
  color: var(--text-muted);
  padding-left: 22px;
}
ul li, ol li { margin-bottom: 8px; }

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 64px 0;
}
.section--tight { padding: 40px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-400), var(--gold-400));
  border-radius: 2px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 36px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.accent { color: var(--green-400); }
.accent-gold { color: var(--gold-400); }

/* ============ Buttons ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500) 55%, var(--gold-700));
  color: #201406;
  box-shadow: var(--shadow-glow-gold);
}
.btn--gold:hover { filter: brightness(1.08); box-shadow: 0 0 0 1px rgba(228,183,63,.45), 0 12px 28px rgba(228,183,63,.3); }

.btn--green {
  background: linear-gradient(135deg, var(--green-400), var(--green-600) 60%, var(--green-700));
  color: #04150b;
  box-shadow: var(--shadow-glow-green);
}
.btn--green:hover { filter: brightness(1.08); box-shadow: 0 0 0 1px rgba(23,201,100,.45), 0 12px 28px rgba(23,201,100,.3); }

.btn--ghost {
  background: transparent;
  border: 1.5px solid var(--border-strong);
  color: var(--text);
}
.btn--ghost:hover { border-color: var(--green-400); color: var(--green-400); }

.btn--block { width: 100%; }
.btn--lg { padding: 16px 34px; font-size: 1.02rem; }
.btn--sm { padding: 9px 18px; font-size: 0.85rem; }

/* ============ Header ============ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(7, 11, 9, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img.brand-logo { height: 30px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 12px;
}
.main-nav a {
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--text-muted);
  transition: color 0.15s, background 0.15s;
}
.main-nav a:hover { color: var(--text); background: var(--bg-elevated); }
.main-nav a.active { color: var(--green-400); background: rgba(23,201,100,0.12); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  position: relative;
  transition: 0.2s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* ============ Winners ticker (шапка) ============ */

.ticker-bar {
  background: linear-gradient(90deg, rgba(23,201,100,0.10), rgba(228,183,63,0.08));
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
}
.ticker-bar__label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-400);
  background: var(--bg);
  height: 100%;
  border-right: 1px solid var(--border);
  white-space: nowrap;
  z-index: 2;
}
.ticker-bar__label .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-400);
  box-shadow: 0 0 8px var(--green-400);
  animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.ticker-bar__track-wrap {
  flex: 1;
  overflow: hidden;
  height: 100%;
  mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
}
.ticker-bar__track {
  display: flex;
  align-items: center;
  gap: 34px;
  white-space: nowrap;
  animation: ticker-scroll 32s linear infinite;
  padding-left: 20px;
}
.ticker-bar__track:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.ticker-item b { color: var(--text); font-weight: 700; }
.ticker-item .amt { color: var(--green-400); font-weight: 800; }

/* ============ Hero ============ */

.hero {
  position: relative;
  padding: 56px 0 40px;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 28px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: var(--radius-pill);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__art {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
.hero__art img {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 30px 45px rgba(0,0,0,0.55));
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero__art::before {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23,201,100,0.28), transparent 70%);
  top: 10%;
  z-index: -1;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 44px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
}
.stat-card .num {
  font-family: "Poppins", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-300), var(--green-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-card .label { font-size: 0.82rem; color: var(--text-dim); margin-top: 4px; }

/* ============ Cards & Grids ============ */

.grid {
  display: grid;
  gap: 20px;
}
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(23,201,100,0.35);
  box-shadow: var(--shadow-card);
}

.game-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.game-card:hover { transform: translateY(-5px); border-color: rgba(228,183,63,0.4); }
.game-card__thumb { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.game-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.game-card__hot {
  position: absolute; top: 8px; left: 8px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: #201406;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.game-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,10,7,0.92) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 14px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.game-card:hover .game-card__overlay { opacity: 1; }
.game-card__body { padding: 12px 14px 16px; }
.game-card__title { font-weight: 700; font-size: 0.92rem; margin-bottom: 2px; }
.game-card__provider { font-size: 0.76rem; color: var(--text-dim); }
.game-card__rtp {
  font-size: 0.72rem;
  color: var(--green-400);
  font-weight: 700;
  margin-top: 6px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.filter-chip {
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: 0.15s;
}
.filter-chip:hover { border-color: var(--green-400); color: var(--text); }
.filter-chip.active {
  background: linear-gradient(135deg, rgba(23,201,100,0.9), rgba(14,154,77,0.9));
  color: #04150b;
  border-color: transparent;
}

/* ============ Feature / bonus cards ============ */

.feature-card {
  padding: 26px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.feature-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(23,201,100,0.18), rgba(228,183,63,0.18));
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.bonus-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0a1410;
  min-height: 220px;
  display: grid;
  grid-template-rows: 1fr auto 1fr;
}
.bonus-card__top,
.bonus-card__bottom {
  display: flex;
  align-items: center;
  padding: 0 28px;
}
.bonus-card__media {
  position: relative;
  width: 100%;
}
.bonus-card__media img.bonus-card__bg {
  display: block;
  width: 100%;
  height: auto;
}
.bonus-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,10,7,0) 38%, rgba(5,10,7,0.45) 66%, rgba(5,10,7,0.65) 100%);
}
.bonus-card__tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(228,183,63,0.18);
  color: var(--gold-400);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.bonus-card__text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  text-align: right;
  padding: 8px 28px;
  max-width: 58%;
  margin-left: auto;
}
.bonus-card h3 { margin-bottom: 8px; }
.bonus-card p { margin-bottom: 0; font-size: 0.92rem; }
.bonus-card__cta { position: relative; }

/* ============ Winners widget (главная) ============ */

.winners-widget {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.winner-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  animation: winner-in 0.5s ease;
}
@keyframes winner-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.winner-row__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: #04150b;
  background: linear-gradient(135deg, var(--green-400), var(--gold-400));
}
.winner-row__main { flex: 1; min-width: 0; }
.winner-row__name { font-weight: 700; font-size: 0.94rem; }
.winner-row__game { font-size: 0.8rem; color: var(--text-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.winner-row__amount { text-align: right; flex-shrink: 0; }
.winner-row__amount .val { font-weight: 800; color: var(--green-400); font-size: 1.02rem; }
.winner-row__amount .time { font-size: 0.72rem; color: var(--text-dim); }

/* ============ FAQ accordion ============ */

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  overflow: hidden;
}
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
}
.faq-item__q .plus {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bg-elevated);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform 0.25s ease;
}
.faq-item__q .plus::before, .faq-item__q .plus::after {
  content: "";
  position: absolute;
  background: var(--green-400);
}
.faq-item__q .plus::before { width: 11px; height: 2px; }
.faq-item__q .plus::after { width: 2px; height: 11px; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
  padding: 0 22px;
}
.faq-item__a > div { padding-bottom: 20px; color: var(--text-muted); }
.faq-item.open .faq-item__a { max-height: 600px; }

/* ============ Steps / how-to ============ */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
}
.step .num {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold-400);
  margin-bottom: 10px;
  display: block;
}

/* ============ Table (RTP / limits) ============ */

.table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--border); }
table.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
table.data-table th, table.data-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); }
table.data-table th { background: var(--bg-elevated); color: var(--gold-400); font-weight: 700; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.04em; }
table.data-table tr:last-child td { border-bottom: none; }
table.data-table td { color: var(--text-muted); }

/* ============ CTA band ============ */

.cta-band {
  border-radius: var(--radius-lg);
  padding: 46px;
  background: linear-gradient(120deg, rgba(23,201,100,0.16), rgba(228,183,63,0.14));
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band__text { max-width: 560px; }

/* ============ SEO text block ============ */

.seo-text { max-width: 880px; }
.seo-text h2 { margin-top: 44px; }
.seo-text h3 { margin-top: 26px; color: var(--gold-300); }
.seo-text ul, .seo-text ol { margin-bottom: 18px; }

/* ============ Footer ============ */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 50px 0 26px;
  background: var(--bg-soft);
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 34px;
}
.footer-grid h4 { font-size: 0.9rem; color: var(--gold-400); margin-bottom: 14px; }
.footer-grid ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-grid ul a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.15s; }
.footer-grid ul a:hover { color: var(--green-400); }
.footer-providers { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.footer-providers span {
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  background: var(--bg-elevated);
  color: var(--text-dim);
  border: 1px solid var(--border);
}
.age-badge {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--red-500);
  color: var(--red-500);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.footer-disclaimer {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-dim);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ============ Responsive ============ */

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; margin-top: 0; }
  .hero__art img { max-width: 260px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .bonus-card__text { max-width: 72%; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn--ghost { display: none; }
  .grid--4, .grid--3, .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; text-align: center; }
  .ticker-bar__label span.txt { display: none; }
}

@media (max-width: 520px) {
  .grid--4, .grid--3 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .section { padding: 44px 0; }
  h1 { font-size: 1.8rem; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(4,7,5,0.7);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav__panel {
  position: absolute;
  top: 0; right: 0;
  width: min(320px, 84vw);
  height: 100%;
  background: var(--bg-elevated);
  border-left: 1px solid var(--border);
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-nav.open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__panel a {
  padding: 14px 6px;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  font-size: 1.05rem;
}
.mobile-nav__panel a.active { color: var(--green-400); }
.mobile-nav__close {
  align-self: flex-end;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  cursor: pointer;
  font-size: 1.1rem;
}
.mobile-nav__actions { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
