/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 27 2026 | 07:58:06 */
/* Основные стили футера */
.site-footer {
  background-color: #0f172a; /* Современный тёмно-синий/углеродный фон */
  color: #94a3b8;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  padding: 40px 20px 24px;
  border-top: 1px solid #1e293b;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Меню */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px 24px;
}

.footer-menu a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-menu a:hover {
  color: #38bdf8; /* Акцентный голубой цвет при наведении */
  transform: translateX(2px);
}

/* Разделитель */
.footer-divider {
  border: 0;
  height: 1px;
  background: #1e293b;
  margin: 0 0 24px 0;
}

/* Нижняя панель */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* Значок 18+ */
.footer-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid #ef4444; /* Предупреждающий красный */
  color: #ef4444;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Текст копирайта */
.footer-text {
  font-size: 0.875rem;
  color: #64748b;
  text-align: center;
}

/* Кнопка наверх */
.footer-up {
  background: #1e293b;
  color: #f8fafc;
  border: none;
  border-radius: 12px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.footer-up:hover {
  background-color: #38bdf8;
  color: #0f172a;
  transform: translateY(-3px);
}

/* Адаптивность для мобильных устройств */
@media (max-width: 640px) {
  .site-footer {
    padding: 32px 16px 20px;
  }

  .footer-menu {
    grid-template-columns: repeat(2, 1fr); /* 2 колонки на смартфонах */
    gap: 12px 16px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-text {
    order: 2; /* Опускаем текст вниз для лучшей иерархии */
  }

  .footer-age {
    order: 1;
  }

  .footer-up {
    order: 3;
  }
}