/* Custom CSS for AI-HomeLab Landing Page and Benchmark Dashboard */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Fira+Code:wght@400;500;600&display=swap');

:root {
  --bg-color: #08090d;
  --bg-gradient: radial-gradient(circle at 10% 20%, rgba(124, 58, 237, 0.08) 0%, transparent 45%),
                 radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 45%),
                 #08090d;
  --panel-bg: rgba(255, 255, 255, 0.025);
  --panel-border: rgba(255, 255, 255, 0.05);
  --panel-border-top: rgba(255, 255, 255, 0.09);
  
  --primary: #7c3aed;
  --primary-glow: rgba(124, 58, 237, 0.2);
  --secondary: #06b6d4;
  --secondary-glow: rgba(6, 182, 212, 0.2);
  --accent: #f43f5e;
  --success: #10b981;
  --warning: #f59e0b;
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --terminal-bg: #0b0d16;
  --terminal-border: rgba(255, 255, 255, 0.06);
  
  --font-sans: 'Outfit', sans-serif;
  --font-mono: 'Fira Code', monospace;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 16px 50px rgba(0, 0, 0, 0.8);
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base resets & styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-color);
}

body {
  font-family: var(--font-sans);
  background: var(--bg-gradient);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(0px + env(safe-area-inset-bottom));
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Typography & Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Multilingual Toggle visibility */
body.lang-en .lang-ua {
  display: none !important;
}
body.lang-ua .lang-en {
  display: none !important;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.3;
    box-shadow: 0 0 15px var(--primary-glow);
  }
  50% {
    opacity: 0.6;
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.4);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Glass panel component */
.glass-panel {
  background: var(--panel-bg);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid var(--panel-border);
  border-top: 1px solid var(--panel-border-top);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.glass-panel:hover {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

/* Navigation Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8, 9, 13, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--panel-border);
  transition: var(--transition-normal);
}

header.scrolled {
  background: rgba(8, 9, 13, 0.9);
  padding: 0.3rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

.logo-glow {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

nav a:hover, nav a.active {
  color: var(--text-primary);
  text-shadow: 0 0 10px var(--primary-glow);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 2px 4px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 8px;
  cursor: pointer;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.lang-btn:hover {
  color: var(--text-secondary);
}

.lang-btn.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.lang-separator {
  color: rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  margin: 0 2px;
  user-select: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  gap: 6px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  position: relative;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
  text-align: center;
}

.hero-glow-sphere {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 850px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #a78bfa;
  margin-bottom: 2rem;
  box-shadow: inset 0 0 10px rgba(124, 58, 237, 0.05);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: #a78bfa;
  border-radius: 50%;
  box-shadow: 0 0 8px #a78bfa;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #f8fafc, #cbd5e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-logo-container {
  width: 140px;
  height: 140px;
  border-radius: 28px;
  padding: 4px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(6, 182, 212, 0.3));
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(124, 58, 237, 0.15);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.install-box {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--panel-border);
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  max-width: 100%;
  width: 550px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.install-cmd {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-primary);
  text-align: left;
  overflow-x: auto;
  white-space: nowrap;
  flex-grow: 1;
  padding-right: 1rem;
  min-width: 0;
}

.install-cmd span {
  color: var(--primary);
  margin-right: 0.5rem;
  font-weight: 600;
  user-select: none;
}

.copy-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.copy-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.copy-tooltip {
  position: absolute;
  bottom: -32px;
  right: 12px;
  background: var(--success);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
}

.copy-tooltip.show {
  opacity: 1;
  transform: translateY(0);
}

/* Sections General */
section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #f8fafc, #cbd5e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* Tabs & Controller style */
.btn-pill-group {
  display: inline-flex;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--panel-border);
  padding: 4px;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.btn-pill {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-pill:hover {
  color: var(--text-primary);
}

.btn-pill.active {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* Benchmarks Dashboard Section */
.dashboard-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dashboard-nav {
  display: flex;
  justify-content: center;
}

.dashboard-panel {
  padding: 2.5rem;
}

/* Table Style */
.table-container {
  width: 100%;
  overflow-x: auto;
  margin-top: 1rem;
}

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

th, td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

th {
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

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

tr.highlight-row {
  background: rgba(124, 58, 237, 0.03);
}

tr.highlight-row-secondary {
  background: rgba(6, 182, 212, 0.03);
}

td.highlight-cell {
  color: var(--success);
  font-weight: 600;
}

td.bold-cell {
  font-weight: 600;
  color: var(--text-primary);
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 0.8rem;
  padding: 3px 8px;
  border-radius: 4px;
}

.status-indicator.success {
  background: rgba(16, 185, 129, 0.08);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.status-indicator.warning {
  background: rgba(245, 158, 11, 0.08);
  color: var(--warning);
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.status-indicator.danger {
  background: rgba(244, 63, 94, 0.08);
  color: var(--accent);
  border: 1px solid rgba(244, 63, 94, 0.15);
}

/* Chart Bars */
.chart-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.chart-bar-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.chart-bar-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 500;
}

.chart-bar-name {
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.chart-bar-meta {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.chart-bar-value {
  font-weight: 600;
  color: var(--secondary);
}

.chart-bar-value.top-value {
  color: #a78bfa;
}

.chart-bar-track {
  width: 100%;
  height: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 100px;
  overflow: hidden;
}

.chart-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(95deg, var(--primary), var(--secondary));
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
  width: 0%; /* Animates with JS */
}

.chart-bar-fill.top-fill {
  background: linear-gradient(95deg, #7c3aed, #a78bfa);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #a78bfa;
  margin-bottom: 0.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Installation Guide Section */
.install-pane {
  display: none;
  animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.install-pane.active {
  display: block;
}

.profile-pane {
  display: none;
  animation: fadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.profile-pane.active {
  display: block;
}

.install-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.step-card {
  display: flex;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 2rem;
  border-radius: 16px;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.step-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #a78bfa;
  font-size: 1rem;
}

.step-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

.step-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.code-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  margin-top: 0.5rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.code-text {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #cbd5e1;
  text-align: left;
  overflow-x: auto;
  white-space: nowrap;
  flex-grow: 1;
  padding-right: 1rem;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

/* Power Resiliency layout */
.resiliency-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  text-align: left;
}

.resiliency-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.resiliency-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.resiliency-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.resiliency-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.resiliency-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
}

.resiliency-calculator {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.calc-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.calc-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

select.calc-select, input.calc-input {
  background: #0f111a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-fast);
}

select.calc-select option {
  background: #0f111a;
  color: var(--text-primary);
}

select.calc-select:focus, input.calc-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 8px var(--primary-glow);
}

.calc-result-box {
  background: rgba(124, 58, 237, 0.05);
  border: 1px solid rgba(124, 58, 237, 0.15);
  padding: 1.25rem;
  border-radius: 10px;
  text-align: center;
  margin-top: 0.5rem;
}

.calc-result-num {
  font-size: 2rem;
  font-weight: 800;
  color: #a78bfa;
}

.calc-result-unit {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Footer */
footer {
  background: #050608;
  border-top: 1px solid var(--panel-border);
  padding: 80px 0 40px 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
  text-align: left;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-credit {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.heart-icon {
  color: var(--warning);
  animation: pulse-glow 2s infinite;
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.75rem;
  }
  .resiliency-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-container {
    height: auto;
    padding: 1rem 2rem;
    flex-direction: column;
    gap: 1rem;
  }
  
  header {
    position: relative;
    background: var(--bg-color);
  }
  
  .hero {
    padding-top: 40px;
  }
  
  nav ul {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-actions {
    width: 100%;
    justify-content: center;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .step-card {
    flex-direction: column;
    gap: 1rem;
  }
  
  .code-block {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  
  .code-text {
    padding-right: 0;
  }
  
  .copy-btn {
    align-self: flex-end;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
