/* Lokstra Framework Website - Main Stylesheet */

:root {
  --bg: #0f172a;
  --text: #e2e8f0;
  --accent: #38bdf8;
}

/* Base Styles */
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(56, 189, 248, 0.1) 0%,
      transparent 25%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(56, 189, 248, 0.05) 0%,
      transparent 25%
    );
  color: var(--text);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  scroll-behavior: smooth;
}

header,
footer {
  text-align: center;
  padding: 2rem;
}

main {
  flex: 1;
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
}

/* Typography */
h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
  text-shadow: 0 0 30px rgba(56, 189, 248, 0.3);
}

h2 {
  color: var(--accent);
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

h3 {
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

h4 {
  color: #94a3b8;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

p,
li {
  line-height: 1.6;
  margin-bottom: 1rem;
}

ul,
ol {
  padding-left: 1.5rem;
}

/* Language Switcher */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switch {
  display: flex;
  gap: 0.25rem;
  background: rgba(30, 41, 59, 0.8);
  padding: 0.25rem;
  border-radius: 8px;
  border: 1px solid rgba(56, 189, 248, 0.1);
}

.lang-switch.mobile {
  display: none;
}

.mobile-lang {
  display: none;
}

.lang-btn {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  min-width: 32px;
  text-align: center;
  letter-spacing: 0.5px;
}

.lang-btn:hover {
  color: var(--accent);
  background: rgba(56, 189, 248, 0.1);
}

.lang-btn.active {
  color: var(--accent);
  background: rgba(56, 189, 248, 0.15);
}

/* Navigation */
.navbar {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(56, 189, 248, 0.1);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-logo:hover {
  color: #0ea5e9;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.nav-links a:hover {
  color: var(--accent);
  background: rgba(56, 189, 248, 0.1);
}

.nav-links a.active {
  color: var(--accent);
  background: rgba(56, 189, 248, 0.15);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Layout Components */
.hero-section {
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.1) 0%,
    rgba(15, 23, 42, 0.8) 100%
  );
  border-radius: 20px;
  margin-bottom: 4rem;
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.content-section {
  background: #1e293b;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  border: 1px solid rgba(56, 189, 248, 0.1);
  transition: all 0.3s ease;
}

.content-section:hover {
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.1);
}

/* Homepage Components */
/* Badges */
.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.badge {
  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.2),
    rgba(56, 189, 248, 0.1)
  );
  color: var(--text);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(56, 189, 248, 0.3);
  white-space: nowrap;
}

.badge.go {
  background: linear-gradient(
    135deg,
    rgba(0, 173, 181, 0.2),
    rgba(0, 173, 181, 0.1)
  );
  border-color: rgba(0, 173, 181, 0.3);
}

.badge.opensource {
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.2),
    rgba(34, 197, 94, 0.1)
  );
  border-color: rgba(34, 197, 94, 0.3);
}

/* Stats Grid */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.stat {
  text-align: center;
  padding: 0.75rem 0.5rem;
  background: rgba(45, 55, 72, 0.6);
  border: 1px solid rgba(56, 189, 248, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.stat:hover {
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.4rem;
}

.stat-label {
  color: #cbd5e1;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 2rem 0;
  margin-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--accent),
    rgba(56, 189, 248, 0.3)
  );
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 3rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.3);
}

.timeline-year {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.timeline-content {
  background: rgba(45, 55, 72, 0.6);
  border: 1px solid rgba(56, 189, 248, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.timeline-content strong {
  color: var(--text);
  display: block;
  margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  margin: 0.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), #0ea5e9);
  color: white;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.4);
}

.btn.github {
  background: rgba(45, 55, 72, 0.8);
  color: var(--text);
  border-color: rgba(94, 94, 94, 0.3);
}

.btn.github:hover {
  background: rgba(55, 65, 81, 0.9);
  border-color: rgba(156, 163, 175, 0.5);
  transform: translateY(-2px);
}

.btn.telegram {
  background: linear-gradient(135deg, #0088cc, #006bb3);
  color: white;
}

.btn.telegram:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

.btn.discussions {
  background: rgba(45, 55, 72, 0.8);
  color: var(--text);
  border-color: rgba(156, 163, 175, 0.3);
}

.btn.discussions:hover {
  background: rgba(55, 65, 81, 0.9);
  border-color: rgba(156, 163, 175, 0.5);
  transform: translateY(-2px);
}

/* Features Grid */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature {
  background: rgba(45, 55, 72, 0.6);
  border: 1px solid rgba(56, 189, 248, 0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature:hover {
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature h3 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* Target Users */
.target-users {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.user-card {
  background: rgba(45, 55, 72, 0.6);
  border: 1px solid rgba(56, 189, 248, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.user-card:hover {
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-2px);
}

.user-card h4 {
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.user-card p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Code Examples */
.code-example {
  background: #1e293b;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 8px;
  overflow: hidden;
  margin: 1rem 0;
  position: relative;
}

.code-header {
  background: #0f172a;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(56, 189, 248, 0.1);
  font-size: 0.8rem;
  color: #64748b;
}

.copy-btn {
  background: transparent;
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.7rem;
  transition: all 0.2s ease;
}

.copy-btn:hover {
  background: rgba(56, 189, 248, 0.1);
  border-color: #38bdf8;
}

/* When copy-btn is used inside code-header, behave normally */
.code-header .copy-btn {
  position: static;
  width: auto;
  height: auto;
  display: inline-block;
}

/* When copy-btn is NOT inside code-header, behave as floating */
.code-example .copy-btn:not(.code-header .copy-btn) {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
  padding: 0.25rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  line-height: 1;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
  z-index: 10;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-copy-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
  padding: 0.25rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  line-height: 1;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
  z-index: 10;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-copy-btn:hover,
.code-example .copy-btn:not(.code-header .copy-btn):hover {
  background: rgba(56, 189, 248, 0.1);
  border-color: #38bdf8;
  transform: scale(1.05);
}

.floating-copy-btn:hover {
  background: rgba(56, 189, 248, 0.1);
  border-color: #38bdf8;
  transform: scale(1.05);
}

.code-example pre {
  margin: 0;
  padding: 1.5rem;
  overflow-x: auto;
}

.code-example code {
  font-family: "Fira Code", "Monaco", "Cascadia Code", monospace;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Logo Container */
.logo-container {
  margin: 2rem 0;
}

.logo-container img {
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.logo-container img:hover {
  transform: scale(1.02);
}

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

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

/* Animation utility classes */
.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Section base styling for animations */
section {
  opacity: 1 !important; /* Force visible to prevent content hiding */
  transform: translateY(0);
}

/* Ensure main content is always visible */
main {
  opacity: 1 !important;
}

#main-content {
  opacity: 1 !important;
}

/* Mobile Responsive for About Page Components */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .timeline {
    margin-left: 1rem;
  }

  .timeline-item {
    padding-left: 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-card {
    padding: 1rem;
  }

  .stat-number {
    font-size: 1.2rem;
  }
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  /* Show hamburger menu */
  .nav-toggle {
    display: block !important;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
  }

  .nav-toggle:hover {
    color: var(--accent);
  }

  /* Hide desktop nav links */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
    transition: right 0.3s ease-in-out;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-links.active {
    display: flex;
    right: 0;
  }

  .nav-links li {
    margin: 0;
  }

  .nav-links a {
    font-size: 1.5rem;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 8px;
  }

  /* Show mobile language switcher in nav menu */
  .nav-links .mobile-lang {
    display: block;
    margin-top: 2rem;
  }

  .mobile-lang .lang-switch {
    display: flex;
    background: rgba(30, 41, 59, 0.9);
    padding: 0.5rem;
    border-radius: 12px;
    border: 1px solid rgba(56, 189, 248, 0.1);
  }

  .mobile-lang .lang-btn {
    font-size: 1rem;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    min-width: 48px;
    letter-spacing: 0.8px;
  }

  /* Hide desktop language switcher */
  .nav-right .lang-switch.desktop {
    display: none;
  }

  /* Mobile nav overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .nav-overlay.active {
    display: block;
    opacity: 1;
  }

  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100vh;
  }

  /* Ensure nav container remains horizontal */
  .nav-container {
    justify-content: space-between;
  }

  /* Adjust main content for mobile */
  main {
    padding: 1rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-section {
    padding: 2rem 0;
  }

  /* Homepage responsive adjustments */
  .badges {
    justify-content: center;
    margin: 1rem 0;
  }

  .badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }

  .stat {
    padding: 0.6rem 0.4rem;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .btn {
    display: block;
    text-align: center;
    margin: 0.5rem 0;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .target-users {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .logo-container img {
    height: 250px !important;
  }
}

/* Mobile styles for very small screens */
@media (max-width: 480px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .stat {
    padding: 0.5rem 0.3rem;
  }

  .stat-number {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .badges {
    flex-direction: column;
    align-items: center;
  }

  .logo-container img {
    height: 200px !important;
  }
}

/* Team Cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-card {
  background: rgba(45, 55, 72, 0.8);
  border: 1px solid rgba(56, 189, 248, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.team-card:hover {
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.team-avatar {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.team-role {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.team-bio {
  color: #cbd5e1;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Architecture Components */
.architecture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.arch-card {
  background: rgba(45, 55, 72, 0.8);
  border: 1px solid rgba(56, 189, 248, 0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.arch-card:hover {
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.arch-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
}

.arch-card h3 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.arch-card p {
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.arch-card ul {
  color: #cbd5e1;
  line-height: 1.6;
}

.arch-card ul li {
  margin-bottom: 0.5rem;
}

/* Flow Diagram */
.flow-diagram {
  margin: 2rem 0;
}

.flow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.flow-step {
  background: rgba(45, 55, 72, 0.8);
  border: 1px solid rgba(56, 189, 248, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  min-width: 150px;
  flex: 1;
  max-width: 200px;
}

.flow-step h4 {
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.flow-step p {
  color: #cbd5e1;
  font-size: 0.9rem;
  margin: 0;
}

.flow-arrow {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: bold;
}

/* Feature Lists */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  background: rgba(45, 55, 72, 0.6);
  border: 1px solid rgba(56, 189, 248, 0.1);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.feature-list li:hover {
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateX(4px);
}

.feature-list li strong {
  color: var(--accent);
}

/* Comparison Table */
.comparison-table {
  overflow-x: auto;
  margin: 2rem 0;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(45, 55, 72, 0.6);
  border: 1px solid rgba(56, 189, 248, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(56, 189, 248, 0.1);
}

.comparison-table th {
  background: rgba(56, 189, 248, 0.1);
  color: var(--accent);
  font-weight: 600;
}

.comparison-table td {
  color: #cbd5e1;
}

.comparison-table td strong {
  color: var(--text);
}

/* Performance Notes */
.performance-notes {
  background: rgba(45, 55, 72, 0.6);
  border: 1px solid rgba(56, 189, 248, 0.1);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.performance-notes h4 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.performance-notes ul {
  color: #cbd5e1;
  line-height: 1.6;
}

.performance-notes li {
  margin-bottom: 0.75rem;
}

.performance-notes li strong {
  color: var(--text);
}

/* Mobile responsive for architecture */
@media (max-width: 768px) {
  .architecture-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .flow-steps {
    flex-direction: column;
  }

  .flow-arrow {
    transform: rotate(90deg);
    margin: 0.5rem 0;
  }

  .comparison-table {
    font-size: 0.9rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.5rem;
  }
}

/* Footer Stats */
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-stats {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-stats img {
  height: 20px;
  border-radius: 4px;
  transition: transform 0.2s ease;
}

.footer-stats img:hover {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-stats {
    justify-content: flex-end;
  }
}
