/* ═══════════════════════════════════════════════════════════════
   MYSTRI — Landing Page
   Mobile-first (360px base) · Dark space theme · No external deps
═══════════════════════════════════════════════════════════════ */

/* ── Variables ───────────────────────────────────────────────── */
:root {
  color-scheme: dark;

  --bg:           #050714;
  --bg-mid:       #0c0e28;
  --bg-soft:      #12153a;
  --text:         #f0f0ff;
  --muted:        #9998c0;
  --dim:          #5a5880;
  --purple:       #8b5cf6;
  --purple-deep:  #5b21b6;
  --violet:       #a78bfa;
  --cyan:         #22d3ee;
  --gold:         #fbbf24;
  --white:        #ffffff;

  --glass-bg:     rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.12);
  --glass-blur:   blur(18px);

  --radius-card:  20px;
  --radius-pill:  999px;

  /* Safe horizontal padding — ensures content never bleeds on 360px */
  --px: 20px;
  --max-w: 1120px;
}

/* ── Reset ───────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  min-width: 0; /* prevents flex children from overflowing */
}

html {
  min-height: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(ellipse 120% 55% at 10% 0%,   rgba(139,92,246,0.32) 0%, transparent 55%),
    radial-gradient(ellipse 80%  50% at 92% 8%,   rgba(34,211,238,0.18) 0%, transparent 50%),
    radial-gradient(ellipse 100% 60% at 50% 110%, rgba(91,33,182,0.22)  0%, transparent 55%),
    var(--bg);
  overflow-x: hidden; /* hard stop — nothing escapes viewport */
}

/* ── Star field (fixed, decorative only) ─────────────────────── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.7) 1px, transparent 1px),
    radial-gradient(circle, rgba(251,191,36,0.5)  1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size:   160px 160px, 240px 240px, 100px 100px;
  background-position: 12px 18px,  77px 133px,  45px 70px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, transparent 70%);
  opacity: 0.25;
}

/* ── Page container — used by every section ──────────────────── */
.wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}

/* ── Shared type resets ───────────────────────────────────────── */
h1, h2, h3, p, ul, ol, figure { margin: 0; }

/* ── Eyebrow label ───────────────────────────────────────────── */
.eyebrow {
  display: block;
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
}

/* ════════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  min-height: 100vh;
  text-align: center;
  overflow: hidden;             /* clip orbit rings */
  padding: 80px var(--px) 64px;
}

/* Orbit rings — purely decorative, clipped by .hero overflow:hidden */
.orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: spin linear infinite;
  will-change: transform;
}
.orbit-1 {
  width: 440px; height: 440px;
  top: 50%; left: 50%;
  translate: -50% -50%;
  border: 1px solid rgba(139,92,246,0.2);
  animation-duration: 60s;
}
.orbit-2 {
  width: 660px; height: 660px;
  top: 50%; left: 50%;
  translate: -50% -50%;
  border: 1px solid rgba(34,211,238,0.1);
  animation-duration: 90s;
  animation-direction: reverse;
}
.orbit-3 {
  width: 900px; height: 900px;
  top: 50%; left: 50%;
  translate: -50% -50%;
  border: 1px solid rgba(167,139,250,0.06);
  animation-duration: 130s;
}
@keyframes spin {
  to { rotate: 360deg; }
}

/* Glow blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
}
.blob-purple {
  width: 500px; height: 500px;
  top: -120px; left: -100px;
  background: radial-gradient(circle, rgba(139,92,246,0.5), transparent 70%);
  opacity: 0.55;
}
.blob-cyan {
  width: 400px; height: 400px;
  top: -80px; right: -80px;
  background: radial-gradient(circle, rgba(34,211,238,0.38), transparent 70%);
  opacity: 0.5;
}

/* Hero content stack */
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin-inline: auto; /* center on wide screens */
}

/* ── Hero logo (horizontal lockup) ───────────────────────────── */
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}

.hero-logo {
  display: block;
  width: clamp(260px, 78vw, 310px);
  height: auto;
  max-width: 100%;
}

/* Fallback: shown via JS onerror when PNG asset is not yet placed */
.hero-logo-fallback {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-logo-fb-icon {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-logo-fb-word {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #fff;
}


.badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 13px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  /* prevent individual badges from overflowing */
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.badge-glow {
  border: 1px solid rgba(167,139,250,0.55);
  background: rgba(139,92,246,0.2);
  color: var(--violet);
  box-shadow: 0 0 14px rgba(139,92,246,0.4);
}
.badge-muted {
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--muted);
}

/* ── Hero text ───────────────────────────────────────────────── */
.hero-tagline {
  font-size: clamp(0.88rem, 2.8vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--cyan);
  margin-top: 10px;
  margin-bottom: 20px;
}

.hero-headline {
  width: 100%;
  margin-bottom: 24px;
  /*
    Minimum: 1.9rem (~30px) — safe on 360px
    Fluid:   6.5vw  → 23px on 360px, 52px on 800px
    Maximum: 4.8rem (~77px)
  */
  font-size: clamp(1.9rem, 6.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  /* hard stop — no overflow */
  overflow-wrap: break-word;
  word-break: break-word;
}

.headline-accent {
  display: block;
  background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy {
  width: 100%;
  max-width: 560px;
  margin-bottom: 0;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  line-height: 1.7;
  color: var(--muted);
}

/* ════════════════════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════════════════════ */
.how-section {
  position: relative;
  z-index: 1;
  padding: 72px 0;
}

.how-section .wrap { }

.how-section .section-header {
  margin-bottom: 40px;
}

.how-section h2 {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
}

/* Steps: 1-col on mobile, 2-col on tablet+ */
.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;          /* mobile: single column */
  gap: 16px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 20px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: border-color 0.2s;
}
.step:hover { border-color: rgba(139,92,246,0.4); }

.step-num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, rgba(139,92,246,0.4), rgba(34,211,238,0.25));
  border: 1px solid rgba(139,92,246,0.35);
  color: var(--violet);
}

.step-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.step-body strong {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
}
.step-body span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ════════════════════════════════════════════════════════════════
   SPACE STATION SCENARIO
════════════════════════════════════════════════════════════════ */
.scenario-section {
  position: relative;
  z-index: 1;
  padding: 0 0 72px;
}

.scenario-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(139,92,246,0.28);
  border-radius: 28px;
  background:
    linear-gradient(140deg, rgba(91,33,182,0.3) 0%, rgba(12,14,40,0.88) 55%, rgba(0,46,70,0.32) 100%),
    var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow:
    0 0 0 1px rgba(139,92,246,0.12),
    0 32px 80px rgba(91,33,182,0.28),
    inset 0 1px 0 rgba(255,255,255,0.07);
  padding: 44px 24px;  /* safe mobile padding */
  text-align: center;
}

.scenario-glow {
  position: absolute;
  top: -40%;
  left: 50%;
  translate: -50% 0;
  width: min(500px, 140%);
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(139,92,246,0.25), transparent 70%);
  pointer-events: none;
  filter: blur(28px);
}

.frame-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.5) 1px, transparent 1px),
    radial-gradient(circle, rgba(251,191,36,0.4)  1px, transparent 1px);
  background-size: 70px 70px, 120px 120px;
  background-position: 8px 8px, 50px 38px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 35%, rgba(0,0,0,0.45) 100%);
  opacity: 0.22;
}

.scenario-content {
  position: relative;
  z-index: 2;
}

.scenario-title {
  font-size: clamp(2rem, 7vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--white) 0%, var(--violet) 55%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  overflow-wrap: break-word;
}

.scenario-copy {
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Role pills */
.role-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}

.role-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.role-crew        { background: rgba(34,211,238,0.13);  border: 1px solid rgba(34,211,238,0.38);  color: var(--cyan);    }
.role-infiltrator { background: rgba(239,68,68,0.13);   border: 1px solid rgba(239,68,68,0.38);   color: #f87171;        }
.role-scanner     { background: rgba(167,139,250,0.13); border: 1px solid rgba(167,139,250,0.38); color: var(--violet);  }
.role-medic       { background: rgba(52,211,153,0.13);  border: 1px solid rgba(52,211,153,0.38);  color: #6ee7b7;        }
.role-captain     { background: rgba(251,191,36,0.13);  border: 1px solid rgba(251,191,36,0.38);  color: var(--gold);    }

/* ════════════════════════════════════════════════════════════════
   FUTURE WORLDS
════════════════════════════════════════════════════════════════ */
.worlds-section {
  position: relative;
  z-index: 1;
  padding: 0 0 72px;
  text-align: center;
}

.worlds-title {
  font-size: clamp(1.5rem, 4.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 36px;
  line-height: 1.18;
  color: var(--white);
}

.world-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.world-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.world-pill:hover {
  border-color: rgba(139,92,246,0.45);
  color: var(--text);
  box-shadow: 0 0 14px rgba(139,92,246,0.18);
}
.world-pill--more {
  border-style: dashed;
  border-color: rgba(255,255,255,0.1);
  color: var(--dim);
  font-style: italic;
}

/* ════════════════════════════════════════════════════════════════
   PRIVACY FIRST
════════════════════════════════════════════════════════════════ */
.privacy-section {
  position: relative;
  z-index: 1;
  padding: 0 0 72px;
}

.privacy-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 44px 24px;
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(139,92,246,0.09) 0%, rgba(34,211,238,0.06) 100%),
    var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.07),
    0 24px 64px rgba(0,0,0,0.28);
}

.privacy-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 15px;
  border: 1px solid rgba(34,211,238,0.28);
  background: rgba(34,211,238,0.09);
  color: var(--cyan);
  flex-shrink: 0;
}

.privacy-title {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: var(--white);
}

.privacy-copy {
  max-width: 520px;
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 26px;
}

.privacy-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}
.privacy-tags span {
  padding: 6px 13px;
  border: 1px solid rgba(34,211,238,0.22);
  border-radius: var(--radius-pill);
  background: rgba(34,211,238,0.07);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════ */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 56px var(--px) 40px;
  overflow: hidden;
}

/* subtle top glow line */
.footer-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(600px, 100%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--cyan), var(--purple), transparent);
  opacity: 0.5;
}

/* stacked on mobile, two-col on desktop */
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  text-align: center;
  margin-bottom: 40px;
}

.footer-brand,
.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-logo-link {
  display: inline-block;
  line-height: 0;
  margin-bottom: 4px;
}

.footer-logo-img {
  display: block;
  width: clamp(130px, 36vw, 180px);
  height: auto;
  max-width: 100%;
}

.footer-wordmark {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--white) 40%, var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.footer-status {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--violet);
  margin: 0 0 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
  margin: 4px 0;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--cyan);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--violet);
  text-decoration: underline;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
  margin: 4px 0 0;
  font-size: 0.8rem;
  color: var(--dim);
}

.footer-copyright {
  text-align: center;
  font-size: 0.75rem;
  color: var(--dim);
  border-top: 1px solid var(--glass-border);
  padding-top: 20px;
  margin: 0;
}

/* ── Legal pages ──────────────────────────────────────────────── */
.legal-page {
  min-height: 100vh;
  padding: 80px var(--px) 60px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--cyan);
  text-decoration: none;
  margin-bottom: 40px;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.legal-back:hover { color: var(--violet); }

.legal-frame {
  max-width: 720px;
  margin: 0 auto;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-card);
  padding: 40px 28px;
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .legal-frame { background: rgba(14, 16, 45, 0.98); }
}

.legal-notice {
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.35);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.82rem;
  color: var(--violet);
  line-height: 1.6;
  margin-bottom: 32px;
}

.legal-frame h1 {
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 900;
  margin: 0 0 8px;
  background: linear-gradient(135deg, var(--white) 50%, var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legal-frame h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--violet);
  margin: 28px 0 8px;
  letter-spacing: 0.03em;
}

.legal-frame p,
.legal-frame address {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 10px;
  font-style: normal;
}

.legal-frame a {
  color: var(--cyan);
  text-decoration: none;
}

.legal-frame a:hover { text-decoration: underline; }

.legal-placeholder {
  color: var(--dim);
  font-style: italic;
}


/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (600px+)
════════════════════════════════════════════════════════════════ */
@media (min-width: 600px) {
  :root { --px: 32px; }

  .steps-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .scenario-frame  { padding: 52px 44px; }
  .privacy-frame   { padding: 52px 44px; }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — DESKTOP (900px+)
════════════════════════════════════════════════════════════════ */
@media (min-width: 900px) {
  :root { --px: 48px; }

  .hero { padding-top: 100px; padding-bottom: 80px; }

  .hero-logo { width: clamp(340px, 34vw, 460px); }
  .hero-logo-wrap { margin-bottom: 26px; }

  .how-section     { padding: 96px 0; }
  .scenario-section { padding-bottom: 96px; }
  .worlds-section  { padding-bottom: 96px; }
  .privacy-section { padding-bottom: 96px; }

  .scenario-frame { padding: 64px 60px; }
  .privacy-frame  { padding: 64px 60px; }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }

  .footer-brand,
  .footer-meta {
    align-items: flex-start;
  }

  .footer-links,
  .footer-social {
    justify-content: flex-start;
  }

  .footer-copyright { text-align: left; }
}

/* ════════════════════════════════════════════════════════════════
   ACCESSIBILITY — REDUCED MOTION
════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .orbit { animation: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ── Fallback for browsers without backdrop-filter (Samsung etc) ── */
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .step {
    background: rgba(18, 21, 58, 0.95);
  }
  .scenario-frame {
    background:
      linear-gradient(140deg, rgba(91,33,182,0.5) 0%, rgba(12,14,40,0.98) 55%, rgba(0,46,70,0.5) 100%);
  }
  .privacy-frame {
    background: rgba(14, 16, 45, 0.98);
  }
}

/* ── Focus ring ──────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}
