/* ================================================================
   guanwang Official Website - Tech Dark Theme
   ================================================================ */

:root {
  --bg-primary: #060b18;
  --bg-secondary: #0d1426;
  --bg-card: rgba(13, 20, 40, 0.85);
  --bg-card-hover: rgba(20, 30, 60, 0.9);
  --border: rgba(109, 40, 217, 0.25);
  --border-bright: rgba(109, 40, 217, 0.6);
  --primary: #6d28d9;
  --primary-light: #7c3aed;
  --primary-glow: rgba(109, 40, 217, 0.4);
  --secondary: #0ea5e9;
  --secondary-glow: rgba(14, 165, 233, 0.4);
  --accent: #10b981;
  --accent-glow: rgba(16, 185, 129, 0.4);
  --warn: #f59e0b;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(109, 40, 217, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Background Grid ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(109, 40, 217, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 40, 217, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(6, 11, 24, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 0 20px var(--primary-glow);
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, #a78bfa, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  padding: 8px 18px;
  border-radius: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text);
  background: rgba(109, 40, 217, 0.15);
}

.nav-links a.active {
  color: #a78bfa;
  border: 1px solid rgba(167, 139, 250, 0.3);
}

/* ── Hero / Banner ── */
.hero { padding-top: 80px; }

.banner-section {
  position: relative;
  overflow: hidden;
  height: 400px;
  border-radius: 0;
}

.banner-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  cursor: pointer;
  text-decoration: none;
}

.banner-slide.active { opacity: 1; }

.banner-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.banner-default {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.banner-default::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d1426 0%, #1a0a3d 50%, #0a2040 100%);
}

.banner-content {
  position: relative;
  z-index: 1;
  padding: 40px;
}

.banner-title {
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, #c084fc, #38bdf8, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1.2;
}

.banner-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 500px;
}

.banner-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.banner-orb-1 {
  width: 300px; height: 300px;
  background: rgba(109, 40, 217, 0.3);
  top: -100px; right: -50px;
}

.banner-orb-2 {
  width: 200px; height: 200px;
  background: rgba(14, 165, 233, 0.25);
  bottom: -50px; left: 10%;
}

.banner-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.banner-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.banner-dot.active {
  background: var(--primary-light);
  box-shadow: 0 0 10px var(--primary-glow);
  width: 24px;
  border-radius: 4px;
}

/* ── Sections ── */
.section { padding: 80px 0; }

.section-header { text-align: center; margin-bottom: 56px; }

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(109, 40, 217, 0.15);
  border: 1px solid rgba(109, 40, 217, 0.3);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #a78bfa;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text), #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Download Cards ── */
.download-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.download-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.download-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(109, 40, 217, 0.05));
  opacity: 0;
  transition: opacity 0.3s;
}

.download-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow), 0 0 40px var(--primary-glow);
}

.download-card:hover::before { opacity: 1; }

.platform-icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 36px;
  position: relative;
}

.platform-icon.windows { background: linear-gradient(135deg, #0078d4, #00bcf2); box-shadow: 0 0 30px rgba(0,120,212,0.4); }
.platform-icon.mac { background: linear-gradient(135deg, #555, #aaa); box-shadow: 0 0 30px rgba(150,150,150,0.3); }
.platform-icon.android { background: linear-gradient(135deg, #3ddc84, #00c853); box-shadow: 0 0 30px rgba(61,220,132,0.4); }
.platform-icon.ios { background: linear-gradient(135deg, #555, #222); box-shadow: 0 0 30px rgba(100,100,100,0.3); }

.platform-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.platform-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.platform-version {
  font-size: 11px;
  color: var(--accent);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  width: 100%;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--primary-glow);
  filter: brightness(1.1);
}

/* ── Lottery Section ── */
.lottery-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.tab-btn {
  padding: 12px 32px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.tab-btn:hover:not(.active) {
  border-color: var(--border-bright);
  color: var(--text);
}

/* ── Wheel Container ── */
.lottery-panel {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

.wheel-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.wheel-container {
  position: relative;
  display: inline-block;
}

.wheel-canvas {
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(109, 40, 217, 0.3), 0 0 120px rgba(109, 40, 217, 0.1);
  display: block;
}

.wheel-pointer {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 28px solid #f59e0b;
  filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.8));
  z-index: 10;
}

.btn-spin {
  padding: 16px 60px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  border: none;
  border-radius: 50px;
  color: white;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
  letter-spacing: 1px;
}

.btn-spin:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

.btn-spin:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ── Lottery Info Panel ── */
.lottery-info-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(10px);
}

.info-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticket-display {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(249,115,22,0.1));
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 12px;
  margin-bottom: 12px;
}

.ticket-icon { font-size: 36px; }

.ticket-count {
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.ticket-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── Checkin Button ── */
.btn-checkin {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, var(--accent), #059669);
  color: white;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-checkin:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--accent-glow);
}

.btn-checkin.checked {
  background: rgba(16,185,129,0.15);
  color: var(--accent);
  border: 1px solid rgba(16,185,129,0.3);
  cursor: default;
  box-shadow: none;
}

.btn-checkin:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.consecutive-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 8px;
  color: var(--warn);
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
}

/* ── Prize List ── */
.prize-list { display: flex; flex-direction: column; gap: 8px; }

.prize-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
}

.prize-color-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.prize-item-name { flex: 1; font-size: 13px; font-weight: 500; }

.prize-item-prob {
  font-size: 12px;
  color: var(--text-muted);
}

.prize-item-stock {
  font-size: 12px;
  color: var(--accent);
  background: rgba(16,185,129,0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

/* ── Invite Section ── */
.invite-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.invite-code-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.invite-code-display {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 8px;
  background: linear-gradient(135deg, #a78bfa, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 24px 0;
  font-family: 'Courier New', monospace;
}

.invite-link-box {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
}

.invite-link-text {
  flex: 1;
  font-size: 13px;
  color: var(--text-muted);
  word-break: break-all;
}

.btn-copy {
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--border-bright);
  background: transparent;
  color: var(--primary-light);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-copy:hover {
  background: rgba(109,40,217,0.15);
}

.invite-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.stat-card {
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.stat-value {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #c084fc, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.invite-rules-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(10px);
}

.rule-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.rule-item:last-child { border-bottom: none; }

.rule-num {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 0 15px var(--primary-glow);
}

.rule-text { flex: 1; font-size: 14px; }
.rule-reward { font-size: 13px; color: var(--warn); font-weight: 600; }

/* ── Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-bright);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: var(--shadow), 0 0 80px var(--primary-glow);
  animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

@keyframes slideUp { from { opacity: 0; transform: translateY(40px) scale(0.9); } to { opacity: 1; transform: translateY(0) scale(1); } }

.modal-prize-icon {
  font-size: 72px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 20px rgba(245,158,11,0.6));
  animation: bounce 0.6s 0.3s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes bounce {
  0%, 100% { transform: scale(1); }
  30% { transform: scale(1.2); }
  60% { transform: scale(0.95); }
}

.modal-title {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.modal-prize-name {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.modal-prize-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.btn-modal-close {
  padding: 14px 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border: none;
  border-radius: 50px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px var(--primary-glow);
  transition: all 0.3s;
}

.btn-modal-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--primary-glow);
}

/* ── Toast ── */
.toast-container {
  position: fixed;
  top: 80px; right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  padding: 14px 20px;
  border-radius: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow);
  animation: toastIn 0.3s ease;
  pointer-events: all;
  max-width: 320px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.success { border-color: rgba(16,185,129,0.4); }
.toast.error { border-color: rgba(239,68,68,0.4); }
.toast.info { border-color: rgba(14,165,233,0.4); }

@keyframes toastIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-text {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 12px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

/* ── Leaderboard ── */
.leaderboard-table {
  width: 100%;
  border-collapse: collapse;
}

.leaderboard-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.leaderboard-table td {
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.leaderboard-table tr:first-child td { color: #fbbf24; }
.leaderboard-table tr:nth-child(2) td { color: #94a3b8; }
.leaderboard-table tr:nth-child(3) td { color: #cd7c2a; }

/* ── Utilities ── */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.badge-success { background: rgba(16,185,129,0.15); color: var(--accent); }
.badge-primary { background: rgba(109,40,217,0.15); color: #a78bfa; }

.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  color: var(--text-muted);
  font-size: 14px;
  gap: 12px;
}

.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(109,40,217,0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .download-grid { grid-template-columns: repeat(2, 1fr); }
  .lottery-panel { grid-template-columns: 1fr; }
  .wheel-canvas { width: 300px !important; height: 300px !important; }
}

@media (max-width: 768px) {
  .banner-section { height: 280px; }
  .banner-title { font-size: 28px; }
  .section-title { font-size: 28px; }
  .download-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .invite-layout { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .invite-code-display { font-size: 36px; }
  .wheel-canvas { width: 260px !important; height: 260px !important; }
}

@media (max-width: 480px) {
  .download-grid { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 16px; }
  .invite-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Glowing Divider ── */
.glow-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  margin: 0;
}
