/* Boongle IDE — marketing site (cursor.so inspired) */

:root {
  --bg: #050505;
  --bg-elevated: #0a0a0a;
  --bg-card: #0d0d0d;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);
  --text: #fafafa;
  --text-muted: #888888;
  --text-dim: #555555;
  --accent: #ffffff;
  --check: #e8e8e8;
  --nav-h: 56px;
  --radius: 12px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

/* ── Nav ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.nav-brand svg {
  width: 22px;
  height: 22px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--text);
  color: var(--bg);
  transition: opacity 0.15s;
}

.nav-cta:hover {
  opacity: 0.88;
}

/* ── Layout ── */
main {
  padding-top: var(--nav-h);
}

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

/* ── Hero ── */
.hero {
  padding: 80px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 28px;
  background: var(--bg-elevated);
}

.hero-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
}

.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
  max-width: 820px;
  margin: 0 auto 20px;
}

.hero h1 .dim {
  color: var(--text-muted);
}

.hero p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, opacity 0.15s;
  font-family: inherit;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.04);
}

/* ── IDE Mockup ── */
.mockup-wrap {
  max-width: 1040px;
  margin: 0 auto;
  perspective: 1200px;
}

.mockup {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 24px 80px rgba(0, 0, 0, 0.6),
    0 0 120px rgba(255, 255, 255, 0.02);
  transform: rotateX(2deg);
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #080808;
  border-bottom: 1px solid var(--border);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
}

.mockup-dot:nth-child(1) { background: #444; }
.mockup-dot:nth-child(2) { background: #333; }
.mockup-dot:nth-child(3) { background: #2a2a2a; }

.mockup-title {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.mockup-body {
  display: grid;
  grid-template-columns: 48px 200px 1fr 280px;
  min-height: 420px;
}

.mockup-activity {
  background: #060606;
  border-right: 1px solid var(--border);
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mockup-icon {
  width: 20px;
  height: 20px;
  opacity: 0.35;
}

.mockup-icon.active {
  opacity: 0.9;
}

.mockup-sidebar {
  background: #070707;
  border-right: 1px solid var(--border);
  padding: 12px;
}

.mockup-sidebar-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.mockup-file {
  font-size: 11px;
  font-family: ui-monospace, monospace;
  color: var(--text-muted);
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 2px;
}

.mockup-file.active {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.mockup-editor {
  background: #090909;
  padding: 16px 0;
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 12px;
  line-height: 1.7;
}

.mockup-line {
  display: flex;
  padding: 0 16px;
}

.mockup-ln {
  width: 28px;
  color: var(--text-dim);
  user-select: none;
  flex-shrink: 0;
}

.mockup-code {
  color: #b0b0b0;
}

.mockup-code .kw { color: #e8e8e8; }
.mockup-code .fn { color: #d4d4d4; }
.mockup-code .str { color: #888; }
.mockup-code .cm { color: #444; }

.mockup-ai {
  background: #070707;
  border-left: 1px solid var(--border);
  padding: 14px;
  display: flex;
  flex-direction: column;
}

.mockup-ai-header {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mockup-ai-msg {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 10px;
}

.mockup-ai-tool {
  font-size: 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 10px;
  color: #aaa;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-ai-tool .diff {
  font-family: ui-monospace, monospace;
  font-size: 10px;
}

.mockup-ai-tool .diff .add { color: #4ade80; }
.mockup-ai-tool .diff .del { color: #f87171; }

.mockup-ai-input {
  margin-top: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  font-size: 10px;
  color: var(--text-dim);
}

/* ── Features strip ── */
.features {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.features h2 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  text-align: center;
  margin-bottom: 48px;
}

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

.feature-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  transition: border-color 0.2s;
}

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

.feature-card svg {
  width: 28px;
  height: 28px;
  margin-bottom: 16px;
  opacity: 0.85;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Page header (pricing, support) ── */
.page-header {
  padding: 72px 0 48px;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.page-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}

/* ── Pricing ── */
.pricing-page .pricing-container {
  max-width: 1440px;
}

.pricing-section {
  padding: 0 0 100px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 24px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  transition: border-color 0.2s, transform 0.2s;
  min-height: 100%;
}

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

.pricing-card.featured {
  border-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, #111 0%, var(--bg-card) 100%);
  position: relative;
}

.pricing-card.featured::before {
  content: "Popular";
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--text);
  color: var(--bg);
  padding: 3px 10px;
  border-radius: 999px;
}

.pricing-tier {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 24px;
}

.pricing-price .amount {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.pricing-price .period {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: #b8b8b8;
  line-height: 1.45;
}

.pricing-features .check-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.pricing-trial-badge {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: linear-gradient(135deg, #7dd3fc 0%, #a78bfa 55%, #f472b6 100%);
  padding: 4px 10px;
  border-radius: 999px;
}

.pricing-trial-section {
  padding: 0 32px 100px;
}

.pricing-trial-scroll {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.pricing-trial-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pricing-trial-heading {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 10px;
}

.pricing-trial-heading strong {
  color: #fff;
  font-weight: 600;
}

.pricing-trial-note {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Support placeholder ── */
.support-content {
  max-width: 560px;
  margin: 0 auto 100px;
  text-align: center;
}

.support-content p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 24px;
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.site-footer p {
  font-size: 12px;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-links a {
  font-size: 12px;
  color: var(--text-muted);
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--text);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mockup-body {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
  }

  .mockup-sidebar,
  .mockup-ai {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-nav {
    padding: 0 16px;
  }

  .container {
    padding: 0 16px;
  }

  .nav-links a:not(.active) {
    display: none;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 48px 0 64px;
  }
}

/* ── Auth (Sign in / Sign up / Phone verification) ── */
.auth-page {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px 80px;
  position: relative;
}

.auth-page::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.auth-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.auth-card h1 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.auth-card .auth-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auth-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.auth-field label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

.auth-field input {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.auth-field input::placeholder {
  color: var(--text-dim);
}

.auth-field input:focus {
  border-color: var(--border-hover);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.04);
}

.auth-submit {
  width: 100%;
  margin-top: 8px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  color: var(--bg);
  background: var(--text);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.15s;
}

.auth-submit:hover {
  opacity: 0.9;
}

.auth-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

.auth-footer a {
  color: var(--text);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.auth-footer a:hover {
  opacity: 0.85;
}

.auth-notice {
  margin-top: 16px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.5;
  color: #cca700;
  background: rgba(204, 167, 0, 0.08);
  border: 1px solid rgba(204, 167, 0, 0.25);
  border-radius: 8px;
  text-align: center;
}

.auth-notice[hidden] {
  display: none;
}

.nav-auth-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-auth-links a {
  font-size: 13px;
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

.nav-auth-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.auth-notice--success {
  color: #6ee7a0;
  border-color: rgba(110, 231, 160, 0.25);
  background: rgba(110, 231, 160, 0.08);
}

.auth-submit--secondary {
  margin-top: 8px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.auth-submit--secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-hover);
}

.auth-card--wide {
  max-width: 480px;
}

.verify-status {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin: 8px 0 20px;
}

.trial-perks {
  list-style: none;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trial-perks li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
}

.trial-perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text);
  opacity: 0.5;
}

.trial-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trial-later {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* ── Dashboard ── */
.dashboard-page {
  padding: calc(var(--nav-h) + 48px) 32px 64px;
  min-height: 100vh;
}

.dashboard-container {
  max-width: 560px;
  margin: 0 auto;
}

.dashboard-header {
  margin-bottom: 32px;
}

.dashboard-header h1 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.dashboard-email {
  font-size: 14px;
  color: var(--text-muted);
}

.dashboard-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.dashboard-plan-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.dashboard-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dashboard-plan-value {
  font-size: 18px;
  font-weight: 600;
}

.usage-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.usage-label {
  font-size: 14px;
  color: var(--text-muted);
}

.usage-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
}

.usage-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.85));
  border-radius: 999px;
  transition: width 0.4s ease;
}

.dashboard-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-dim);
}

.dashboard-signout {
  margin-top: 32px;
}

/* Dashboard with sidebar */
.dashboard-body {
  padding-top: var(--nav-h);
}

.dashboard-layout {
  display: flex;
  min-height: calc(100vh - var(--nav-h));
}

.dashboard-sidebar {
  width: 240px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dashboard-sidebar-user {
  padding: 0 8px;
}

.dashboard-sidebar-label {
  display: block;
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.dashboard-sidebar-email {
  font-size: 13px;
  color: var(--text-muted);
  word-break: break-all;
}

.dashboard-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.dashboard-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-muted);
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  width: 100%;
  font-family: inherit;
  transition: background 0.15s, color 0.15s;
}

.dashboard-nav-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.dashboard-nav-item.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.dashboard-nav-icon {
  width: 16px;
  opacity: 0.5;
  font-size: 12px;
}

.dashboard-nav-signout {
  margin-top: auto;
  color: var(--text-dim);
}

.dashboard-main {
  flex: 1;
  padding: 40px 48px 64px;
  max-width: 900px;
}

.dashboard-panel[hidden] {
  display: none !important;
}

.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.dashboard-card-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}

.dashboard-card--wide {
  max-width: none;
}

.dashboard-meta {
  font-size: 16px;
  font-weight: 500;
  margin-top: 4px;
}

.dashboard-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .dashboard-layout {
    flex-direction: column;
  }

  .dashboard-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .dashboard-main {
    padding: 24px 20px 48px;
  }
}

[data-auth="user"][hidden],
[data-auth="guest"][hidden],
[data-auth="guest-signup"][hidden],
[data-auth="guest-only-cta"][hidden] {
  display: none !important;
}

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

  .auth-card {
    padding: 28px 20px;
  }

  .dashboard-page {
    padding-left: 20px;
    padding-right: 20px;
  }
}
