@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Inter:wght@300;400;500;600&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #09070a;
  --bg-card:     rgba(255,255,255,0.03);
  --bg-card-h:   rgba(255,255,255,0.06);
  --border:      rgba(255,255,255,0.08);
  --border-h:    rgba(179,39,44,0.45);
  --gold:        #b3272c;   /* primary accent — kept var name for JS/markup compat */
  --gold-light:  #e0524a;
  --gold-dim:    rgba(179,39,44,0.15);
  --text:        #e9e2e2;
  --text-muted:  #857577;
  --online:      #4caf7d;
  --offline:     #d98a3d;
  --radius:      12px;
  --transition:  0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Background ───────────────────────────────────────────── */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url('/static/img/bg.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  filter: brightness(0.62) saturate(1.05);
}

.bg-gradient {
  position: fixed;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(179,39,44,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 120% 60% at 50% 100%, rgba(179,39,44,0.05) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(9,7,10,0.25) 0%, rgba(9,7,10,0.82) 55%, rgba(9,7,10,1) 100%);
}

/* faint grain/vignette for atmosphere, no image needed */
.bg-gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 220px 40px rgba(0,0,0,0.75);
  pointer-events: none;
}

#app { position: relative; z-index: 2; }

.lk-layout { min-height: calc(100vh - 160px); }

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(179,39,44,0.4); border-radius: 3px; }

/* ── Navigation ───────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 2rem;
  height: 68px;
  background: rgba(9,7,10,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(179,39,44,0.15);
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lang-sep {
  color: var(--border);
  font-size: 12px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 4px;
  transition: color var(--transition);
  font-family: 'Inter', sans-serif;
}

.lang-btn:hover { color: var(--text); }
.lang-btn.active { color: var(--gold-light); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo::before {
  content: '';
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 14px rgba(179,39,44,0.45), inset 0 0 10px rgba(179,39,44,0.25);
  transition: box-shadow var(--transition);
  flex-shrink: 0;
}

.nav-logo:hover::before {
  box-shadow: 0 0 22px rgba(179,39,44,0.7), inset 0 0 14px rgba(179,39,44,0.4);
}

.logo-text {
  font-family: 'Cinzel', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 8px;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-sep {
  width: 1px;
  height: 16px;
  background: var(--border);
  margin: 0 4px;
}

.btn-nav {
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border: none;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-gold {
  background: var(--gold);
  color: #f5eded;
  font-weight: 700;
}

.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 0 22px rgba(179,39,44,0.45);
}

/* ── Community Menu ────────────────────────────────────────── */
.burger-wrap {
  position: relative;
}

.community-trigger {
  cursor: pointer;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 8px;
  display: block;
  transition: color var(--transition), background var(--transition);
  user-select: none;
}

.burger-wrap:hover .community-trigger,
.burger-wrap.open .community-trigger {
  color: var(--text);
  background: var(--bg-card);
}

.community-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 200px;
  background: rgba(15,10,11,0.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  animation: fadeDown 0.2s ease;
}

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

.community-dropdown.open { display: flex; }

.community-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}

.community-dropdown a:hover {
  background: var(--bg-card-h);
  color: var(--gold-light);
}

.community-dropdown a svg {
  width: 18px; height: 18px;
  opacity: 0.7;
  flex-shrink: 0;
}

.community-dropdown a:hover svg { opacity: 1; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 2rem 4rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.hero-eyebrow::after { background: linear-gradient(to left, transparent, var(--gold)); }

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(3rem, 8vw, 6.2rem);
  font-weight: 900;
  line-height: 1.02;
  color: var(--text);
  margin-bottom: 1.1rem;
  letter-spacing: 0.02em;
  text-shadow: 0 0 40px rgba(179,39,44,0.35);
}

.hero-title .accent { color: var(--gold-light); }

/* ornamental divider */
.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 260px;
  margin: 0 auto 2.5rem;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-h));
}

.divider::after { background: linear-gradient(to left, transparent, var(--border-h)); }

.divider-dot {
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  background: var(--gold);
  box-shadow: 0 0 8px rgba(179,39,44,0.6);
  flex-shrink: 0;
}

/* Server Status Card */
.status-card {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 20px 56px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 1px solid var(--border-h);
  border-radius: 4px;
  backdrop-filter: blur(10px);
  margin-bottom: 2.5rem;
}

.status-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.status-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.status-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.date-en { display: none; }
html[data-lang="en"] .date-ru { display: none; }
html[data-lang="en"] .date-en { display: inline; }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-lg {
  padding: 15px 34px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}

/* ── Section commons ──────────────────────────────────────── */
section {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.section-tag::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 620px;
}


/* ── About / Chronicle article layout ────────────────────────── */
#about {
  max-width: 1320px;
}

.about-container {
  margin-top: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 0;
}

.about-section {
  padding: 2.5rem 2.75rem;
  scroll-margin-top: 90px;
}

.about-section + .about-section {
  border-top: 1px solid var(--border);
}

.about-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.25rem;
}

.about-section-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border: 1px solid var(--border-h);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-section-icon svg {
  width: 16px;
  height: 16px;
  transform: rotate(-45deg);
  color: var(--gold-light);
}

.about-section-title {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.about-section-content {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.9;
}

.about-section-content > .lang-ru,
.about-section-content > .lang-en {
  white-space: pre-wrap;
}

.about-section-content strong {
  color: var(--gold-light);
  font-weight: 700;
}

/* Bilingual content: show Russian by default, swap to English via html[data-lang="en"] */
.lang-en { display: none; }
html[data-lang="en"] .lang-ru { display: none; }
html[data-lang="en"] .lang-en { display: block; }

.about-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 0.25rem;
}

.about-table th {
  text-align: left;
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 0 12px 10px 0;
  border-bottom: 1px solid var(--border-h);
}

.about-table td {
  padding: 8px 12px 8px 0;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

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

.about-table td:first-child,
.about-table th:first-child { color: var(--text); font-weight: 500; }

/* ── Donate Section ───────────────────────────────────────── */
.donate-box {
  margin-top: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 1px solid var(--border-h);
  border-radius: var(--radius);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.donate-info h3 {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.donate-info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px; height: 8px;
  background: var(--bg);
  border: 1px solid var(--border-h);
}

footer a { color: var(--text-muted); text-decoration: none; }
footer a:hover { color: var(--gold-light); }

.partner-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1rem;
}

.partner-grid a {
  display: flex;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: filter 0.3s, opacity 0.3s;
}

.partner-grid a:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.partner-grid img {
  width: 94px;
  height: auto;
  object-fit: contain;
}

/* ── Modal ────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  position: relative;
  background: #120c0d;
  border: 1px solid var(--border);
  border-top: 1px solid var(--border-h);
  border-radius: 16px;
  padding: 2.5rem 2.5rem 2.5rem 2.5rem;
  padding-top: 4rem;
  width: 100%;
  max-width: 400px;
  transform: translateY(16px);
  transition: transform 0.2s ease;
}

.modal-overlay.open .modal { transform: translateY(0); }

.modal-title {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.modal-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: border-color var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--gold);
}

.form-error {
  font-size: 12px;
  color: var(--gold-light);
  margin-top: 0.5rem;
  display: none;
}

.btn-full {
  width: 100%;
  padding: 13px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  margin-top: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  padding: 4px;
}

.modal-close:hover { color: var(--text); }

.modal-tabs {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 3px;
  margin-bottom: 1.5rem;
}

.modal-tab {
  flex: 1;
  padding: 8px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
}

.modal-tab.active {
  background: var(--gold);
  color: #f5eded;
}

/* ── Start Play Modal ─────────────────────────────────────── */
.start-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1.5rem;
}

.start-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.start-step:last-child { border-bottom: none; }

.start-step-num {
  width: 32px;
  height: 32px;
  background: var(--gold-dim);
  border: 1px solid var(--border-h);
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transform: rotate(45deg);
}

.start-step-num span { transform: rotate(-45deg); display: block; }

.start-step-body { flex: 1; }

.start-step-title {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.start-step-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.btn-sm-action {
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
}

.btn-sm-action.btn-gold {
  background: var(--gold);
  color: #f5eded;
}

.btn-sm-action.btn-gold:hover {
  background: var(--gold-light);
}

.download-groups {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.download-group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.download-group-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  min-width: 72px;
}

.download-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 7px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition);
}

.download-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.start-path {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 7px;
  font-family: monospace;
  font-size: 13px;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

/* ── LK (Personal Account) ────────────────────────────────── */
.lk-layout {
  max-width: 900px;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
}

.lk-header {
  margin-bottom: 3rem;
}

.lk-title {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

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

.lk-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.5rem;
  min-width: 0;
}

.lk-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lk-tab {
  padding: 12px 16px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition);
}

.lk-tab:hover { background: var(--bg-card); color: var(--text); }
.lk-tab.active {
  background: var(--gold-dim);
  border-color: var(--border-h);
  color: var(--gold-light);
}

.lk-panel {
  display: none;
  min-width: 0;
  width: 100%;
}

.lk-panel.active { display: block; }

.lk-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.lk-card-title {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 1.5rem;
}

/* Donations table */
.donations-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 14px;
}

.donations-table th {
  text-align: left;
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--border);
}

.donations-table td {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text);
}

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

.badge {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-completed { background: rgba(76,175,125,0.15); color: var(--online); }
.badge-pending   { background: rgba(179,39,44,0.15); color: var(--gold-light); }
.badge-failed    { background: rgba(217,138,61,0.15); color: var(--offline); }

/* ── Utility ──────────────────────────────────────────────── */
.text-gold { color: var(--gold-light); }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 0 1rem; }
  .nav-links { display: none; }
  .lk-grid { grid-template-columns: 1fr; }
  .status-card { flex-direction: column; gap: 1rem; }
  .donate-box { flex-direction: column; }
}
