/* ===== FUTURISTIC SYNTHWAVE AUTOMATION THEME ===== */

/* Fonts are imported in base.njk template */
/* This CSS file focuses on styling and custom effects */

/* Elianto font styles - using TailwindCSS conventions */
/* Use: font-elianto + standard Tailwind weight classes (font-light, font-medium, etc.) */

/* CSS Variables for easy theming */
:root {
  --neon-pink: #ff0080;
  --neon-cyan: #00ffff;
  --neon-purple: #8000ff;
  --electric-blue: #0066ff;
  --deep-space: #0a0a0a;
  --dark-steel: #1a1a2e;
  --midnight-blue: #16213e;
  --tech-grid: #0eaeff;
  --warning-orange: #ff6b00;
  --success-green: #00ff88;
  
  /* Animation durations */
  --fast: 0.2s;
  --medium: 0.4s;
  --slow: 0.8s;
  --crawl: 2s;
}

/* Global body styling with optimized background */
body {
  font-family: "Space Grotesk", system-ui, sans-serif;
  background: 
    radial-gradient(ellipse at top, var(--midnight-blue) 0%, var(--deep-space) 70%),
    linear-gradient(45deg, transparent 40%, rgba(0, 255, 255, 0.03) 50%, transparent 60%),
    linear-gradient(-45deg, transparent 40%, rgba(255, 0, 128, 0.03) 50%, transparent 60%);
  background-size: 100% 100%, 60px 60px, 60px 60px;
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  /* Remove heavy animation that affects scroll */
  will-change: auto;
}

/* Optimized scroll performance */
* {
  /* Ensure smooth scrolling on all elements */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Optimized static circuit pattern overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(90deg, transparent 98%, var(--tech-grid) 100%),
    linear-gradient(180deg, transparent 98%, var(--tech-grid) 100%);
  background-size: 100px 100px;
  opacity: 0.08;
  pointer-events: none;
  z-index: -1;
  will-change: auto;
}

/* Optimized section styling */
.synthwave-section {
  background: 
    linear-gradient(135deg, 
      rgba(26, 32, 44, 0.6) 0%, 
      rgba(45, 55, 72, 0.4) 100%
    );
  position: relative;
  border-top: 1px solid rgba(0, 255, 255, 0.1);
  border-bottom: 1px solid rgba(0, 255, 255, 0.05);
  will-change: transform;
  contain: layout style paint;
}

/* Optimized static grid overlay */
.synthwave-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, transparent 98%, rgba(0, 255, 255, 0.03) 100%),
    linear-gradient(180deg, transparent 98%, rgba(0, 255, 255, 0.03) 100%);
  background-size: 100px 100px;
  opacity: 0.3;
  pointer-events: none;
  will-change: auto;
  contain: strict;
}

/* Optimized alternate section */
.synthwave-section-alt {
  background: 
    linear-gradient(135deg, 
      rgba(45, 55, 72, 0.6) 0%, 
      rgba(55, 65, 81, 0.4) 100%
    );
  position: relative;
  border-top: 1px solid rgba(255, 0, 128, 0.1);
  border-bottom: 1px solid rgba(255, 0, 128, 0.05);
  will-change: transform;
  contain: layout style paint;
}

.synthwave-section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, transparent 98%, rgba(255, 0, 128, 0.03) 100%),
    linear-gradient(180deg, transparent 98%, rgba(255, 0, 128, 0.03) 100%);
  background-size: 100px 100px;
  opacity: 0.3;
  pointer-events: none;
  will-change: auto;
  contain: strict;
}

/* Hero section with particle effect */
.hero-bg {
  background: 
    radial-gradient(ellipse at center, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, var(--dark-steel) 0%, var(--midnight-blue) 50%, var(--deep-space) 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

/* Floating particles animation */
.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, var(--neon-cyan), transparent),
    radial-gradient(2px 2px at 40px 70px, var(--neon-pink), transparent),
    radial-gradient(1px 1px at 90px 40px, var(--neon-purple), transparent),
    radial-gradient(1px 1px at 130px 80px, var(--electric-blue), transparent),
    radial-gradient(2px 2px at 160px 30px, var(--neon-cyan), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: particle-float 20s linear infinite;
  opacity: 0.6;
  pointer-events: none;
}

@keyframes particle-float {
  0% { background-position: 0 0, 0 0, 0 0, 0 0, 0 0; }
  100% { background-position: 200px 100px, -200px 100px, 200px -100px, -200px -100px, 200px 100px; }
}

/* Advanced CTA button with hologram effect */
.cta-button {
  position: relative;
  overflow: hidden;
  background: linear-gradient(45deg, var(--neon-pink), var(--electric-blue));
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: all var(--medium) ease;
  box-shadow: 
    0 0 20px rgba(255, 0, 128, 0.4),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
  transform-style: preserve-3d;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left var(--slow) ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 10px 30px rgba(255, 0, 128, 0.6),
    0 0 50px rgba(0, 255, 255, 0.3),
    inset 0 0 30px rgba(255, 255, 255, 0.2);
  border-color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Glitch effect for section titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  text-align: center;
  background: linear-gradient(45deg, var(--neon-pink), var(--neon-cyan), var(--neon-purple));
  background-size: 300% 300%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 3s ease-in-out infinite, text-glow 2s ease-in-out infinite alternate;
  position: relative;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes text-glow {
  0% { 
    filter: drop-shadow(0 0 5px var(--neon-pink)) drop-shadow(0 0 10px var(--neon-cyan));
  }
  100% { 
    filter: drop-shadow(0 0 10px var(--neon-cyan)) drop-shadow(0 0 20px var(--neon-pink));
  }
}

/* Subtle hover effect instead of glitch */
.section-title:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 15px var(--neon-cyan)) drop-shadow(0 0 25px var(--neon-pink));
}

/* Optimized benefit cards */
.benefit-card {
  background: 
    linear-gradient(135deg, 
      rgba(55, 65, 81, 0.9) 0%, 
      rgba(75, 85, 99, 0.8) 100%
    );
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(0, 255, 255, 0.2);
  box-shadow: 
    0 10px 25px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform var(--medium) ease, box-shadow var(--medium) ease, border-color var(--medium) ease;
  position: relative;
  overflow: hidden;
  will-change: transform;
  contain: layout style;
}

/* Subtle glow effect instead of scanning line */
.benefit-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.benefit-card:hover {
  transform: translateY(-10px) rotateX(5deg);
  border-color: var(--neon-pink);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(255, 0, 128, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.benefit-card:hover::after {
  opacity: 1;
}

/* Icon effects with energy pulse - fixed visibility issue */
.icon-placeholder {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.5rem;
  filter: 
    drop-shadow(0 0 10px var(--neon-cyan))
    drop-shadow(0 0 20px rgba(0, 255, 255, 0.3));
  animation: icon-pulse 2s ease-in-out infinite;
  transition: transform var(--medium) ease, filter var(--medium) ease;
  backface-visibility: visible;
  transform-style: preserve-3d;
}

@keyframes icon-pulse {
  0%, 100% { 
    filter: 
      drop-shadow(0 0 10px var(--neon-cyan))
      drop-shadow(0 0 20px rgba(0, 255, 255, 0.3));
  }
  50% { 
    filter: 
      drop-shadow(0 0 15px var(--neon-pink))
      drop-shadow(0 0 30px rgba(255, 0, 128, 0.5));
  }
}

.benefit-card:hover .icon-placeholder {
  transform: scale(1.2) rotateY(180deg);
  filter: 
    drop-shadow(0 0 20px var(--neon-pink))
    drop-shadow(0 0 40px rgba(255, 0, 128, 0.6));
  animation-play-state: paused;
}

/* Subtle neon text effect */
.neon-text {
  text-shadow: 
    0 0 3px currentColor,
    0 0 6px currentColor,
    0 0 8px var(--neon-pink);
  transition: text-shadow 0.3s ease;
}

.neon-text:hover {
  text-shadow: 
    0 0 3px currentColor,
    0 0 8px currentColor,
    0 0 12px var(--neon-pink),
    0 0 16px var(--neon-pink);
}

/* Subtle static grid */
.synthwave-grid {
  background-image: 
    linear-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 100px 100px;
}

/* Subtle processing indicator - no animation */
.processing-indicator {
  position: relative;
  border: 1px solid rgba(0, 255, 136, 0.3);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.1);
}

/* Holographic button effect */
.holo-button {
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  background-size: 200% 200%;
  border: 1px solid var(--neon-cyan);
  transition: all var(--medium) ease;
  position: relative;
  overflow: hidden;
}

.holo-button:hover {
  background-position: 100% 100%;
  box-shadow: 
    0 0 20px var(--neon-cyan),
    inset 0 0 20px rgba(0, 255, 255, 0.1);
  transform: scale(1.05);
}

/* Matrix-style code rain effect (subtle) */
.matrix-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
}

.matrix-bg::before {
  content: '01001001 01101110 01011010 01100001 01110010 01111001 01110011';
  position: absolute;
  color: var(--tech-grid);
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  opacity: 0.03;
  animation: matrix-fall 20s linear infinite;
  white-space: nowrap;
}

@keyframes matrix-fall {
  0% { 
    transform: translateY(-100vh); 
  }
  100% { 
    transform: translateY(100vh); 
  }
}

/* Responsive glow effects */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .benefit-card:hover {
    transform: translateY(-5px);
  }
  
  .cta-button:hover {
    transform: translateY(-2px) scale(1.02);
  }

  /* Header responsywność */
  header .container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  header h1 {
    font-size: 1.5rem;
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  
  /* Przycisk w headerze */
  header .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    width: 100%;
    max-width: 250px;
  }

  /* Hero section responsywność */
  .hero-bg {
    min-height: 90vh;
    padding: 2rem 0;
  }

  /* CTA button w hero - porozmawiajmy o oszczędnościach */
  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
    text-align: center;
  }

  /* Grid responsywność dla kart */
  .grid.md\\:grid-cols-2,
  .grid.md\\:grid-cols-3,
  .grid.md\\:grid-cols-4,
  .grid.lg\\:grid-cols-2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Process simulator tabs - naprawienie overflow */
  .process-tab {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    min-width: 0;
    flex: 1;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Container dla tabów z overflow scroll */
  .process-tabs-container {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .process-tabs-container::-webkit-scrollbar {
    display: none;
  }

  /* Benefit cards na mobilkach */
  .benefit-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  /* ROI Calculator responsywność */
  .max-w-6xl {
    padding: 0 1rem;
  }

  /* Statystyki - miernik sukcesu */
  .grid.md\\:grid-cols-4 .benefit-card {
    padding: 1rem;
  }
  
  .grid.md\\:grid-cols-4 .benefit-card .text-4xl {
    font-size: 2rem;
  }

  .grid.md\\:grid-cols-3 .benefit-card {
    padding: 1rem;
  }

  /* Animacje - wyłączenie na urządzeniach mobilnych dla lepszej wydajności */
  .animate-spin-slow,
  .animate-bounce-slow,
  .animate-pulse {
    animation: none !important;
  }

  /* Alternatywne, delikatne animacje na mobilkach */
  .animate-spin-slow {
    animation: simple-fade 2s ease-in-out infinite alternate !important;
  }

  .animate-bounce-slow {
    animation: simple-scale 1.5s ease-in-out infinite alternate !important;
  }

  .animate-pulse {
    animation: simple-glow 2s ease-in-out infinite alternate !important;
  }

  @keyframes simple-fade {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
  }

  @keyframes simple-scale {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
  }

  @keyframes simple-glow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.1); }
  }

  /* Particle canvas - wyłączenie na mobilkach */
  #particle-canvas {
    display: none !important;
  }

  /* Matrix background - wyłączenie na mobilkach */
  .matrix-bg {
    display: none !important;
  }

  /* Section padding */
  .py-16 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .py-24 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  /* Text sizes */
  .text-3xl {
    font-size: 1.5rem;
  }

  .text-4xl {
    font-size: 1.75rem;
  }

  .text-2xl {
    font-size: 1.25rem;
  }
}

/* Bardzo małe ekrany */
@media (max-width: 480px) {
  /* Header jeszcze bardziej skompresowany */
  header .container {
    padding: 1rem;
  }

  header h1 {
    font-size: 1.25rem;
  }

  /* CTA buttons jeszcze mniejsze */
  .cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
  }

  /* Process tabs na bardzo małych ekranach */
  .process-tab {
    padding: 0.5rem 0.25rem;
    font-size: 0.625rem;
  }

  /* Container padding */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Section titles */
  .section-title {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  /* Grid gap reduction */
  .gap-8 {
    gap: 1rem;
  }

  .gap-6 {
    gap: 0.75rem;
  }

  /* Statystyki kompaktowe */
  .grid.md\\:grid-cols-4 .benefit-card .text-4xl {
    font-size: 1.5rem;
  }

  .grid.md\\:grid-cols-3 .text-6xl {
    font-size: 3rem;
  }
}

/* Tablet landscape */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Header w trybie tablet */
  header .container {
    flex-direction: row;
    justify-content: space-between;
  }

  /* Process tabs na tabletach */
  .process-tab {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }

  /* Grid adjustments dla tabletów */
  .grid.md\\:grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* Adjust border widths for high DPI */
  .benefit-card {
    border-width: 0.5px;
  }
  
  .cta-button {
    border-width: 1px;
  }
}

/* Accessibility: Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Additional scroll performance optimizations */
.hero-bg, .synthwave-section, .synthwave-section-alt {
  transform: translateZ(0);
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.section-title, .benefit-card, .cta-button {
  transform: translateZ(0);
}

/* Remove entrance animations - elements should just appear normally */

/* Stagger animation delays - keeping for compatibility but not used */
.animate-delay-1 { /* unused */ }
.animate-delay-2 { /* unused */ }
.animate-delay-3 { /* unused */ }
.animate-delay-4 { /* unused */ }
.animate-delay-5 { /* unused */ }

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  /* Remove hover effects on touch devices */
  .cta-button:hover,
  .benefit-card:hover,
  .holo-button:hover,
  .process-tab:hover {
    transform: none;
    box-shadow: inherit;
  }

  /* Larger touch targets */
  .cta-button,
  .process-tab,
  .quiz-option {
    min-height: 44px;
    padding: 0.75rem 1rem;
  }

  /* Better tap feedback */
  .cta-button:active,
  .process-tab:active,
  .quiz-option:active {
    transform: scale(0.98);
    opacity: 0.8;
  }
}

/* Landscape mobile orientation */
/* ===== BLOG CONTENT STYLES ===== */

/* Prose styling for blog articles */
.prose {
  color: #e2e8f0;
  max-width: none;
  line-height: 1.7;
}

.prose-lg {
  font-size: 1.125rem;
  line-height: 1.8;
}

.prose-invert {
  color: #e2e8f0;
}

.prose-pink {
  color: #e2e8f0;
}

/* Typography */
.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
  color: #ffffff;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.prose h1 {
  font-size: 2.5rem;
  color: #ec4899;
  text-shadow: 0 0 20px rgba(236, 72, 153, 0.5);
}

.prose h2 {
  font-size: 2rem;
  color: #06b6d4;
  position: relative;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(6, 182, 212, 0.3);
  margin-top: 3rem;
}

.prose h3 {
  font-size: 1.5rem;
  color: #a855f7;
  margin-top: 2.5rem;
}

.prose h4 {
  font-size: 1.25rem;
  color: #f59e0b;
}

/* Paragraphs and text */
.prose p {
  margin-bottom: 1.5rem;
  color: #cbd5e1;
}

.prose strong {
  color: #ffffff;
  font-weight: 600;
}

.prose em {
  color: #ec4899;
  font-style: italic;
}

/* Lists */
.prose ul, .prose ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
  color: #cbd5e1;
}

.prose ul li::marker {
  color: #06b6d4;
}

.prose ol li::marker {
  color: #ec4899;
  font-weight: 600;
}

/* Links */
.prose a {
  color: #06b6d4;
  text-decoration: none;
  border-bottom: 1px solid rgba(6, 182, 212, 0.3);
  transition: all 0.3s ease;
}

.prose a:hover {
  color: #ec4899;
  border-bottom-color: rgba(236, 72, 153, 0.5);
  text-shadow: 0 0 10px rgba(236, 72, 153, 0.3);
}

/* Code blocks */
.prose code {
  background: rgba(15, 23, 42, 0.8);
  color: #06b6d4;
  padding: 0.2rem 0.4rem;
  border-radius: 0.25rem;
  font-size: 0.9em;
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.prose pre {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 0.5rem;
  padding: 1rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.prose pre code {
  background: none;
  border: none;
  padding: 0;
}

/* Blockquotes */
.prose blockquote {
  border-left: 4px solid #ec4899;
  background: rgba(236, 72, 153, 0.1);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #e2e8f0;
  border-radius: 0 0.5rem 0.5rem 0;
}

.prose blockquote p {
  margin-bottom: 0;
}

/* Tables */
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: rgba(15, 23, 42, 0.5);
  border-radius: 0.5rem;
  overflow: hidden;
}

.prose th {
  background: rgba(6, 182, 212, 0.2);
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem;
  text-align: left;
  border-bottom: 2px solid rgba(6, 182, 212, 0.3);
}

.prose td {
  padding: 0.75rem;
  border-bottom: 1px solid rgba(71, 85, 105, 0.3);
  color: #cbd5e1;
}

.prose tr:nth-child(even) {
  background: rgba(71, 85, 105, 0.1);
}

/* Line clamp utility for excerpts */
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Blog card hover effects */
.blog-card {
  transition: all 0.3s ease;
  will-change: transform;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) and (orientation: landscape) {
  .hero-bg {
    min-height: 70vh;
    padding: 1rem 0;
  }

  .py-16 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
} 