@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@500;600;700;800&family=Fira+Code:wght@400;500;600&family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20,400,0,0&display=swap');

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

:root {
  --bg: #f0f2f7;
  --surface: #ffffff;
  --surface2: #f8f9fc;
  --border: #e4e7ef;
  --border2: #d1d5e0;
  --text: #111827;
  --text2: #6b7280;
  --text3: #9ca3af;
  --accent: #3b82f6;
  --accent-light: #eff6ff;
  --accent-hover: #2563eb;
  --danger: #ef4444;
  --danger-light: #fef2f2;
  --success: #10b981;
  --success-light: #ecfdf5;
  --warn: #f59e0b;
  --warn-light: #fffbeb;
  --pin: #8b5cf6;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --radius: 10px;
  --radius-sm: 6px;
  --font: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  --mono: 'Fira Code', monospace;
  --topbar: 58px;
}

:root[data-theme="dark"] {
  --bg: #090d16;
  --surface: #111827;
  --surface2: #1f2937;
  --border: #1f2937;
  --border2: #374151;
  --text: #f9fafb;
  --text2: #9ca3af;
  --text3: #6b7280;
  --accent: #3b82f6;
  --accent-light: rgba(59, 130, 246, 0.15);
  --accent-hover: #60a5fa;
  --danger: #f87171;
  --danger-light: rgba(239, 68, 68, 0.15);
  --success: #34d399;
  --success-light: rgba(16, 185, 129, 0.15);
  --warn: #fbbf24;
  --warn-light: rgba(245, 158, 11, 0.15);
  --pin: #a78bfa;
  --shadow: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.5);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  transition: background 0.25s, color 0.25s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--border2);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text3);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.15s;
}
a:hover {
  color: var(--accent-hover);
}

.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── APP TOPBAR ── */
#topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--topbar);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  z-index: 100;
  box-shadow: var(--shadow);
  transition: background 0.25s, border-color 0.25s;
}

#topbar .brand {
  display: flex;
  flex-direction: column;
  margin-right: 4px;
  user-select: none;
}

#topbar .brand .logo {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

#topbar .brand .logo .logo-bolt {
  font-size: 18px !important;
  color: var(--accent);
}

#topbar .brand .sub {
  font-size: 10px;
  color: var(--text3);
  font-family: var(--mono);
  line-height: 1;
  margin-top: 1px;
}

.divider-v {
  width: 1px;
  height: 22px;
  background: var(--border);
  flex-shrink: 0;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 14px;
  height: 32px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s;
  text-decoration: none;
  outline: none;
}

.btn:hover:not(:disabled) {
  background: var(--surface2);
  border-color: var(--border2);
}

.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn.primary:hover:not(:disabled) {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn.danger {
  background: var(--danger);
  border-color: var(--danger);
  color: #fff;
}

.btn.danger:hover:not(:disabled) {
  background: #dc2626;
  border-color: #dc2626;
}

.btn.sm {
  padding: 0 10px;
  height: 27px;
  font-size: 12px;
}

.btn.lg {
  padding: 0 24px;
  height: 40px;
  font-size: 14px;
  border-radius: var(--radius-sm);
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* CARDS */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.card:hover {
  border-color: var(--border2);
}

/* FORM ELEMENTS */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text2);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.form-control {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-family: var(--font);
  font-size: 13px;
  color: var(--text);
  outline: none;
  transition: all 0.15s;
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
  background: var(--surface);
}

/* ALERTS */
.alert {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.alert.info { background: var(--accent-light); border: 1px solid #bfdbfe; color: var(--accent); }
.alert.warn { background: var(--warn-light); border: 1px solid #fde68a; color: #92400e; }
.alert.success { background: var(--success-light); border: 1px solid #a7f3d0; color: #065f46; }
.alert.error { background: var(--danger-light); border: 1px solid #fca5a5; color: #991b1b; }
.alert .icon { font-size: 16px; flex-shrink: 0; }

/* ── 1. Landing Page (index.html) ── */
.landing-container {
  max-width: 820px;
  margin: calc(var(--topbar) + 30px) auto 60px auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.page-title h1 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.page-title p {
  font-size: 14px;
  color: var(--text2);
  max-width: 580px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--accent);
}

.features-grid h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.features-grid p {
  font-size: 12.5px;
  color: var(--text2);
  line-height: 1.6;
}

/* FAQ Details Accoridon */
.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.15s;
}

details[open] {
  border-color: var(--border2);
}

summary {
  padding: 14px 18px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: '\e5cf';
  font-family: 'Material Symbols Outlined';
  font-size: 18px;
  font-weight: normal;
  transition: transform 0.15s;
  color: var(--text2);
}

details[open] summary::after {
  transform: rotate(-180deg);
}

.faq-content {
  padding: 0 18px 18px 18px;
  color: var(--text2);
  font-size: 13px;
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

/* ── 2. Dashboard Page (app.html) ── */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  margin: calc(var(--topbar) + 20px) auto 30px auto;
}

/* Tabs for Alias Choice */
.alias-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 3px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.tab-btn {
  background: transparent;
  border: none;
  padding: 6px;
  color: var(--text2);
  font-family: var(--font);
  font-weight: 600;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
}

.tab-btn.active {
  background: var(--surface);
  color: var(--accent);
  box-shadow: var(--shadow);
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
  animation: fadeIn 0.15s ease-out;
}

/* Custom Range Slider */
.slider-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.range-slider {
  flex-grow: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 5px;
  border-radius: 3px;
  background: var(--border);
  outline: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 2px solid var(--surface);
  box-shadow: var(--shadow);
  transition: transform 0.1s;
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

/* Toggle Switch */
.toggle-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 20px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--border2);
  transition: .3s;
  border-radius: 20px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  transition: .3s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--accent);
}

input:checked + .slider:before {
  transform: translateX(18px);
}

/* Sidebar Quota and Identity */
.status-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quota-radial {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
}

.progress-ring-container {
  position: relative;
  width: 130px;
  height: 130px;
}

.progress-ring-bg {
  fill: none;
  stroke: var(--border);
  stroke-width: 10;
}

.progress-ring-bar {
  fill: none;
  stroke: var(--accent);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset 0.4s ease;
}

.quota-text-inside {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.quota-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.quota-unit {
  font-size: 10px;
  color: var(--text3);
  text-transform: uppercase;
  margin-top: 2px;
}

.identity-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
}

.identity-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.identity-label {
  color: var(--text2);
  font-weight: 500;
}

.identity-val {
  font-family: var(--mono);
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1px 6px;
  border-radius: 4px;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* History Card */
.history-card {
  margin-bottom: 60px;
}

.history-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.table-responsive {
  overflow-x: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
}

th, td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}

th {
  background: var(--surface2);
  font-weight: 600;
  color: var(--text2);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

tr:hover td {
  background: var(--surface2);
}

tr:last-child td {
  border-bottom: none;
}

.link-alias {
  font-weight: 700;
  color: var(--accent);
  cursor: pointer;
}
.link-alias:hover {
  text-decoration: underline;
}

.link-original {
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text2);
}

.badge-clicks {
  background: var(--accent-light);
  color: var(--accent);
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 600;
  font-family: var(--mono);
  font-size: 11px;
  border: 1px solid rgba(59, 130, 246, 0.18);
}

.actions-cell {
  display: flex;
  gap: 4px;
}

.btn-action {
  background: var(--surface);
  border: 1px solid var(--border);
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text2);
  transition: all 0.15s;
  font-size: 12px;
}

.btn-action:hover {
  background: var(--surface2);
  color: var(--text);
  border-color: var(--border2);
}

.empty-state {
  text-align: center;
  padding: 30px;
  color: var(--text3);
}

/* Success Result Panel */
.success-reveal {
  margin-bottom: 20px;
  border: 1px dashed var(--success);
  background: var(--success-light);
  border-radius: var(--radius);
  padding: 20px;
  animation: slideDown 0.25s ease-out;
  display: none;
}

.success-header {
  color: #065f46;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-weight: 700;
}

.result-box {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 6px 6px 12px;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.short-url-text {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  font-family: var(--mono);
  overflow-x: auto;
  white-space: nowrap;
  flex-grow: 1;
}

.success-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 12px;
}

.success-meta-item p {
  color: var(--text2);
  margin-bottom: 2px;
}

.success-meta-item span {
  display: block;
  font-weight: 600;
  color: var(--text);
}

/* QR Code Section */
.qr-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
}

.qr-image {
  background: white;
  padding: 8px;
  border-radius: 6px;
  width: 140px;
  height: 140px;
}

/* ── 3. Alias / Warning Page (alias/index.html) ── */
.warning-page {
  max-width: 580px;
  margin: calc(var(--topbar) + 30px) auto 60px auto;
}

.warning-card {
  text-align: center;
}

.warning-icon {
  font-size: 40px;
  color: var(--warn);
  margin-bottom: 12px;
}

.warning-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.warning-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text2);
  margin-bottom: 24px;
}

/* Website Metadata Preview Card */
.preview-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  text-align: left;
  margin-bottom: 24px;
}

.preview-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.preview-favicon {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.preview-domain {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.preview-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
  line-height: 1.3;
}

.preview-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.5;
  margin-bottom: 12px;
}

.preview-thumb {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.destination-url-box {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text2);
  word-break: break-all;
}

/* Countdown Visual Ring */
.countdown-box {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.countdown-ring {
  position: relative;
  width: 70px;
  height: 70px;
}

.countdown-ring-circle {
  fill: none;
  stroke: var(--accent);
  stroke-width: 4;
  stroke-dasharray: 220;
  stroke-dashoffset: 0;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.countdown-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

.skip-container {
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.disclaimer {
  font-size: 11px;
  color: var(--text3);
  margin-top: 24px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  line-height: 1.5;
}

/* ── 4. 404 Page (404.html) ── */
.error-page {
  max-width: 460px;
  margin: calc(var(--topbar) + 40px) auto 60px auto;
  text-align: center;
}

.error-code {
  font-size: 80px;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--danger);
  line-height: 1;
  margin-bottom: 8px;
}

.error-title {
  font-size: 20px;
  margin-bottom: 18px;
}

.error-list {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  text-align: left;
  margin-bottom: 24px;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}

.error-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text2);
  line-height: 1.5;
}

.error-list li::before {
  content: "•";
  color: var(--danger);
  font-size: 18px;
  position: absolute;
  left: 4px;
  top: -2px;
}

/* ── 5. Hacker Page (HACKER.html) ── */
.hacker-body {
  background: #030712 !important;
  color: #10b981 !important;
  font-family: var(--mono) !important;
}

.hacker-container {
  width: 100vw;
  height: 100vh;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
}

.terminal-header {
  border-bottom: 1px solid #115e59;
  padding-bottom: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  color: #14b8a6;
}

.terminal-content {
  flex-grow: 1;
  overflow-y: auto;
  font-size: 13px;
  line-height: 1.7;
}

.terminal-line {
  margin-bottom: 4px;
  opacity: 0;
  animation: hacker-print 0.05s steps(20) forwards;
}

.terminal-error {
  color: #ef4444;
  font-weight: 700;
  font-size: 14px;
  margin: 12px 0;
  animation: blink 1s step-end infinite;
}

/* Footer */
footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding: 30px 0;
  text-align: center;
  background: var(--surface);
  font-size: 12px;
  color: var(--text3);
}

/* Toast Notifications */
#toast-notify {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #111827;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

#toast-notify.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

#toast-notify.success { border-left: 3px solid var(--success); }
#toast-notify.error { border-left: 3px solid var(--danger); }
#toast-notify.warning { border-left: 3px solid var(--warn); }

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes blink {
  50% { opacity: 0; }
}

@keyframes hacker-print {
  to { opacity: 1; }
}

/* Responsive Rules */
@media (max-width: 820px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  #topbar .brand .sub {
    display: none;
  }
  #topbar .brand .logo {
    font-size: 14px;
  }
  .btn {
    padding: 0 10px;
    height: 30px;
    font-size: 12px;
  }
  .landing-container {
    margin-top: calc(var(--topbar) + 15px);
  }
}
