*,
*::before,
*::after {
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.45);
  border-radius: 10px;
  border: 3px solid transparent;
  background-clip: padding-box;
  transition: background 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.60);
  background-clip: padding-box;
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.55) rgba(0, 0, 0, 0.10);
}

html {
  scrollbar-gutter: stable;
  font-size: 100%;
}

:root {
  
  --bg: #f8fafc;
  --bg-soft: #ffffff;
  --bg0: #f8fafc;
  --bg1: #ffffff;
  --bg2: #f1f5f9;

  
  --panel: rgba(255, 255, 255, 0.95);
  --panel2: rgba(249, 250, 251, 0.98);
  --card: #ffffff;
  --card-border: #e2e8f0;

  
  --stroke: rgba(0, 0, 0, 0.08);
  --stroke2: rgba(0, 0, 0, 0.12);
  --border: #e2e8f0;

  
  --text: #1e293b;
  --text-dim: #475569;
  --muted: #64748b;

  
  --brand: #2563eb;
  --brand2: #3b82f6;
  --brand3: #60a5fa;
  --accent: #4f46e5;

  
  --ok: #22c55e;
  --success: #22c55e;
  --warn: #f59e0b;
  --danger: #ef4444;

  
  --radius: 18px;
  --radius-sm: 14px;
  --radius-xs: 12px;

  --shadow: 0 8px 24px rgba(2, 6, 23, 0.08);
  --shadow-soft: 0 4px 14px rgba(2, 6, 23, 0.06);

  
  --container: 1160px;

  
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --t: 180ms var(--ease);

  
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;

  --fs-base: clamp(15px, 1.25vw + 10px, 18px);
  --fs-h1: clamp(2rem, 4vw + 1rem, 3.2rem);
  --fs-h2: clamp(1.5rem, 2.4vw + 1rem, 2.6rem);
  --fs-h3: clamp(1.2rem, 1.4vw + 1rem, 1.8rem);
}

body.dark {
  
  --bg: #0f172a;
  --bg-soft: #0b1220;
  --bg0: #04050a;
  --bg1: #070b14;
  --bg2: #0a1222;

  
  --panel: rgba(10, 16, 28, 0.62);
  --panel2: rgba(8, 12, 22, 0.82);
  --card: #121826;
  --card-border: rgba(255, 255, 255, 0.08);

  
  --stroke: rgba(255, 255, 255, 0.10);
  --stroke2: rgba(255, 255, 255, 0.16);
  --border: #1e293b;

  
  --text: #eaf2ff;
  --text-dim: #b6c2d9;
  --muted: rgba(234, 242, 255, 0.72);

  
  --brand: #60a5fa;
  --brand2: #3b82f6;
  --brand3: #2ee59d;
  --accent: #6366f1;

  
  --ok: #2ee59d;
  --success: #22c55e;
  --warn: #ffcf5a;
  --danger: #f87171;

  
  --shadow: 0 18px 70px rgba(0, 0, 0, 0.50);
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.35);
}
html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  background-color: var(--bg);
  line-height: 1.6;
  font-size: var(--fs-base);
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}


body.dark {
  background: radial-gradient(900px 520px at 18% 12%, rgba(69, 214, 255, 0.18), transparent 60%),
    radial-gradient(900px 520px at 82% 18%, rgba(139, 92, 246, 0.16), transparent 62%),
    radial-gradient(820px 520px at 50% 120%, rgba(46, 229, 157, 0.08), transparent 58%),
    linear-gradient(180deg, var(--bg2), var(--bg1) 40%, var(--bg0));
}


body.dark::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.18;
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 22px 22px;
  background-position: 10px 10px;
  mask-image: radial-gradient(900px 520px at 50% 20%, #000 40%, transparent 70%);
}

::selection {
  background: rgba(69, 214, 255, 0.22);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--brand);
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px;
  width: 100%;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 14px 22px;
  background: color-mix(in oklab, var(--bg-soft) 92%, transparent);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.3s ease, border-color 0.3s ease;
}

body.dark .topbar {
  background: rgba(6, 9, 16, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

.topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(69, 214, 255, 0.55),
      rgba(139, 92, 246, 0.45),
      transparent);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

body.dark .topbar::after {
  opacity: 0.55;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.2px;
  color: var(--text);
}

.logo {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: radial-gradient(circle at 28% 30%, rgba(255, 255, 255, 0.55), transparent 42%),
    linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 10px 26px rgba(69, 214, 255, 0.18),
    0 10px 26px rgba(139, 92, 246, 0.12);
  position: relative;
  overflow: hidden;
}

.logo::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(420px 140px at 30% 0%, rgba(255, 255, 255, 0.16), transparent 55%);
  opacity: 0.9;
}

.badge {
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--text);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  transition: background 0.3s ease, border-color 0.3s ease;
}

body.dark .badge {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));
}


.userbox {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  color: var(--muted);
  font-size: 14px;
}

.userbox b {
  color: var(--text);
}

.userbox button {
  appearance: none;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  color: var(--text);
  border-radius: 999px;
  padding: 9px 12px;
  cursor: pointer;
  transition: transform var(--t), border-color var(--t), background var(--t), box-shadow var(--t);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.userbox button:hover {
  border-color: rgba(69, 214, 255, 0.40);
  transform: translateY(-1px);
}

.userbox button:active {
  transform: translateY(0);
}

.userbox button:focus-visible {
  outline: none;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.20),
    0 0 0 3px rgba(69, 214, 255, 0.22);
}

body.dark .userbox button {
  border: 1px solid rgba(255, 255, 255, 0.14);
}


.hero {
  padding: 30px 0 14px;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: 42px;
  line-height: 1.04;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--text), var(--brand), var(--brand2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.dark .hero h1 {
  background: linear-gradient(90deg, rgba(234, 242, 255, 0.96), rgba(69, 214, 255, 0.95), rgba(139, 92, 246, 0.92));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  margin: 0;
  color: var(--muted);
  max-width: 72ch;
}


.panel {
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  background: var(--card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

body.dark .panel {
  border: 1px solid transparent;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.03)) padding-box,
    linear-gradient(135deg, rgba(69, 214, 255, 0.42), rgba(139, 92, 246, 0.32), rgba(46, 229, 157, 0.20)) border-box;
}

body.dark .panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(520px 180px at 18% 0%, rgba(69, 214, 255, 0.14), transparent 62%),
    radial-gradient(520px 180px at 82% 0%, rgba(139, 92, 246, 0.12), transparent 62%);
  opacity: 0.9;
  mix-blend-mode: screen;
}


.controls {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0;
  flex-wrap: wrap;
}

.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  color: var(--text-dim);
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
  user-select: none;
  transition: transform var(--t), border-color var(--t), background var(--t), color var(--t);
}

.chip:hover {
  border-color: var(--brand);
  transform: translateY(-1px);
  color: var(--text);
}

.chip.active {
  color: var(--text);
  border-color: var(--brand);
  background: linear-gradient(135deg, rgba(69, 214, 255, 0.18), rgba(139, 92, 246, 0.10));
}

body.dark .chip {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  color: rgba(234, 242, 255, 0.70);
}

body.dark .chip:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

body.dark .chip.active {
  color: rgba(234, 242, 255, 0.96);
  border-color: rgba(69, 214, 255, 0.45);
}


.search {
  min-width: 240px;
  flex: 1;
  max-width: 380px;
}

.search input {
  width: 100%;
  padding: 12px 12px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--text);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}

.search input::placeholder {
  color: var(--muted);
}

.search input:focus-visible {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--brand) 25%, transparent);
}

body.dark .search input {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 10, 18, 0.58);
}

body.dark .search input::placeholder {
  color: rgba(234, 242, 255, 0.52);
}

body.dark .search input:focus-visible {
  border-color: rgba(69, 214, 255, 0.50);
  box-shadow: 0 0 0 3px rgba(69, 214, 255, 0.18);
  background: rgba(6, 10, 18, 0.68);
}


.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 980px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 36px;
  }
}


.card {
  padding: 16px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  border: 1px solid var(--card-border);
  background: var(--card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.card:not(.panel) {
  border: 1px solid var(--card-border);
  background: var(--card);
}

body.dark .card:not(.panel) {
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(10, 16, 28, 0.58);
}

.card::after {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background: radial-gradient(520px 180px at 20% 0%, rgba(69, 214, 255, 0.16), transparent 65%),
    radial-gradient(520px 180px at 80% 0%, rgba(139, 92, 246, 0.12), transparent 65%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.dark .card::after {
  opacity: 0.85;
}

.card > * {
  position: relative;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: color-mix(in oklab, var(--brand) 25%, transparent);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--text);
}

.card p {
  margin: 0 0 12px;
  color: var(--text-dim);
  font-size: 14px;
  min-height: 38px;
}

.card .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.price {
  font-weight: 900;
  letter-spacing: 0.2px;
  color: var(--text);
}

.pill {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--text-dim);
}

body.dark .pill {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 10, 18, 0.46);
  color: rgba(234, 242, 255, 0.72);
}

.card a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--brand);
  background: linear-gradient(135deg, rgba(69, 214, 255, 0.18), rgba(139, 92, 246, 0.10));
  font-weight: 900;
  letter-spacing: 0.2px;
  color: var(--text);
  transition: transform var(--t), border-color var(--t), box-shadow var(--t), filter var(--t);
}

.card a.btn:hover {
  border-color: var(--brand2);
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  filter: brightness(1.03);
}

.card a.btn:active {
  transform: translateY(0);
}

.card a.btn:focus-visible {
  outline: none;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25),
    0 0 0 3px rgba(69, 214, 255, 0.22);
}

body.dark .card a.btn {
  border: 1px solid rgba(69, 214, 255, 0.40);
}

body.dark .card a.btn:hover {
  border-color: rgba(69, 214, 255, 0.60);
}

.footer {
  padding: 26px 0 40px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.product {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  margin-top: 18px;
}

@media (max-width: 900px) {
  .product {
    grid-template-columns: 1fr;
  }
}

.product .left {
  padding: 18px;
}

.product .right {
  padding: 18px;
}

.kicker {
  color: var(--brand);
  font-weight: 900;
  letter-spacing: 0.22px;
  font-size: 13px;
  text-transform: uppercase;
}

.product h2 {
  margin: 10px 0 10px;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--text-dim);
}

.list li {
  margin: 8px 0;
}

.buybtn {
  width: 100%;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid var(--brand);
  background: linear-gradient(135deg, rgba(69, 214, 255, 0.22), rgba(139, 92, 246, 0.14));
  color: var(--text);
  font-weight: 950;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t), filter var(--t);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.25);
}

.buybtn:hover {
  border-color: var(--brand2);
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.buybtn:active {
  transform: translateY(0);
}

.buybtn:focus-visible {
  outline: none;
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.25),
    0 0 0 3px rgba(69, 214, 255, 0.22);
}

body.dark .buybtn {
  border: 1px solid rgba(69, 214, 255, 0.45);
}

body.dark .buybtn:hover {
  border-color: rgba(69, 214, 255, 0.70);
}

.small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.blur {
  filter: blur(10px);
  pointer-events: none;
  user-select: none;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 50;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.modal .box {
  width: min(520px, 100%);
  border-radius: 22px;
  padding: 18px;
  border: 1px solid var(--card-border);
  background: var(--card);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

body.dark .modal .box {
  border: 1px solid transparent;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.03)) padding-box,
    linear-gradient(135deg, rgba(69, 214, 255, 0.40), rgba(139, 92, 246, 0.30), rgba(46, 229, 157, 0.18)) border-box;
}

body.dark .modal .box::before {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background: radial-gradient(620px 220px at 22% 0%, rgba(69, 214, 255, 0.16), transparent 62%),
    radial-gradient(620px 220px at 78% 0%, rgba(139, 92, 246, 0.12), transparent 62%);
  opacity: 0.85;
}

.modal .box > * {
  position: relative;
}

.modal .box h2 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--text);
}

.modal .box p {
  margin: 0 0 14px;
  color: var(--text-dim);
}

.modal input {
  width: 100%;
  padding: 14px 12px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--text);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}

.modal input::placeholder {
  color: var(--muted);
}

.modal input:focus-visible {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--brand) 25%, transparent);
}

body.dark .modal input {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 10, 18, 0.60);
}

body.dark .modal input::placeholder {
  color: rgba(234, 242, 255, 0.52);
}

body.dark .modal input:focus-visible {
  border-color: rgba(69, 214, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(69, 214, 255, 0.18);
  background: rgba(6, 10, 18, 0.70);
}

.modal .row {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.modal .row button {
  flex: 1;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.15px;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t), filter var(--t);
}

.modal .row button:hover {
  border-color: var(--brand);
  transform: translateY(-1px);
}

.modal .row button:active {
  transform: translateY(0);
}

.modal .row button.primary {
  border-color: var(--brand);
  background: linear-gradient(135deg, rgba(69, 214, 255, 0.18), rgba(139, 92, 246, 0.10));
}

.modal .row button.primary:hover {
  border-color: var(--brand2);
  filter: brightness(1.03);
}

.modal .row button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(69, 214, 255, 0.20);
}

body.dark .modal .row button {
  border: 1px solid rgba(255, 255, 255, 0.14);
}

body.dark .modal .row button.primary {
  border-color: rgba(69, 214, 255, 0.45);
}

body.dark .modal .row button.primary:hover {
  border-color: rgba(69, 214, 255, 0.65);
}


.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: var(--card);
  border: 1px solid var(--card-border);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  display: none;
  z-index: 60;
  max-width: min(680px, 92vw);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.toast.show {
  display: block;
  animation: pop 0.18s var(--ease) both;
}

body.dark .toast {
  background: rgba(6, 10, 18, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

@keyframes pop {
  from {
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
  }

  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}


@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}


.lead {
  color: var(--text-dim);
}

.shadow-soft {
  box-shadow: var(--shadow);
}

.btn-gradient {
  background: linear-gradient(90deg, var(--accent), var(--brand2));
  color: #fff;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  border-radius: 50px;
  border: none;
  transition: 0.3s;
  cursor: pointer;
  font-weight: 600;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.footer{
  background: #fff;
  padding: 80px 10%;
  text-align:center; color: var(--text);
  border-top:1px solid var(--border); border-bottom:1px solid var(--border)
}
.footer-content{ max-width:1200px; margin:0 auto; display:flex; flex-direction:column; align-items:center; gap:28px }
.socials{ display:flex; gap:24px }
.social-link{ font-size:1.8rem; color: var(--muted); transition:.3s }
.social-link:hover{ transform: translateY(-4px); color: var(--brand) }
