/* =========================================================
   MIRUNO — β準備ページ
   Design: Dark / Minimal / Premium / Discovery
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --bg: #0D0D0F;
  --surface: #17171B;
  --surface-2: #1F1F25;
  --surface-hover: #26262E;
  --text: #F5F3F0;
  --text-secondary: #A5A2A8;
  --text-tertiary: #6E6C74;
  --accent: #B85C78;
  --accent-soft: rgba(184, 92, 120, 0.14);
  --accent-line: rgba(184, 92, 120, 0.35);
  --border: rgba(245, 243, 240, 0.08);
  --border-strong: rgba(245, 243, 240, 0.14);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;

  --maxw: 1120px;
  --gutter: clamp(20px, 5vw, 40px);

  --font: -apple-system, BlinkMacSystemFont, "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic",
    "Segoe UI", Meiryo, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  letter-spacing: 0.01em;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

h1, h2, h3, h4, p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.accent { color: var(--accent); }

/* ---------- Background ambience ---------- */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60vw 60vw at 78% -8%, rgba(184, 92, 120, 0.10), transparent 60%),
    radial-gradient(50vw 50vw at 5% 12%, rgba(120, 108, 168, 0.07), transparent 55%);
}

main, header, footer { position: relative; z-index: 1; }

/* =========================================================
   Age Gate
   ========================================================= */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(6, 6, 8, 0.86);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}

html.age-verified .age-gate { display: none; }

.age-card {
  width: 100%;
  max-width: 440px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 6vw, 44px);
  text-align: center;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
  animation: gate-in 0.5s var(--ease) both;
}

@keyframes gate-in {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

.age-card .brand {
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 22px;
}
.age-card .brand b { color: var(--text); font-weight: 700; }

.age-card h2 {
  font-size: clamp(22px, 5vw, 26px);
  line-height: 1.4;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.age-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 26px;
}

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

.age-warn {
  margin-top: 22px;
  font-size: 12px;
  color: var(--text-tertiary);
  line-height: 1.7;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background 0.2s var(--ease),
    border-color 0.2s var(--ease), color 0.2s var(--ease);
  font-family: inherit;
}
.btn:active { transform: scale(0.98); }

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

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

/* Status pill (non-interactive CTA) */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  user-select: none;
}
.status-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(184, 92, 120, 0.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(184, 92, 120, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(184, 92, 120, 0); }
  100% { box-shadow: 0 0 0 0 rgba(184, 92, 120, 0); }
}

/* Small tag / badge */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border: 1px solid var(--border-strong);
  color: var(--text-secondary);
  background: var(--surface-2);
}
.tag-new { color: var(--accent); border-color: var(--accent-line); background: var(--accent-soft); }
.tag-soon { color: var(--text-secondary); }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(13, 13, 15, 0.72);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.22em;
  color: var(--text);
}
.logo .logo-mark {
  width: 22px; height: 22px;
  display: block;
}
.logo b { font-weight: 700; }
.logo-sub {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-tertiary);
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
}
.nav a {
  font-size: 13.5px;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}
.nav a:hover { color: var(--text); }

.nav-toggle { display: none; }

@media (max-width: 720px) {
  .nav {
    position: fixed;
    inset: 64px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 8px var(--gutter) 16px;
    transform: translateY(-140%);
    transition: transform 0.32s var(--ease);
    z-index: 30;
  }
  .nav.open { transform: translateY(0); }
  .nav a {
    padding: 14px 2px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
  }
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: transparent;
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    cursor: pointer;
  }
  .nav-toggle span {
    display: block;
    width: 18px; height: 1.5px;
    margin: 0 auto;
    background: var(--text);
    transition: 0.25s var(--ease);
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

/* =========================================================
   Sections (generic)
   ========================================================= */
section { padding-block: clamp(64px, 11vw, 118px); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(24px, 5.2vw, 38px);
  line-height: 1.35;
  letter-spacing: 0.01em;
  font-weight: 700;
}
.section-lead {
  margin-top: 18px;
  max-width: 640px;
  color: var(--text-secondary);
  font-size: clamp(15px, 2.4vw, 16.5px);
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  padding-top: clamp(56px, 9vw, 96px);
  padding-bottom: clamp(48px, 8vw, 90px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
}

.hero-copy h1 {
  font-size: clamp(38px, 9vw, 68px);
  line-height: 1.08;
  letter-spacing: 0.005em;
  font-weight: 700;
}
.hero-copy h1 .rose {
  color: var(--accent);
}
.hero-sub {
  margin-top: 26px;
  font-size: clamp(16px, 2.8vw, 19px);
  color: var(--text);
  line-height: 1.7;
  max-width: 30ch;
}
.hero-note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 42ch;
}
.hero-cta { margin-top: 34px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-cta .hint { font-size: 12.5px; color: var(--text-tertiary); }

/* Abstract discovery visual (CSS only, no real imagery) */
.discovery {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  padding: 20px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
}
.discovery::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 15, 0.55), transparent 55%);
  pointer-events: none;
}
.discovery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 14px;
  height: 100%;
}
.d-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--border);
  filter: saturate(105%);
  animation: float 7s var(--ease) infinite;
}
.d-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.9;
  filter: blur(2px);
}
.d-card:nth-child(1)::before { background: linear-gradient(135deg, #3a2b3f, #24202e); }
.d-card:nth-child(2)::before { background: linear-gradient(135deg, #4a2f3d, #2a2230); }
.d-card:nth-child(3)::before { background: linear-gradient(135deg, #2c2a3a, #201f2b); }
.d-card:nth-child(4)::before { background: linear-gradient(135deg, #45303c, #241f2a); }
.d-card:nth-child(5)::before { background: linear-gradient(160deg, #5a3a4b, #2e2533); }
.d-card:nth-child(6)::before { background: linear-gradient(135deg, #302c3d, #201e29); }
.d-card:nth-child(7)::before { background: linear-gradient(135deg, #392b3a, #221f2b); }
.d-card:nth-child(8)::before { background: linear-gradient(135deg, #40303f, #23202b); }
.d-card:nth-child(9)::before { background: linear-gradient(135deg, #2b2937, #1e1d27); }

.d-card:nth-child(2) { animation-delay: 0.6s; }
.d-card:nth-child(3) { animation-delay: 1.1s; }
.d-card:nth-child(4) { animation-delay: 0.3s; }
.d-card:nth-child(5) { animation-delay: 0.9s; }
.d-card:nth-child(6) { animation-delay: 1.4s; }
.d-card:nth-child(7) { animation-delay: 0.5s; }
.d-card:nth-child(8) { animation-delay: 1.2s; }
.d-card:nth-child(9) { animation-delay: 0.8s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.d-card .d-badge {
  position: absolute;
  top: 8px; left: 8px;
  z-index: 2;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 7px;
  border-radius: 6px;
  background: rgba(184, 92, 120, 0.9);
  color: #fff;
}
.d-card .d-meta {
  position: absolute;
  bottom: 8px; left: 8px; right: 8px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9.5px;
  color: rgba(245, 243, 240, 0.82);
}
.d-card .d-meta .match {
  color: var(--accent);
  font-weight: 700;
}
@media (prefers-reduced-motion: reduce) {
  .d-card { animation: none; }
  .status-pill .dot { animation: none; }
}

/* =========================================================
   Concept
   ========================================================= */
.concept-cards {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 820px) { .concept-cards { grid-template-columns: 1fr; } }

.concept-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease),
    background 0.25s var(--ease);
}
.concept-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  background: var(--surface-2);
}
.concept-card .num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 16px;
}
.concept-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.concept-card p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* =========================================================
   Feature Preview
   ========================================================= */
.feature-section { background: var(--surface); border-block: 1px solid var(--border); }
.feature-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  min-height: 168px;
}
.feature-card .fc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.feature-card .fc-icon {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
}
.feature-card .fc-icon svg { width: 18px; height: 18px; stroke: var(--accent); }
.feature-card h3 { font-size: 16px; margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.7; }

/* mock rows inside feature card */
.mock-list { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.mock-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.mock-thumb {
  width: 30px; height: 30px;
  border-radius: 7px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, #3a2b3f, #232030);
  filter: blur(0.4px);
}
.mock-row .mr-title { font-size: 12.5px; color: var(--text); }
.mock-row .mr-meta { margin-left: auto; font-size: 11px; color: var(--accent); font-weight: 700; }

/* =========================================================
   Policy Section
   ========================================================= */
.policy-card {
  margin-top: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: clamp(26px, 5vw, 40px);
}
.policy-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.policy-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.policy-list .chk {
  flex: 0 0 auto;
  margin-top: 3px;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
}
.policy-list .chk svg { width: 12px; height: 12px; stroke: var(--accent); }
.policy-list p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.75; }
.policy-list p b { color: var(--text); font-weight: 600; }

/* =========================================================
   About
   ========================================================= */
.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 6vw, 60px);
  align-items: start;
}
@media (max-width: 820px) { .about-inner { grid-template-columns: 1fr; } }
.about-body p { color: var(--text-secondary); font-size: 15.5px; line-height: 1.85; }
.about-body p + p { margin-top: 18px; }
.about-status {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-secondary);
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding-block: 52px 40px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: var(--text-tertiary); max-width: 34ch; line-height: 1.7; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
}
.footer-links a {
  font-size: 13.5px;
  color: var(--text-secondary);
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footer-bottom small { font-size: 12px; color: var(--text-tertiary); letter-spacing: 0.04em; }
.footer-bottom .age-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 4px 12px;
}

/* =========================================================
   Legal / Sub pages
   ========================================================= */
.page-hero {
  padding-block: clamp(56px, 10vw, 96px) clamp(28px, 5vw, 44px);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-size: clamp(28px, 6vw, 42px);
  letter-spacing: 0.01em;
}
.page-hero .page-updated { margin-top: 14px; font-size: 13px; color: var(--text-tertiary); }
.breadcrumb { margin-bottom: 20px; font-size: 12.5px; color: var(--text-tertiary); }
.breadcrumb a:hover { color: var(--text-secondary); }

.legal-body { padding-block: clamp(40px, 7vw, 72px); }
.legal-body .container { max-width: 780px; }
.legal-block + .legal-block { margin-top: 42px; }
.legal-block h2 {
  font-size: 20px;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.legal-block h3 { font-size: 16px; margin: 22px 0 10px; }
.legal-block p { color: var(--text-secondary); font-size: 15px; line-height: 1.9; margin-bottom: 14px; }
.legal-block ul { margin: 0 0 14px; padding-left: 20px; }
.legal-block li { color: var(--text-secondary); font-size: 15px; line-height: 1.85; margin-bottom: 8px; }
.legal-block a.inline-link { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.notice-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 28px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Contact */
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(28px, 6vw, 44px);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.contact-card .c-icon {
  width: 54px; height: 54px;
  margin: 0 auto 22px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
}
.contact-card .c-icon svg { width: 26px; height: 26px; stroke: var(--accent); }
.contact-card h2 { font-size: 20px; margin-bottom: 12px; }
.contact-card p { color: var(--text-secondary); font-size: 14.5px; line-height: 1.8; }
.contact-status {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  font-size: 13.5px;
  color: var(--text-secondary);
}
.contact-status a { color: var(--accent); font-weight: 600; }
.contact-purposes {
  list-style: none;
  margin: 22px 0 4px;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.contact-purposes li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.contact-purposes li::before {
  content: "";
  position: absolute;
  left: 4px; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.contact-meta { margin-top: 30px; font-size: 12.5px; color: var(--text-tertiary); line-height: 1.8; }

/* =========================================================
   404
   ========================================================= */
.nf {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: 80px;
}
.nf .code {
  font-size: clamp(72px, 20vw, 140px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nf h1 { font-size: clamp(20px, 4vw, 26px); margin: 20px 0 12px; }
.nf p { color: var(--text-secondary); font-size: 15px; margin-bottom: 30px; }

/* =========================================================
   Reveal on scroll
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Focus visibility for accessibility */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
