/* Spotlight — светлая и тёмная тема: белый/пурпурный/жёлтый (свет), жёлтый акцент (тёмная) */
:root,
[data-theme="light"] {
  --bg: #f6f7f9;
  --surface: #ffffff;
  --surface-2: #fafafa;
  --border: #e4e7ec;
  --border-strong: #d0d5dd;
  --text: #111827;
  --muted: #6b7280;
  --purple: #7c3aed;
  --purple-dark: #5b21b6;
  --purple-soft: #f3e8ff;
  --purple-border: #ddd6fe;
  --accent-2: #a855f7;
  --on-accent: #ffffff;
  --yellow: #eab308;
  --yellow-soft: #fef9c3;
  --yellow-dark: #a16207;
  --success: #16a34a;
  --danger: #dc2626;
  --nav-bg: rgba(255, 255, 255, 0.92);
  --overlay: rgba(17, 24, 39, 0.4);
  --toast-bg: #111827;
  --toast-text: #ffffff;
  --nav-count-bg: var(--yellow);
  --nav-count-text: #422006;
  --hero-bg:
    linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%),
    radial-gradient(ellipse 70% 60% at 80% 0%, rgba(124, 58, 237, 0.08), transparent),
    radial-gradient(ellipse 50% 40% at 10% 20%, rgba(234, 179, 8, 0.1), transparent);
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 1px 2px rgba(16, 24, 40, 0.06);
  --shadow-md: 0 4px 16px rgba(16, 24, 40, 0.08);
  --max: 1120px;
  --nav-h: 64px;
}

[data-theme="dark"] {
  --bg: #16181c;
  --surface: #1e2126;
  --surface-2: #27292e;
  --border: #2e3035;
  --border-strong: #3a3c42;
  --text: #f0f2f5;
  --muted: #9ca3af;
  --purple: #eab308;
  --purple-dark: #facc15;
  --purple-soft: rgba(234, 179, 8, 0.14);
  --purple-border: rgba(234, 179, 8, 0.38);
  --accent-2: #f59e0b;
  --on-accent: #1a1400;
  --yellow: #eab308;
  --yellow-soft: rgba(234, 179, 8, 0.18);
  --yellow-dark: #fde68a;
  --success: #4ade80;
  --danger: #f87171;
  --nav-bg: rgba(22, 24, 28, 0.92);
  --overlay: rgba(0, 0, 0, 0.55);
  --toast-bg: #27292e;
  --toast-text: #f0f2f5;
  --nav-count-bg: rgba(255, 255, 255, 0.2);
  --nav-count-text: #ffffff;
  --hero-bg:
    linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%),
    radial-gradient(ellipse 70% 60% at 80% 0%, rgba(234, 179, 8, 0.12), transparent),
    radial-gradient(ellipse 50% 40% at 10% 20%, rgba(234, 179, 8, 0.06), transparent);
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== Навигация ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 clamp(16px, 4vw, 32px);
  background: var(--nav-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--purple), var(--accent-2));
  display: grid;
  place-items: center;
  color: var(--on-accent);
  font-size: 14px;
  font-weight: 800;
}
.brand-tld { color: var(--purple); }
.nav-links {
  display: none;
  gap: 4px;
  margin-left: auto;
}
@media (min-width: 900px) {
  .nav-links { display: flex; }
}
.nav-links a {
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover {
  color: var(--text);
  background: var(--surface-2);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
@media (min-width: 900px) {
  .nav-actions { margin-left: 0; }
}
.ip-copy {
  display: none;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 8px;
  transition: border-color 0.15s;
}
@media (min-width: 640px) { .ip-copy { display: flex; } }
.ip-copy:hover { border-color: var(--purple-border); }
.ip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
}
.nav-btn {
  position: relative;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 8px;
  transition: border-color 0.15s, background 0.15s;
}
.nav-btn:hover { border-color: var(--purple-border); background: var(--purple-soft); }
.nav-btn-primary {
  background: var(--purple);
  color: var(--on-accent);
  border-color: var(--purple);
}
.nav-btn-primary:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
}
.nav-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  margin-left: 6px;
  border-radius: 999px;
  background: var(--nav-count-bg);
  color: var(--nav-count-text);
  font-size: 11px;
  font-weight: 700;
}
.nav-btn-primary .nav-count {
  background: rgba(255, 255, 255, 0.25);
  color: var(--on-accent);
}
[data-theme="dark"] .nav-btn-primary .nav-count {
  background: rgba(0, 0, 0, 0.25);
  color: var(--on-accent);
}

/* ===== Hero ===== */
.hero {
  padding: calc(var(--nav-h) + 48px) 16px 56px;
  border-bottom: 1px solid var(--border);
  background: var(--hero-bg);
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--yellow-soft);
  border: 1px solid var(--purple-border);
  color: var(--yellow-dark);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.grad {
  background: linear-gradient(90deg, var(--purple), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  max-width: 560px;
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 28px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--purple);
  color: var(--on-accent);
  border-color: var(--purple);
}
.btn-primary:hover { background: var(--purple-dark); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--purple-border); background: var(--purple-soft); }
.btn-block { width: 100%; }
.hero-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.soc {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.15s;
}
.soc:hover { border-color: var(--purple-border); }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--purple-dark);
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
}

/* ===== Секции ===== */
.section {
  padding: 56px 16px;
  max-width: var(--max);
  margin: 0 auto;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.section.inview { opacity: 1; transform: none; }
.section-head {
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.section.inview .section-head,
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--purple);
  margin-bottom: 8px;
}
.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.section-head p {
  color: var(--muted);
  max-width: 560px;
  font-size: 15px;
}
.grid {
  display: grid;
  gap: 16px;
}
.grid-2 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

/* ===== Карточки товаров ===== */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  opacity: 0;
  transform: translateY(10px);
}
.section.inview .card,
.card.revealed {
  opacity: 1;
  transform: none;
}
.card:hover {
  border-color: var(--purple-border);
  box-shadow: var(--shadow-md);
}
.ribbon {
  position: absolute;
  top: 12px;
  right: -28px;
  z-index: 2;
  transform: rotate(45deg);
  background: var(--yellow);
  color: #422006;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 4px 32px;
}
.card-inner {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}
.card-tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--purple-soft);
  color: var(--purple-dark);
  border: 1px solid var(--purple-border);
}
.card-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 4px;
}
.card-img, .item-thumb, .rc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-letter, .item-letter {
  font-size: 18px;
  font-weight: 800;
  color: var(--purple);
  letter-spacing: -0.02em;
}
.card h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.card .desc {
  font-size: 14px;
  color: var(--muted);
  flex: 1;
}
.card ul, .chances {
  list-style: none;
  font-size: 13px;
  color: var(--muted);
}
.card ul li, .chances li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}
.card ul li:last-child, .chances li:last-child { border-bottom: none; }
.list-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.card-dur {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.dur {
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  transition: all 0.15s;
}
.dur:hover { border-color: var(--purple-border); }
.dur.active {
  background: var(--purple-soft);
  border-color: var(--purple);
  color: var(--purple-dark);
}
.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.price .old {
  display: block;
  font-size: 12px;
  color: var(--muted);
  text-decoration: line-through;
}
.price .now {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}
.add-btn {
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  padding: 9px 14px;
  border-radius: 8px;
  border: 1px solid var(--purple);
  background: var(--purple);
  color: var(--on-accent);
  white-space: nowrap;
  transition: background 0.15s;
}
.add-btn:hover { background: var(--purple-dark); }

/* ===== Шаги ===== */
.steps { border-top: 1px solid var(--border); }
.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.section.inview .step-card { opacity: 1; transform: none; }
.step-n {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--yellow-soft);
  border: 1px solid var(--purple-border);
  color: var(--yellow-dark);
  font-weight: 800;
  font-size: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
.step-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.step-card p {
  font-size: 14px;
  color: var(--muted);
}

/* ===== Footer ===== */
.footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 16px 56px;
  border-top: 1px solid var(--border);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  margin-bottom: 12px;
}
.footer-note {
  font-size: 13px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}
.footer-links a:hover { color: var(--purple); }

/* ===== Боковая панель (корзина / инвентарь) ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: var(--overlay);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 100vw);
  height: 100%;
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 70;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -8px 0 32px rgba(16, 24, 40, 0.1);
}
.cart.open { transform: none; }
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-size: 18px; font-weight: 700; }
.cart-close {
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 18px;
  line-height: 1;
  color: var(--muted);
  transition: background 0.15s;
}
.cart-close:hover { background: var(--surface-2); }
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}
.cart-empty {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  padding: 32px 16px;
}
.cart-footer {
  padding: 16px 20px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-footer label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}
.cart-footer input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font: inherit;
  font-size: 14px;
  background: var(--surface);
  transition: border-color 0.15s;
}
.cart-footer input:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-soft);
}
.promo-row { display: flex; gap: 8px; }
.promo-row input { flex: 1; }
.promo-row button {
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  font-weight: 600;
  font-size: 13px;
}
.promo-msg { font-size: 13px; margin-top: 6px; }
.promo-msg.ok { color: var(--success); }
.promo-msg.err { color: var(--danger); }
.pay-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}
.cart-discount {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--success);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}
.cart-total b { font-size: 20px; font-weight: 800; }
.inv-actions { display: flex; gap: 8px; }

/* Позиция в корзине */
.ci {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  background: var(--surface-2);
}
.ci-ic {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
.ci-body { flex: 1; min-width: 0; }
.ci-name {
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ci-price { font-size: 13px; color: var(--muted); }
.ci-qty {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ci-qty button {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}
.ci-qty span {
  min-width: 20px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}

/* ===== Рулетка ===== */
.roul-overlay {
  position: fixed;
  inset: 0;
  background: var(--overlay);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.roul-overlay.open { opacity: 1; pointer-events: auto; }
.roul {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: min(640px, calc(100vw - 32px));
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  box-shadow: var(--shadow-md);
}
.roul.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.roul-close {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 18px;
  color: var(--muted);
}
.roul-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-right: 40px;
}
.roul-window {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-2);
  margin-bottom: 16px;
}
.roul-pointer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  margin-left: -1px;
  background: var(--purple);
  z-index: 2;
  pointer-events: none;
}
.roul-track {
  display: flex;
  gap: 12px;
  padding: 16px 0;
  will-change: transform;
}
.roul-cell {
  flex: 0 0 120px;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
}
.rc-ic {
  width: 48px;
  height: 48px;
  margin: 0 auto 8px;
  border-radius: 10px;
  background: var(--purple-soft);
  border: 1px solid var(--purple-border);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.rc-name { font-size: 12px; font-weight: 700; margin-bottom: 4px; }
.rc-dur { font-size: 11px; color: var(--muted); }
.roul-result {
  text-align: center;
  font-size: 15px;
  margin-bottom: 16px;
  color: var(--muted);
}
.roul-result.win { color: var(--purple-dark); font-weight: 600; }
.roul .btn { display: block; width: 100%; }

body.spinning .section { pointer-events: none; }

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--toast-bg);
  color: var(--toast-text);
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s, opacity 0.3s;
  max-width: min(90vw, 400px);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Reveal animation stagger */
.section.inview .card:nth-child(1) { transition-delay: 0.05s; }
.section.inview .card:nth-child(2) { transition-delay: 0.1s; }
.section.inview .card:nth-child(3) { transition-delay: 0.15s; }
.section.inview .card:nth-child(4) { transition-delay: 0.2s; }
.card { transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.2s, box-shadow 0.2s; }

.cart-count.bump { animation: bump 0.35s ease; }
@keyframes bump {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}
