
    :root {
      --primary: #ff1f4b;
      --primary-dark: #d3183b;
      --secondary: #ff6b81;
      --accent: #ff9f43;
      --bg-dark: #050607;
      --bg-elevated: #0b0c10;
      --bg-card: #101118;
      --bg-card-hover: #181927;
      --text-primary: #ffffff;
      --text-secondary: #a7a8b5;
      --border-subtle: rgba(255, 255, 255, 0.06);
      --gradient-hero: radial-gradient(circle at 0% 0%, rgba(255, 75, 110, 0.15) 0, transparent 50%),
                       radial-gradient(circle at 100% 0%, rgba(255, 159, 67, 0.12) 0, transparent 55%),
                       linear-gradient(160deg, #050607 0%, #050609 35%, #050607 100%);
      --gradient-primary: linear-gradient(135deg, #ff1f4b 0%, #ff6b81 50%, #ff9f43 100%);
      --gradient-soft: linear-gradient(135deg, rgba(255, 31, 75, 0.35), rgba(255, 107, 129, 0.15));
      --glow-primary: 0 0 40px rgba(255, 31, 75, 0.4);
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Poppins', sans-serif;
      background: var(--bg-dark);
      color: var(--text-primary);
      line-height: 1.6;
      min-height: 100vh;
      overflow-x: hidden;
      position: relative;
    }
    body::before {
      content: '';
      position: fixed;
      inset: -50%;
      background:
        radial-gradient(circle at 20% 20%, rgba(255, 31, 75, 0.18) 0, transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(255, 159, 67, 0.16) 0, transparent 55%),
        radial-gradient(circle at 50% 110%, rgba(255, 107, 129, 0.18) 0, transparent 60%);
      opacity: 0.9;
      pointer-events: none;
      z-index: -1;
      animation: bgFloat 18s ease-in-out infinite alternate;
    }
    @keyframes bgFloat {
      0% { transform: translate3d(0, 0, 0) scale(1); }
      100% { transform: translate3d(-20px, 10px, 0) scale(1.05); }
    }

    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 80px;
      background: rgba(5, 6, 9, 0.92);
      backdrop-filter: blur(20px);
      z-index: 1000;
      border-bottom: 1px solid rgba(255, 31, 75, 0.18);
    }
    .nav {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 2.5rem;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.7rem;
      font-weight: 800;
      letter-spacing: 1px;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--text-primary);
    }
    .logo span {
      padding: 0.2rem 0.55rem;
      border-radius: 999px;
      background: rgba(255, 31, 75, 0.12);
      border: 1px solid rgba(255, 31, 75, 0.5);
      font-size: 0.8rem;
      text-transform: uppercase;
      color: var(--primary);
    }
    .nav-links {
      display: flex;
      gap: 2rem;
      align-items: center;
      font-size: 0.95rem;
    }
    .nav-links a {
      color: var(--text-secondary);
      text-decoration: none;
      font-weight: 500;
      position: relative;
      padding-bottom: 4px;
      transition: color 0.25s ease;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: var(--gradient-primary);
      transition: width 0.25s ease;
      border-radius: 999px;
    }
    .nav-links a:hover {
      color: var(--text-primary);
    }
    .nav-links a:hover::after {
      width: 100%;
    }

    .ticker {
      position: fixed;
      top: 80px;
      width: 100%;
      background: radial-gradient(circle at 0 0, rgba(255, 31, 75, 0.18) 0, transparent 55%), #050609;
      color: var(--text-secondary);
      padding: 0.7rem 1rem;
      font-size: 0.85rem;
      z-index: 900;
      border-bottom: 1px solid rgba(255, 31, 75, 0.2);
      font-family: 'Space Grotesk', monospace;
      display: flex;
      justify-content: center;
      gap: 2.5rem;
      align-items: center;
    }
    .ticker-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.25rem 0.9rem;
      border-radius: 999px;
      background: rgba(220, 53, 69, 0.18);
      border: 1px solid rgba(255, 31, 75, 0.7);
      color: #ff4b6e;
      text-transform: uppercase;
      font-size: 0.75rem;
      letter-spacing: 0.08em;
    }
    .ticker span.value {
      color: var(--primary);
      font-weight: 600;
    }

    main { padding-top: 130px; }

    /* Hero */
.hero {
  background: var(--gradient-hero);
  text-align: left;
  padding: 90px 2rem 120px;
  position: relative;
  overflow: hidden; /* ✅ Добавь overflow: hidden */
  
}

/* ✅ ИСПРАВЛЕННЫЕ стили - замени полностью */
.hero-particles {
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.particle {
  position: absolute !important;
  border-radius: 50% !important;
  opacity: 0.4 !important;
  box-shadow: 0 0 20px rgba(255, 31, 75, 0.3) !important;
  animation: float 20s infinite linear !important;
}

@keyframes float {
  0% { 
    transform: translateY(100vh) scale(0) rotate(0deg);
    opacity: 0; 
  }
  10% { 
    opacity: 0.6; 
    transform: translateY(90vh) scale(1) rotate(90deg);
  }
  50% { 
    opacity: 0.8; 
    transform: translateY(50vh) scale(1.2) rotate(180deg);
  }
  90% { 
    opacity: 0.6; 
    transform: translateY(10vh) scale(1) rotate(270deg);
  }
  100% { 
    transform: translateY(-20vh) scale(0.8) rotate(360deg);
    opacity: 0; 
  }
}

/* ✅ Конкретные частицы с разными траекториями */
.particle-1 {
  width: 8px !important; height: 8px !important;
  background: radial-gradient(circle, rgba(255, 31, 75, 0.8) 0%, transparent 70%) !important;
  left: 15% !important;
  animation-duration: 25s !important;
  animation-delay: 0s !important;
}

.particle-2 {
  width: 5px !important; height: 5px !important;
  background: radial-gradient(circle, rgba(255, 159, 67, 0.7) 0%, transparent 70%) !important;
  left: 75% !important;
  animation-duration: 32s !important;
  animation-delay: -8s !important;
}

.particle-3 {
  width: 6px !important; height: 6px !important;
  background: radial-gradient(circle, rgba(255, 107, 129, 0.6) 0%, transparent 70%) !important;
  left: 35% !important;
  animation-duration: 28s !important;
  animation-delay: -4s !important;
}

.particle-4 {
  width: 4px !important; height: 4px !important;
  left: 90% !important;
  animation-duration: 22s !important;
  animation-delay: -12s !important;
}

.particle-5 {
  width: 7px !important; height: 7px !important;
  background: radial-gradient(circle, rgba(255, 31, 75, 0.7) 0%, transparent 70%) !important;
  left: 5% !important;
  animation-duration: 30s !important;
  animation-delay: -16s !important;
}

    .hero-inner {
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
      gap: 3rem;
      align-items: center;
    }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      padding: 0.6rem 1.6rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: radial-gradient(circle at 0 0, rgba(255, 31, 75, 0.35), transparent 55%);
      color: var(--accent);
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 1.6rem;
    }
    .hero-tag i { color: var(--primary); }
    .hero-kicker {
      font-size: 0.85rem;
      color: var(--text-secondary);
      text-transform: uppercase;
      letter-spacing: 0.18em;
      margin-bottom: 0.75rem;
    }
    .hero h1 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(2.9rem, 5vw, 4.2rem);
      font-weight: 900;
      letter-spacing: -0.06em;
      line-height: 1.05;
      margin-bottom: 1rem;
      color: #ffffff;
      text-shadow: var(--glow-primary);
    }
    .hero-highlight {
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .hero-subtitle {
      font-size: 1.05rem;
      font-weight: 500;
      color: var(--text-secondary);
      max-width: 540px;
      margin-bottom: 1.8rem;
    }
    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem;
      margin-bottom: 2.2rem;
      font-size: 0.9rem;
    }
    .hero-meta-item {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.45rem 0.95rem;
      border-radius: 999px;
      background: rgba(12, 12, 20, 0.8);
      border: 1px solid rgba(255, 255, 255, 0.06);
      color: var(--text-secondary);
    }
    .hero-meta-item i {
      color: var(--primary);
      font-size: 0.95rem;
    }
    .hero .cta-buttons {
      display: flex;
      gap: 1.1rem;
      flex-wrap: wrap;
      align-items: center;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      padding: 0.95rem 1.9rem;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.95rem;
      border: none;
      cursor: pointer;
      text-decoration: none;
      position: relative;
      overflow: hidden;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
    }
    .btn-primary {
      background: var(--gradient-primary);
      color: #0b0c10;
      box-shadow: 0 12px 35px rgba(255, 31, 75, 0.45);
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), transparent 60%);
      opacity: 0;
      transform: translateX(-30%);
      transition: opacity 0.35s ease, transform 0.35s ease;
    }
    .btn-primary:hover::before {
      opacity: 1;
      transform: translateX(30%);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 45px rgba(255, 31, 75, 0.6);
    }
    .btn-outline {
      background: rgba(11, 12, 16, 0.8);
      color: var(--text-primary);
      border: 1px solid rgba(255, 255, 255, 0.16);
    }
    .btn-outline:hover {
      background: rgba(255, 31, 75, 0.12);
      border-color: rgba(255, 31, 75, 0.7);
      transform: translateY(-2px);
    }
    .btn span.badge {
      padding: 0.15rem 0.45rem;
      border-radius: 999px;
      background: rgba(11, 12, 16, 0.85);
      color: #ffdde4;
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    /* Hero right card */
    .hero-card {
      background: radial-gradient(circle at 0 0, rgba(255, 31, 75, 0.18), transparent 60%), var(--bg-elevated);
      border-radius: 24px;
      padding: 1.9rem 1.8rem;
      border: 1px solid rgba(255, 255, 255, 0.06);
      box-shadow: 0 18px 55px rgba(0, 0, 0, 0.65);
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }
    .hero-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 0.5rem;
    }
    .hero-card-title {
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--text-secondary);
    }
    .hero-pill {
      padding: 0.25rem 0.8rem;
      border-radius: 999px;
      background: rgba(11, 12, 16, 0.85);
      border: 1px solid rgba(255, 159, 67, 0.7);
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--accent);
    }
    .hero-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.9rem;
      font-size: 0.85rem;
    }
    .hero-stat {
      padding: 0.85rem 0.9rem;
      border-radius: 16px;
      background: rgba(5, 6, 10, 0.9);
      border: 1px solid var(--border-subtle);
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }
    .hero-stat-label {
      color: var(--text-secondary);
      font-size: 0.75rem;
    }
    .hero-stat-value {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      color: #ffffff;
    }
    .hero-card-footer {
      margin-top: 0.3rem;
      padding-top: 0.9rem;
      border-top: 1px dashed rgba(255, 255, 255, 0.1);
      font-size: 0.8rem;
      color: var(--text-secondary);
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .hero-card-footer span strong {
      color: var(--primary);
    }

    /* Stats Section 
    .stats {
      max-width: 1300px;
      margin: 3.5rem auto 0;
      padding: 0 2.5rem 4.5rem;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.6rem;
    }
    .stat {
      background: var(--bg-card);
      border-radius: 18px;
      padding: 1.6rem 1.5rem;
      border: 1px solid var(--border-subtle);
      position: relative;
      overflow: hidden;
      transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
    }
    .stat::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 0 0, rgba(255, 31, 75, 0.14), transparent 55%);
      opacity: 0;
      transition: opacity 0.22s ease;
    }
    .stat:hover {
      transform: translateY(-4px);
      border-color: rgba(255, 31, 75, 0.65);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
      background: var(--bg-card-hover);
    }
    .stat:hover::before {
      opacity: 1;
    }
    .stat .num {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.7rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 0.4rem;
    }
    .stat .label {
      color: var(--text-secondary);
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
    }

    /* Section Titles */
    .section-title {
      text-align: center;
      font-size: 2.1rem;
      font-weight: 800;
      color: var(--text-primary);
      margin: 0 0 0.75rem;
      letter-spacing: -0.04em;
      font-family: 'Space Grotesk', sans-serif;
    }
    .section-title span {
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .section-subtitle {
      text-align: center;
      font-size: 0.98rem;
      color: var(--text-secondary);
      max-width: 640px;
      margin: 0 auto 2.6rem;
      line-height: 1.7;
    }

    /* Why Torzon — с иконками */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 2rem;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    .feature {
      background: rgba(5, 6, 10, 0.96);
      border-radius: 20px;
      padding: 2.2rem 1.8rem;
      border: 1px solid var(--border-subtle);
      text-align: center;
      transition: all 0.4s ease;
    }
    .feature:hover {
      transform: translateY(-12px);
      border-color: rgba(255, 31, 75, 0.7);
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
    }
    .feature-icon {
      width: 70px;
      height: 70px;
      border-radius: 20px;
      background: radial-gradient(circle at 0 0, rgba(255, 31, 75, 0.9), rgba(5, 6, 10, 1));
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      color: #ffffff;
      font-size: 1.8rem;
      box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
    }
    .feature h3 {
      color: var(--text-primary);
      margin: 0 0 0.8rem;
      font-size: 1.25rem;
      font-weight: 700;
      letter-spacing: 0.5px;
    }
    .feature p {
      color: var(--text-secondary);
      font-size: 0.94rem;
      line-height: 1.7;
    }

    /* Categories — 2 ряда по 3 */
    #categories {
      padding: 5rem 2.5rem;
    }
    .cat-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      max-width: 1300px;
      margin: 0 auto;
    }
    .cat-card {
      background: var(--bg-card);
      border-radius: 20px;
      padding: 2rem;
      border: 1px solid var(--border-subtle);
      transition: all 0.4s ease;
      text-align: center;
    }
    .cat-card:hover {
      transform: translateY(-12px);
      border-color: var(--primary);
      box-shadow: 0 25px 60px rgba(255, 31, 75, 0.25);
    }
    .cat-icon {
      width: 64px;
      height: 64px;
      border-radius: 18px;
      background: rgba(255, 31, 75, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      color: var(--primary);
      font-size: 1.8rem;
    }
    .cat-card h3 {
      color: var(--text-primary);
      margin: 0 0 0.8rem;
      font-size: 1.15rem;
      font-weight: 600;
    }
    .cat-card p {
      color: var(--text-secondary);
      font-size: 0.9rem;
    }

    /* Blog & Latest News */
    .blog-section, .news-section {
      max-width: 1300px;
      margin: 6rem auto;
      padding: 0 2.5rem;
    }
    .blog-grid, .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }
    .post-card {
      background: var(--bg-card);
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--border-subtle);
      transition: all 0.4s ease;
    }
    .post-card:hover {
      transform: translateY(-12px);
      border-color: var(--primary);
      box-shadow: 0 25px 60px rgba(255, 31, 75, 0.25);
    }
    
.post-card {
  padding: 0;
  overflow: hidden;
}

.post-image {
  height: 160px;
  background: #e5e7eb;
  overflow: hidden; /* обрезает картинки по краям */
  position: relative;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ключевой стиль - заполняет контейнер без искажений */
  object-position: center; /* центрирует картинку */
  display: block;
}

/* Плейсхолдер для пустых изображений */
.post-image:not(:has(img)) {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #9ca3af;
  font-family: "JetBrains Mono", monospace;
}
    .post-content {
      padding: 1.8rem;
    }
    .post-date {
      color: var(--text-secondary);
      font-size: 0.8rem;
      margin-bottom: 0.6rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }
    .post-title {
      color: var(--text-primary);
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.8rem;
      line-height: 1.3;
    }
    .post-excerpt {
      color: var(--text-secondary);
      font-size: 0.92rem;
      line-height: 1.7;
      margin-bottom: 1.2rem;
    }
    .read-all {
      text-align: center;
      margin-top: 3rem;
    }
    .read-all a {
      color: var(--primary);
      font-weight: 600;
      text-decoration: none;
      padding: 0.8rem 2rem;
      border: 1px solid var(--primary);
      border-radius: 999px;
      transition: all 0.3s;
    }
    .read-all a:hover {
      background: var(--primary);
      color: #000;
    }

    /* Footer */
    footer {
      background: #050609;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding: 3rem 2.5rem 2.4rem;
      margin-top: 3rem;
    }
    .footer-grid {
      max-width: 1300px;
      margin: 0 auto 2.4rem;
      display: grid;
      grid-template-columns: minmax(0, 2.2fr) repeat(3, minmax(0, 1fr));
      gap: 2.4rem;
    }
    .footer-col h3 {
      color: var(--text-primary);
      font-weight: 600;
      margin-bottom: 1rem;
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-family: 'Space Grotesk', sans-serif;
    }
    .footer-col p {
      color: var(--text-secondary);
      font-size: 0.86rem;
      line-height: 1.8;
      margin-top: 0.4rem;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
      font-size: 0.86rem;
    }
    .footer-links a {
      color: var(--text-secondary);
      text-decoration: none;
      transition: color 0.2s ease, transform 0.2s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
    }
    .footer-links a:hover {
      color: var(--primary);
      transform: translateX(3px);
    }
    .footer-bottom {
      max-width: 1300px;
      margin: 0 auto;
      text-align: center;
      padding-top: 1.9rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      color: var(--text-secondary);
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
    }

    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-card { max-width: 420px; margin: 2rem auto 0; }
      .cat-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .cat-grid, .blog-grid, .news-grid { grid-template-columns: 1fr; }
      .stats { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 520px) {
      .stats { grid-template-columns: 1fr; }
      .hero .cta-buttons { flex-direction: column; align-items: stretch; }
      .btn { width: 100%; justify-content: center; }
    }
	
	
/* Изменение цвета иконок */
.feature-icon svg path,
.feature-icon svg circle,
.feature-icon svg rect {
  stroke: #D600C4; /* Измените цвет на нужный */
}

/* Изменение размера иконок */
.feature-icon svg {
  width: 56px; /* Измените размер на нужный */
  height: 56px; /* Измените размер на нужный */
}

/* Изменение цвета иконок */
.cat-icon svg path,
.cat-icon svg circle,
.cat-icon svg rect {
  stroke: #D600C4; /* Измените цвет на нужный */
}

/* Изменение размера иконок */
.cat-icon svg {
  width: 56px; /* Измените размер на нужный */
  height: 56px; /* Измените размер на нужный */
}


/* Access Section - Official Torzon Onion Address */
#access {
  padding: 5rem 2.5rem;
  background: radial-gradient(circle at 50% 0%, rgba(255, 31, 75, 0.08) 0%, transparent 60%), var(--bg-elevated);
  position: relative;
  overflow: hidden;
}

#access::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 10% 90%, rgba(255, 159, 67, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(255, 31, 75, 0.06) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.official-link {
  max-width: 580px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: 24px;
  padding: 2.8rem 2.5rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.7);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.official-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 24px 24px 0 0;
}

.official-link:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 31, 75, 0.4);
  box-shadow: 0 35px 80px rgba(255, 31, 75, 0.15);
}

.official-link h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.8rem;
  letter-spacing: -0.02em;
  position: relative;
}

.official-link h3::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 999px;
}

.copy-container {
  position: relative;
  cursor: pointer;
  margin-bottom: 1.8rem;
  transition: transform 0.2s ease;
}

.copy-container:hover {
  transform: translateY(-2px);
}

.onion-url {
  background: rgba(5, 6, 10, 0.95);
  border: 1px solid rgba(255, 31, 75, 0.3);
  border-radius: 16px;
  padding: 1.2rem 1.6rem;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.92rem;
  color: var(--text-primary);
  word-break: break-all;
  letter-spacing: -0.02em;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
  user-select: none;
}

.onion-url::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left 0.5s ease;
}

.copy-container:hover .onion-url {
  border-color: rgba(255, 31, 75, 0.6);
  box-shadow: 0 0 20px rgba(255, 31, 75, 0.2);
}

.copy-container.copied .onion-url::before {
  left: 100%;
}

.copy-feedback {
  position: absolute;
  top: -2.2rem;
  right: 0;
  background: var(--gradient-primary);
  color: #0b0c10;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  box-shadow: 0 8px 25px rgba(255, 31, 75, 0.4);
}

.copy-container.copied .copy-feedback {
  opacity: 1;
  transform: translateY(0);
}

.btn-official {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: 100%;
  padding: 1.1rem 2rem;
  background: var(--gradient-primary);
  color: #0b0c10 !important;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 12px 35px rgba(255, 31, 75, 0.45);
  font-family: 'Space Grotesk', sans-serif;
  border: none;
}

.btn-official::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.25), transparent 60%);
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.4s ease;
}

.btn-official:hover::before {
  opacity: 1;
  transform: translateX(100%);
}

.btn-official:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(255, 31, 75, 0.6);
}

.btn-official i {
  font-size: 1rem;
}

.official-link p {
  margin-top: 1.5rem !important;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 500;
}

.official-link p i {
  color: var(--accent);
  margin-right: 0.3rem;
}

/* JavaScript для копирования */

/* Tor Browser Protection Section */
#tor-browser {
  padding: 6rem 2.5rem;
  background: 
    radial-gradient(circle at 20% 10%, rgba(255, 31, 75, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 159, 67, 0.08) 0%, transparent 50%),
    var(--bg-elevated);
  position: relative;
  overflow: hidden;
}

#tor-browser::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 10% 90%, rgba(255, 31, 75, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 90% 30%, rgba(255, 159, 67, 0.04) 0%, transparent 50%);
  animation: torPulse 4s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes torPulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0.9; transform: scale(1.02); }
}

.tor-card {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(16, 17, 24, 0.95), rgba(5, 6, 10, 0.98));
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 3.5rem 3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  text-align: center;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.tor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-primary);
  border-radius: 28px 28px 0 0;
  box-shadow: 0 0 20px rgba(255, 31, 75, 0.5);
}

.tor-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 45px 100px rgba(255, 31, 75, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.tor-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.tor-icon {
  width: 72px;
  height: 72px;
  background: radial-gradient(circle, rgba(255, 31, 75, 0.9), rgba(255, 31, 75, 0.4));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2), 0 15px 35px rgba(255, 31, 75, 0.4);
  animation: shieldPulse 2s ease-in-out infinite;
}

@keyframes shieldPulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.05) rotate(180deg); }
}

.tor-badge {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tor-badge span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
  line-height: 1;
}

.tor-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 10px rgba(255, 31, 75, 0.3);
}

.tor-highlight {
  background: linear-gradient(135deg, rgba(255, 31, 75, 0.15), rgba(255, 159, 67, 0.1));
  border: 1px solid rgba(255, 31, 75, 0.3);
  border-radius: 16px;
  padding: 1.2rem 1.8rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
  backdrop-filter: blur(10px);
}

.tor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.8rem;
  margin-bottom: 2.5rem;
}

.tor-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
}

.feature-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.feature-circle.primary {
  background: radial-gradient(circle, var(--primary), var(--primary-dark));
}

.feature-circle.accent {
  background: radial-gradient(circle, var(--accent), #e68a00);
}

.feature-circle.secondary {
  background: radial-gradient(circle, var(--secondary), var(--primary));
}

.tor-feature h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.tor-feature p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

.btn-tor-download {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 3rem;
  background: var(--gradient-primary);
  color: #0b0c10 !important;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Space Grotesk', sans-serif;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow: 0 18px 45px rgba(255, 31, 75, 0.5);
  margin-bottom: 1.5rem;
}

.btn-tor-download::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), transparent 60%);
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.5s ease;
}

.btn-tor-download:hover::before {
  opacity: 1;
  transform: translateX(100%);
}

.btn-tor-download:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 25px 60px rgba(255, 31, 75, 0.7);
}

.btn-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-tor-download:hover .btn-glow {
  opacity: 1;
}

.tor-warning {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 31, 75, 0.15);
  border: 1px solid rgba(255, 31, 75, 0.4);
  border-radius: 12px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
}

.tor-warning i {
  font-size: 1.1rem;
  animation: warningPulse 2s ease-in-out infinite;
}

@keyframes warningPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Responsive */
@media (max-width: 768px) {
  .tor-card {
    padding: 2.5rem 2rem;
    margin: 0 1rem;
  }
  
  .tor-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .tor-header {
    flex-direction: column;
    gap: 1rem;
  }
}
/* ВСЕ ТВОИ СТИЛИ ЗДЕСЬ - :root, body, header, nav, ticker, etc. */
    :root {
      --primary: #ff1f4b;
      --primary-dark: #d3183b;
      --secondary: #ff6b81;
      --accent: #ff9f43;
      --bg-dark: #050607;
      --bg-elevated: #0b0c10;
      --bg-card: #101118;
      --bg-card-hover: #181927;
      --text-primary: #ffffff;
      --text-secondary: #a7a8b5;
      --border-subtle: rgba(255, 255, 255, 0.06);
      --gradient-hero: radial-gradient(circle at 0% 0%, rgba(255, 75, 110, 0.15) 0, transparent 50%),
                       radial-gradient(circle at 100% 0%, rgba(255, 159, 67, 0.12) 0, transparent 55%),
                       linear-gradient(160deg, #050607 0%, #050609 35%, #050607 100%);
      --gradient-primary: linear-gradient(135deg, #ff1f4b 0%, #ff6b81 50%, #ff9f43 100%);
      --gradient-soft: linear-gradient(135deg, rgba(255, 31, 75, 0.35), rgba(255, 107, 129, 0.15));
      --glow-primary: 0 0 40px rgba(255, 31, 75, 0.4);
    }
    
    /* ВСТАВЬ ВСЕ СВОИ СТИЛИ СЮДА - body, header, nav, hero, blog-section, etc. */
    
    /* Blog Page Specific Styles */
    .blog-hero {
      background: var(--gradient-hero);
      padding: 140px 2rem 100px;
      text-align: center;
      position: relative;
    }
    
    .blog-hero h1 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(3.2rem, 6vw, 4.8rem);
      font-weight: 900;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 1rem;
      letter-spacing: -0.05em;
      text-shadow: var(--glow-primary);
    }
    
    .blog-hero .subtitle {
      font-size: 1.15rem;
      color: var(--text-secondary);
      max-width: 680px;
      margin: 0 auto 3rem;
      font-weight: 500;
    }
    
    .blog-filters {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 4rem;
    }
    
    .filter-btn {
      padding: 0.7rem 1.8rem;
      background: rgba(16, 17, 24, 0.8);
      color: var(--text-secondary);
      border: 1px solid var(--border-subtle);
      border-radius: 999px;
      font-size: 0.9rem;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .filter-btn.active,
    .filter-btn:hover {
      background: var(--gradient-primary);
      color: #0b0c10;
      border-color: transparent;
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(255, 31, 75, 0.4);
    }
    
    .blog-section {
      max-width: 1300px;
      margin: 0 auto 6rem;
      padding: 0 2.5rem;
    }
    
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
      gap: 2.5rem;
      margin-top: 2rem;
    }
    
    .post-card {
      background: var(--bg-card);
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid var(--border-subtle);
      transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
      height: 100%;
    }
    
    .post-card:hover {
      transform: translateY(-12px);
      border-color: rgba(255, 31, 75, 0.5);
      box-shadow: 0 35px 80px rgba(255, 31, 75, 0.25);
    }
    
    .post-image {
      height: 220px;
      background: var(--gradient-primary);
      position: relative;
      overflow: hidden;
    }
    
    .post-image::before {
      content: '';
      position: absolute;
      inset: 0;
      background: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255,31,75,0.3), rgba(255,159,67,0.2));
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    
    .post-card:hover .post-image::before {
      opacity: 1;
    }
    
    .post-image::after {
    
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(1.4rem, 3vw, 2.2rem);
      font-weight: 900;
      color: rgba(255,255,255,0.12);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      z-index: 1;
    }
    
    .post-content {
      padding: 2.2rem;
    }
    
    .post-date {
      color: var(--accent);
      font-size: 0.82rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 1rem;
    }
    
    .post-title {
      color: var(--text-primary);
      font-size: 1.35rem;
      font-weight: 800;
      margin-bottom: 1.2rem;
      line-height: 1.3;
      font-family: 'Space Grotesk', sans-serif;
      letter-spacing: -0.02em;
      transition: color 0.3s ease;
    }
    
    .post-card:hover .post-title {
      color: var(--primary);
    }
    
    .post-excerpt {
      color: var(--text-secondary);
      font-size: 0.96rem;
      line-height: 1.7;
      margin-bottom: 1.8rem;
    }
    
    .post-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
    }
    
    .tag {
      padding: 0.3rem 1rem;
      background: rgba(255, 31, 75, 0.15);
      color: var(--primary);
      border-radius: 999px;
      font-size: 0.78rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }
    
    .read-more {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      color: var(--primary);
      font-weight: 600;
      text-decoration: none;
      font-size: 0.9rem;
      padding: 0.6rem 0;
      transition: all 0.3s ease;
    }
    
    .read-more:hover {
      color: var(--text-primary);
      transform: translateX(4px);
    }
    
    .pagination {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 4rem;
      flex-wrap: wrap;
    }
    
    .page-btn {
      padding: 0.9rem 1.6rem;
      background: rgba(16, 17, 24, 0.8);
      color: var(--text-secondary);
      border: 1px solid var(--border-subtle);
      border-radius: 999px;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    
    .page-btn.active,
    .page-btn:hover {
      background: var(--gradient-primary);
      color: #0b0c10;
      border-color: transparent;
      transform: translateY(-2px);
    }
    
    @media (max-width: 768px) {
      .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      
      .blog-filters {
        flex-direction: column;
        align-items: center;
      }
    }
	
	/* Blog Post Page Styles */
    .post-hero {
      background: var(--gradient-hero);
      padding: 140px 2rem 80px;
      text-align: center;
      position: relative;
    }
    
    .post-hero h1 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(2.8rem, 5vw, 4rem);
      font-weight: 900;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 1rem;
      letter-spacing: -0.04em;
      text-shadow: var(--glow-primary);
    }
    
    .post-meta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      color: var(--text-secondary);
      font-size: 0.95rem;
    }
    
    .post-date {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--accent);
      font-weight: 600;
    }
    
    .post-author {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .post-breadcrumb {
      max-width: 1300px;
      margin: 0 auto 2rem;
      padding: 0 2.5rem;
      font-size: 0.9rem;
    }
    
    .post-breadcrumb a {
      color: var(--text-secondary);
      text-decoration: none;
    }
    
    .post-content {
      max-width: 1100px;
      margin: 0 auto;
      padding: 2.2rem;
    }
    
    .post-section {
      background: var(--bg-card);
      border-radius: 24px;
      padding: 3rem;
      border: 1px solid var(--border-subtle);
      margin-bottom: 3rem;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    }
    
    .post-section h2 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--text-primary);
      margin-bottom: 1.5rem;
      letter-spacing: -0.02em;
    }
    
    .post-section h3 {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--text-primary);
      margin: 2rem 0 1rem;
    }
    
    .post-section p {
      color: var(--text-secondary);
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }
    
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin: 3rem 0;
    }
    
    .stat-card {
      background: rgba(5, 6, 10, 0.9);
      border-radius: 20px;
      padding: 2.5rem 2rem;
      border: 1px solid rgba(255, 31, 75, 0.3);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
    .stat-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--gradient-primary);
    }
    
    .stat-number {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(2.5rem, 8vw, 4rem);
      font-weight: 900;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 0.5rem;
      line-height: 1;
    }
    
    .stat-label {
      color: var(--text-secondary);
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 600;
    }
    
    .mirror-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      margin: 3rem 0;
    }
    
    .mirror-item {
      background: rgba(255, 31, 75, 0.1);
      border: 1px solid rgba(255, 31, 75, 0.3);
      border-radius: 16px;
      padding: 2rem;
      transition: all 0.3s ease;
    }
    
    .mirror-item:hover {
      background: rgba(255, 31, 75, 0.2);
      transform: translateY(-4px);
    }
    
    .mirror-status {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 1rem;
    }
    
    .status-online {
      width: 12px;
      height: 12px;
      background: #00ff88;
      border-radius: 50%;
      animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
      70% { box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
      100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
    }
    
    .status-offline {
      width: 12px;
      height: 12px;
      background: #ff4444;
      border-radius: 50%;
    }
    
    .code-block {
      background: rgba(5, 6, 10, 0.9);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 2rem;
      font-family: 'Space Grotesk', monospace;
      font-size: 0.9rem;
      color: var(--accent);
      margin: 2rem 0;
      overflow-x: auto;
    }
    
    .back-link {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      color: var(--primary);
      font-weight: 600;
      text-decoration: none;
      padding: 1rem 1.5rem;
      border: 1px solid rgba(255, 31, 75, 0.4);
      border-radius: 999px;
      transition: all 0.3s ease;
      margin-top: 2rem;
    }
    
    .back-link:hover {
      background: var(--primary);
      color: #0b0c10;
      transform: translateY(-2px);
    }
    
    @media (max-width: 768px) {
      .post-section {
        padding: 2rem 1.5rem;
      }
      
      .stats-grid, .mirror-grid {
        grid-template-columns: 1fr;
      }
    }
	
	
	
	    /* Blog Post Page Styles - те же что и в предыдущем посте */
    .post-hero {
      background: var(--gradient-hero);
      padding: 140px 2rem 80px;
      text-align: center;
      position: relative;
    }
    
    .post-hero h1 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(2.8rem, 5vw, 4rem);
      font-weight: 900;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 1rem;
      letter-spacing: -0.04em;
      text-shadow: var(--glow-primary);
    }
    
    .post-meta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      color: var(--text-secondary);
      font-size: 0.95rem;
    }
    
    .post-date {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--accent);
      font-weight: 600;
    }
    
    .post-breadcrumb {
      max-width: 1300px;
      margin: 0 auto 2rem;
      padding: 0 2.5rem;
      font-size: 0.9rem;
    }
    
    .post-breadcrumb a {
      color: var(--text-secondary);
      text-decoration: none;
    }
    
    .post-content {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 2.5rem 6rem;
    }
    
    .post-section {
      background: var(--bg-card);
      border-radius: 24px;
      padding: 3rem;
      border: 1px solid var(--border-subtle);
      margin-bottom: 3rem;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    }
    
    .post-section h2 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--text-primary);
      margin-bottom: 1.5rem;
      letter-spacing: -0.02em;
    }
    
    .post-section h3 {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--text-primary);
      margin: 2rem 0 1rem;
    }
    
    .post-section p {
      color: var(--text-secondary);
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }
    
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin: 3rem 0;
    }
    
    .stat-card {
      background: rgba(5, 6, 10, 0.9);
      border-radius: 20px;
      padding: 2.5rem 2rem;
      border: 1px solid rgba(255, 31, 75, 0.3);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
    .stat-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--gradient-primary);
    }
    
    .stat-number {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(2.5rem, 8vw, 4rem);
      font-weight: 900;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 0.5rem;
      line-height: 1;
    }
    
    .stat-label {
      color: var(--text-secondary);
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 600;
    }
    
    .privacy-chart {
      background: rgba(5, 6, 10, 0.9);
      border-radius: 20px;
      padding: 2.5rem;
      border: 1px solid rgba(255, 255, 255, 0.1);
      margin: 3rem 0;
      text-align: center;
    }
    
    .ring-visual {
      width: 200px;
      height: 200px;
      margin: 0 auto 2rem;
      position: relative;
      border-radius: 50%;
    }
    
    .ring-visual::before {
      content: '';
      position: absolute;
      inset: 20px;
      border-radius: 50%;
      background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
      animation: ringPulse 3s ease-in-out infinite;
      z-index: 1;
    }
    
    .ring-visual::after {
      content: '16';
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 3rem;
      font-weight: 900;
      color: var(--text-primary);
      z-index: 2;
    }
    
    @keyframes ringPulse {
      0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
      50% { transform: scale(1.1) rotate(180deg); opacity: 1; }
    }
    
    .code-block {
      background: rgba(5, 6, 10, 0.9);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 2rem;
      font-family: 'Space Grotesk', monospace;
      font-size: 0.9rem;
      color: var(--accent);
      margin: 2rem 0;
      overflow-x: auto;
    }
    
    .node-status {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
      margin: 2rem 0;
    }
    
    .node-item {
      background: rgba(255, 31, 75, 0.1);
      border: 1px solid rgba(255, 31, 75, 0.3);
      border-radius: 16px;
      padding: 1.8rem;
      transition: all 0.3s ease;
    }
    
    .node-item:hover {
      background: rgba(255, 31, 75, 0.2);
      transform: translateY(-4px);
    }
    
    .node-status-icon {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 1rem;
    }
    
    .status-success {
      width: 14px;
      height: 14px;
      background: #00ff88;
      border-radius: 50%;
      animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
      70% { box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
      100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
    }
    
    .back-link {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      color: var(--primary);
      font-weight: 600;
      text-decoration: none;
      padding: 1rem 1.5rem;
      border: 1px solid rgba(255, 31, 75, 0.4);
      border-radius: 999px;
      transition: all 0.3s ease;
      margin-top: 2rem;
    }
    
    .back-link:hover {
      background: var(--primary);
      color: #0b0c10;
      transform: translateY(-2px);
    }
    
    @media (max-width: 768px) {
      .post-section {
        padding: 2rem 1.5rem;
      }
      
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
	
	/* Blog Post Page Styles - Vendor Verification 2.0 */
.post-hero {
  background: var(--gradient-hero);
  padding: 140px 2rem 80px;
  text-align: center;
  position: relative;
}

.post-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
  text-shadow: var(--glow-primary);
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.post-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
}

.post-breadcrumb {
  max-width: 1300px;
  margin: 0 auto 2rem;
  padding: 0 2.5rem;
  font-size: 0.9rem;
}

.post-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
}

.post-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem 6rem;
}

.post-section {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid var(--border-subtle);
  margin-bottom: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.post-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.post-section h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 2rem 0 1rem;
}

.post-section p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stat-card {
  background: rgba(5, 6, 10, 0.9);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255, 31, 75, 0.3);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 31, 75, 0.6);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.verification-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .verification-flow {
    grid-template-columns: repeat(3, 1fr);
  }
}

.flow-step {
  background: rgba(255, 31, 75, 0.1);
  border: 2px solid rgba(255, 31, 75, 0.3);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
}

.flow-step:hover {
  background: rgba(255, 31, 75, 0.2);
  transform: translateY(-8px);
  border-color: rgba(255, 31, 75, 0.6);
  box-shadow: 0 20px 40px rgba(255, 31, 75, 0.2);
}

.flow-step::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: var(--gradient-primary);
  border-radius: 50%;
  z-index: 2;
}

.flow-step:nth-child(1)::before { background: radial-gradient(circle, var(--primary), var(--primary-dark)); }
.flow-step:nth-child(2)::before { background: radial-gradient(circle, var(--accent), #e68a00); }
.flow-step:nth-child(3)::before { background: radial-gradient(circle, var(--secondary), var(--primary)); }

.flow-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 15px 35px rgba(255, 31, 75, 0.4);
}

.flow-step h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.vendor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.vendor-card {
  background: rgba(5, 6, 10, 0.9);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.vendor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00ff88, #00cc6a);
}

.vendor-card:hover {
  transform: translateY(-6px);
  border-color: #00ff88;
  box-shadow: 0 25px 50px rgba(0, 255, 136, 0.2);
}

.verified-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background: #00ff88;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #0a0f0b;
  font-weight: 900;
  animation: verifiedPulse 2s infinite;
}

@keyframes verifiedPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
  50% { box-shadow: 0 0 0 12px rgba(0, 255, 136, 0); }
}

.bond-display {
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  color: #0a0f0b;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
  margin: 2rem 0;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.code-block {
  background: rgba(5, 6, 10, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.9rem;
  color: var(--accent);
  margin: 2rem 0;
  overflow-x: auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(255, 31, 75, 0.4);
  border-radius: 999px;
  transition: all 0.3s ease;
  margin-top: 2rem;
}

.back-link:hover {
  background: var(--primary);
  color: #0b0c10;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .post-section {
    padding: 2rem 1.5rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* Mobile Hamburger Menu */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* Скрываем десктопное меню */
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(5, 6, 9, 0.98);
    backdrop-filter: blur(25px);
    flex-direction: column;
    padding: 2rem 2.5rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 31, 75, 0.3);
    z-index: 999;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  }
  
  .nav-links.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }
  
  .nav-links a {
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
}

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 22px;
  cursor: pointer;
  z-index: 1001;
  transition: transform 0.3s ease;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: var(--text-primary);
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  transform-origin: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .ticker {
	  display: none;
  }
  
  header {
    position: relative;
  }
}
/* Mobile Footer - Один столбик */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr !important; /* Все колонки в один столбик */
    gap: 2rem;
    padding: 0 1.5rem;
  }
  
  .footer-col {
    text-align: center; /* Центрируем контент */
  }
  
  .footer-col h3 {
    margin-bottom: 1.2rem;
    font-size: 1rem;
  }
  
  .footer-links {
    align-items: center;
    gap: 1rem;
  }
  
  footer {
    padding: 2.5rem 1.5rem 2rem !important;
  }
  
  .footer-bottom {
    padding: 1.5rem 1rem !important;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 2rem 1rem 1.5rem !important;
  }
  
  .footer-col h3 {
    font-size: 0.95rem;
  }
  
  .footer-links a {
    font-size: 0.85rem;
    padding: 0.8rem 0;
  }
}


/* News Page Styles */
.news-hero {
  background: var(--gradient-hero);
  padding: 140px 2rem 100px;
  text-align: center;
  position: relative;
}

.news-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3.2rem, 6vw, 4.8rem);
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  letter-spacing: -0.05em;
  text-shadow: var(--glow-primary);
}

.news-hero .subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 3rem;
  font-weight: 500;
}

.news-section {
  max-width: 1300px;
  margin: 0 auto 6rem;
  padding: 0 2.5rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.post-card {
  background: var(--bg-card);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  height: 100%;
}

.post-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 31, 75, 0.5);
  box-shadow: 0 35px 80px rgba(255, 31, 75, 0.25);
}

.post-image {
  height: 220px;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.post-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
    linear-gradient(135deg, rgba(255,31,75,0.3), rgba(255,159,67,0.2));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.post-card:hover .post-image::before {
  opacity: 1;
}

.post-image::after {

  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 900;
  color: rgba(255,255,255,0.12);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1;
}

.post-content {
  padding: 2.2rem;
}

.post-date {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.post-title {
  color: var(--text-primary);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  line-height: 1.3;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.post-card:hover .post-title {
  color: var(--primary);
}

.post-excerpt {
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 1rem 0;
  margin-top: 1rem;
  transition: all 0.3s ease;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
}

.read-more:hover {
  color: var(--text-primary);
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Metrics grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.metric-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
  backdrop-filter: blur(10px);
}

.metric-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00ff88;
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.8;
}

.metric-note {
  font-size: 0.85rem;
  margin-top: 0.4rem;
  opacity: 0.7;
}

/* Latency compare */
.latency-compare {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.latency-column h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.latency-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.latency-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.latency-label {
  opacity: 0.8;
  margin-right: 0.5rem;
}

.latency-value {
  font-weight: 600;
}

.latency-bad {
  color: #ff4b4b;
}

.latency-good {
  color: #00ff88;
}

.latency-bar {
  position: relative;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.latency-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 999px;
  transform-origin: left center;
}

/* Длина/цвет для до/после, можно подправить по вкусу */
.latency-bar-before .latency-bar-fill {
  width: 85%;
  background: linear-gradient(90deg, #ff4b4b, #ffb347);
}

.latency-bar-after .latency-bar-fill {
  width: 55%;
  background: linear-gradient(90deg, #00ff88, #00b3ff);
}

.latency-note {
  font-size: 0.85rem;
  margin-top: 0.8rem;
  opacity: 0.7;
}

/* Timeline */
.timeline {
  position: relative;
  margin-top: 1.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid rgba(255, 255, 255, 0.12);
}

.timeline-item {
  position: relative;
  margin-bottom: 1.5rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -9px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #555;
  border: 2px solid #111;
}

.timeline-item-active .timeline-dot {
  background: #00ff88;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

.timeline-content {
  margin-left: 0.8rem;
}

.timeline-date {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
  margin-bottom: 0.15rem;
}

.timeline-content h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.timeline-content p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Impact grid */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.impact-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
}

.impact-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.impact-card ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
}

.impact-card li + li {
  margin-top: 0.3rem;
}

/* Comparison table */
.compare-table-wrapper {
  margin-top: 1.2rem;
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare-table thead tr {
  background: rgba(255, 255, 255, 0.04);
}

.compare-table th,
.compare-table td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-table th {
  font-weight: 600;
  opacity: 0.9;
}

.compare-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}
