/* Reset and base styles */
* { box-sizing: border-box; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background: #F5F7FA;
  min-height: 100vh;
  line-height: 1.6;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header styles */
.site-header {
  background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
  color: #fff;
  padding: 20px 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  position: relative;
}
.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.05);
  z-index: 0;
}
.site-header > .container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.logo {
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}
.logo:hover { color: #ffd700; }
.site-header a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.3s;
}
.site-header a:hover { color: #ffd700; }

.top-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  order: 1;
}

.logo {
  order: 2;
  margin-left: auto;
}

@media (max-width: 768px) {
  .top-nav {
    order: 2;
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .logo {
    order: 1;
    margin-left: 0;
  }
}

/* Admin header */
.admin-header {
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  color: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.admin-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-header nav { display: flex; gap: 10px; }

/* Main content */
main.container {
  background: #fff;
  margin: 20px auto;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  min-height: 500px;
  position: relative;
}
h1, h2, h3 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 600;
}
h1 { font-size: 2.5em; margin-top: 0; }
h2 { font-size: 1.8em; border-bottom: 2px solid #3498db; padding-bottom: 10px; }

/* Posts and articles */
.post {
  margin-bottom: 40px;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #2196F3;
}
.post h1 { color: #2c3e50; margin-bottom: 15px; }
.post-meta {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
.post-content {
  line-height: 1.8;
  font-size: 16px;
}
.post-content p{margin:16px 0}
.post-content ul{padding-left:22px;margin:16px 0}
.post-content ol{padding-left:22px;margin:16px 0}
.post-content img{max-width:100%;height:auto;border-radius:8px;box-shadow:0 2px 8px rgba(0,0,0,0.06)}
.post-content table{width:100%;border-collapse:collapse;margin:20px 0;background:#fff;border:1px solid #e9ecef;border-radius:8px;overflow:hidden}
.post-content table th,.post-content table td{border:1px solid #e9ecef;padding:10px;text-align:left}
.post-content blockquote{margin:16px 0;padding:12px 16px;border-left:4px solid #3498db;background:#f8fbff;border-radius:6px;color:#2c3e50}
.post-content h2, .post-content h3 {
  color: #2196F3;
  margin-top: 30px;
  margin-bottom: 15px;
}

/* Categories */
.cat-list, .post-list, .cat-tree {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.cat-list li, .post-list li {
  margin: 12px 0;
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.cat-list li:hover, .post-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.cat-list a, .post-list a {
  text-decoration: none;
  color: #2c3e50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}
.cat-list a:hover, .post-list a:hover { color: #2196F3; }
.count {
  background: #2196F3;
  color: #fff;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
}
.date { color: #666; font-size: 14px; }

/* Ads block */
.ads-block {
  margin: 30px 0;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px dashed #dee2e6;
  border-radius: 8px;
  text-align: center;
  font-style: italic;
  color: #6c757d;
}

/* RTB top banner container in blog */
.blog-ads-top { min-height: 90px; margin: 10px 0 20px; }
@media (max-width: 768px) {
  .blog-ads-top { min-height: 50px; }
}

/* Tables */
.table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.table th, .table td {
  border: 1px solid #dee2e6;
  padding: 15px;
  text-align: left;
}
.table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #495057;
}
.table tr:nth-child(even) { background: #f8f9fa; }
.table tr:hover { background: #e9ecef; }

/* Pagination */
.pagination {
  margin: 30px 0;
  display: flex;
  justify-content: center;
  gap: 5px;
}
.pagination a {
  display: inline-block;
  padding: 10px 15px;
  border: 2px solid #dee2e6;
  border-radius: 6px;
  text-decoration: none;
  color: #495057;
  transition: all 0.3s;
}
.pagination a:hover {
  background: #2196F3;
  border-color: #2196F3;
  color: #fff;
}
.pagination a.active {
  background: #2196F3;
  border-color: #2196F3;
  color: #fff;
}
.pagination .ellipsis {
  display: inline-block;
  padding: 10px 15px;
  color: #6c757d;
  user-select: none;
}
.pagination .prev-next {
  display: inline-block;
  padding: 10px 15px;
  border: 2px solid #dee2e6;
  border-radius: 6px;
  text-decoration: none;
  color: #495057;
  transition: all 0.3s;
  font-weight: bold;
  user-select: none;
}
.pagination .prev-next:hover {
  background: #2196F3;
  border-color: #2196F3;
  color: #fff;
}
.pagination .prev-next.disabled {
  color: #6c757d;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Forms */
label {
  display: block;
  margin: 15px 0 5px;
  font-weight: 600;
  color: #495057;
}
input[type=text], input[type=url], input[type=password], select, textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #2196F3;
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}
textarea { min-height: 120px; resize: vertical; }
button {
  background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
  color: #fff;
  border: 0;
  padding: 15px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}
button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
button:active { transform: translateY(0); }

/* Messages */
.error {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  color: #721c24;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #dc3545;
  margin: 20px 0;
}
.success {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  color: #155724;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #28a745;
  margin: 20px 0;
}
.notice {
  background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%);
  color: #0c5460;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #17a2b8;
  margin: 20px 0;
}
.muted { color: #6c757d; }
.small { font-size: 14px; }

/* New elements for hero and features */
.hero {
  position: relative;
  text-align: left;
  margin-bottom: 30px;
  padding: 28px 24px;
  background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
  border-radius: 16px;
  color: #0D47A1;
  box-shadow: 0 8px 20px rgba(25, 118, 210, 0.15);
}
.hero h1 {
  font-size: 2.4em;
  margin: 0 0 8px;
}
.hero-description {
  font-size: 1.05em;
  opacity: 0.95;
  max-width: 720px;
  margin: 0;
}

/* Header search */
.blog-search {
  position: relative;
  max-width: 500px;
  width: 100%;
  margin-top: 12px;
  /* Убедимся, что поиск не обрезается */
  z-index: 1;
}
.blog-search input[type="search"] {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid #BBDEFB;
  border-radius: 10px;
  outline: none;
}
  .blog-search input[type="search"]:focus {
    border-color: #2196F3;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.15);
  }
  .blog-search input[type="search"]:focus + .blog-suggest,
  .blog-suggest:hover,
  .blog-suggest:focus-within {
    display: block;
  }
.blog-suggest {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #E3F2FD;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  z-index: 2147483647;
  display: none;
  max-height: 500px;
  overflow-y: auto;
  /* Убедимся, что список не обрезается контейнерами */
  transform: translateZ(0);
  will-change: transform;
  /* Дополнительная защита */
  box-sizing: border-box;
  word-wrap: break-word;
  /* Убедимся, что список не сужается */
  min-width: 100%;
  width: max-content;
  max-width: 600px;
  /* Дополнительные свойства для преодоления рекламы */
  pointer-events: auto !important;
  user-select: text !important;
  -webkit-tap-highlight-color: transparent;
  /* Создаем барьер против рекламы */
  backdrop-filter: contrast(1);
  filter: contrast(1);
}

/* Мобильные устройства */
@media (max-width: 768px) {
  .blog-suggest {
    max-height: 300px;
    border-radius: 8px;
    /* Улучшенная видимость */
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    /* Полная ширина на мобильных */
    left: -10px;
    right: -10px;
    width: calc(100% + 20px);
    max-width: none;
    /* Максимальный z-index для мобильных */
    z-index: 2147483647 !important;
  }

  .blog-suggest ul {
    padding: 4px;
  }

  .blog-suggest li {
    padding: 6px 8px;
    font-size: 14px;
    /* Обеспечим перенос текста */
    word-wrap: break-word;
    white-space: normal;
    border-bottom: 1px solid #f0f0f0;
  }

  .blog-suggest li:last-child {
    border-bottom: none;
  }
}
.blog-suggest .search-barrier {
  position: absolute;
  top: -50px;
  left: -50px;
  width: calc(100% + 100px);
  height: calc(100% + 100px);
  background: transparent;
  z-index: -1;
  pointer-events: none;
  /* Создаем невидимый барьер */
  content: '';
  display: block;
}

.blog-suggest ul { list-style: none; margin: 0; padding: 6px; }
.blog-suggest li { padding: 8px 10px; border-radius: 8px; }
.blog-suggest li:hover { background: #F5F7FA; }
.blog-suggest a { text-decoration: none; color: #0D47A1; display: block; }
.badge { font-size: .8em; color: #fff; background: #2196F3; border-radius: 6px; padding: 2px 6px; margin-right: 8px; }

/* Cookie consent */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #fff;
  color: #263238;
  border-top: 1px solid #e3e8ee;
  box-shadow: 0 -6px 18px rgba(0,0,0,0.06);
  padding: 12px;
  z-index: 1000;
  display: none;
}
.cookie-consent-banner .cookie-consent-text { margin: 0 auto; max-width: 900px; }
.cookie-consent-banner a { color: #2196F3; text-decoration: none; }
.cookie-consent-banner a:hover { text-decoration: underline; }
.cookie-accept-btn {
  margin-left: 12px;
  background: #2196F3;
  color: #fff;
  border: 0;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 40px 0;
}
.feature {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #dee2e6;
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.feature h3 {
  margin-bottom: 15px;
  color: #495057;
}
.feature p {
  color: #6c757d;
  line-height: 1.6;
}

.no-content {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
  border-radius: 12px;
  color: #fff;
  margin: 40px 0;
}
.no-content h3 {
  font-size: 2em;
  margin-bottom: 20px;
}
.no-content p {
  font-size: 1.2em;
  opacity: 0.9;
}

/* Post footer */
.post-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #dee2e6;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.btn-secondary {
  background: #6c757d;
  color: #fff;
  border: 0;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}
.btn-secondary:hover {
  background: #5a6268;
}

/* Category header and footer */
.category-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  background: linear-gradient(135deg, #64B5F6 0%, #1E88E5 100%);
  border-radius: 12px;
  color: #fff;
}
.category-header h1 {
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.category-description {
  font-size: 1.1em;
  opacity: 0.9;
}

.category-footer {
  text-align: center;
  margin-top: 40px;
}

/* Breadcrumbs */
.breadcrumbs{display:flex;gap:8px;align-items:center;font-size:14px;margin:10px 0 20px;color:#6c757d}
.breadcrumbs a{text-decoration:none;color:#2196F3}
.breadcrumbs a:hover{text-decoration:underline}

/* Admin dashboard styles */
.dashboard-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 20px;
  background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
  border-radius: 12px;
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.stat-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.2s;
}
.stat-card:hover {
  transform: translateY(-2px);
}
.stat-icon {
  font-size: 2.5em;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  color: #fff;
}
.stat-number {
  font-size: 2em;
  font-weight: bold;
  color: #2c3e50;
}
.stat-label {
  color: #6c757d;
  font-weight: 600;
}

.quick-actions {
  margin-bottom: 40px;
}
.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.action-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 4px 6px rgba(0,0,0,0.07);
  transition: all 0.3s;
  border: 1px solid #dee2e6;
}
.action-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-color: #3498db;
}
.action-icon {
  font-size: 2em;
  margin-bottom: 15px;
}
.action-title {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2c3e50;
}
.action-description {
  color: #6c757d;
  line-height: 1.5;
}

.system-info {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #dee2e6;
}
.info-grid {
  display: grid;
  gap: 15px;
}
.info-item {
  padding: 10px 0;
  border-bottom: 1px solid #dee2e6;
}
.info-item:last-child {
  border-bottom: none;
}
.info-item code {
  background: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  word-break: break-all;
}

/* Login page styles */
.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 20px;
}
.login-card {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  max-width: 400px;
  width: 100%;
}
.login-header {
  text-align: center;
  margin-bottom: 30px;
}
.login-header h1 {
  margin-bottom: 10px;
  color: #2c3e50;
}
.login-header p {
  color: #6c757d;
  margin: 0;
}
.login-form {
  margin-bottom: 30px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #495057;
}
.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s;
}
.form-group input:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}
.login-btn {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: 0;
  padding: 15px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.login-footer {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #dee2e6;
}

/* Footer */
.site-footer {
  background: #2c3e50;
  color: #ecf0f1;
  padding: 20px 0;
  text-align: center;
  margin-top: 40px;
}
.site-footer a { color: #3498db; text-decoration: none; }
.site-footer a:hover { color: #ffd700; }

/* Cookie consent banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-accept-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cookie-accept-btn:hover {
    background: #2980b9;
}

/* 404 Error page */
.error-404 {
    text-align: center;
    margin-bottom: 30px;
}

.error-404 h1 {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 600;
}

.error-404 p {
    font-size: 1.05em;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.error-actions a {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #fff;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.error-actions a:hover {
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(33, 150, 243, 0.4);
}

.error-actions a:nth-child(2) {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #2196F3;
    border: 2px solid #2196F3;
}

.error-actions a:nth-child(2):hover {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: #fff;
}

.suggestions {
    margin-top: 30px;
    padding: 28px 24px;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    border-radius: 16px;
    color: #0D47A1;
    box-shadow: 0 8px 20px rgba(25, 118, 210, 0.15);
}

.suggestions h2 {
    color: #0D47A1;
    font-size: 1.8em;
    border-bottom: 2px solid #2196F3;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: 600;
}

.popular-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.category-link {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.8);
    color: #0D47A1;
    text-decoration: none;
    border-radius: 20px;
    border: 1px solid rgba(33, 150, 243, 0.3);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.category-link:hover {
    background: #2196F3;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .container { padding: 10px; }
  main.container { padding: 20px; }
  .site-header .container {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .admin-header .container { flex-direction: column; gap: 10px; }
  .logo { font-size: 24px; }
  h1 { font-size: 2em; }
  .cat-list a { flex-direction: column; align-items: flex-start; gap: 5px; }
  .table { font-size: 14px; }
  .table th, .table td { padding: 8px; }
  .pagination {
    flex-wrap: wrap;
    gap: 3px;
  }
  .pagination a {
    padding: 8px 12px;
    font-size: 14px;
  }
  .pagination .ellipsis {
    padding: 8px 12px;
    font-size: 14px;
  }
  .pagination .prev-next {
    padding: 8px 12px;
    font-size: 14px;
  }


  .error-404 h1 {
    font-size: 2em;
  }
  
  .error-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .error-actions a {
    width: 200px;
    text-align: center;
  }
}


