/* ========================================
   TORZON MARKET - OPTIMIZED STYLES
   ======================================== */

/* CSS Variables */
:root {
  --bg-primary: #0a0e1a;
  --bg-secondary: #0f1318;
  --accent-cyan: #00ffcc;
  --accent-purple: #b74fff;
  --accent-pink: #ff2424;
  --text-primary: #e0e0e0;
  --text-secondary: #a0a0a0;
  --border-color: rgba(0, 255, 204, 0.2);
  --shadow-glow: 0 0 20px rgba(0, 255, 204, 0.3);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--bg-primary) 0%, #0f1318 50%, var(--bg-primary) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--accent-cyan);
  text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

h1 {
  font-size: 3.5rem;
  letter-spacing: 2px;
}

h2 {
  font-size: 2.5rem;
  margin-top: 2rem;
}

h3 {
  font-size: 1.8rem;
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  line-height: 1.8;
}

a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

a:hover {
  color: var(--accent-pink);
  text-shadow: 0 0 10px rgba(255, 36, 36, 0.5);
  border-bottom-color: var(--accent-pink);
}

/* Background Effects */
.cyber-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 255, 204, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 204, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -2;
  pointer-events: none;
}

.floating-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

/* Header & Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(180deg, rgba(0, 255, 204, 0.1) 0%, transparent 50%, rgba(183, 79, 255, 0.05) 100%);
  border-bottom: 2px solid var(--border-color);
}

.logo-container {
  margin-bottom: 2rem;
  animation: float-up 1s ease-out;
}

.logo {
  max-width: 150px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(0, 255, 204, 0.5));
}

.main-title {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: glow-pulse 2s ease-in-out infinite;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.cyber-border {
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  margin: 2rem auto;
  box-shadow: 0 0 20px var(--accent-cyan);
}

/* Main Content */
.main-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 2rem 0;
}

.content-section {
  margin: 4rem 0;
  padding: 3rem 2rem;
  border-left: 3px solid var(--accent-cyan);
  background: rgba(0, 255, 204, 0.02);
  border-radius: 8px;
  transition: all 0.3s ease;
  animation: fade-in-up 0.8s ease-out;
}

.content-section:hover {
  border-left-color: var(--accent-pink);
  box-shadow: var(--shadow-glow);
  background: rgba(0, 255, 204, 0.05);
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--accent-cyan);
}

.section-content {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-primary);
}

/* Onion Links Container */
.onion-links-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  margin: 2rem 0;
  align-items: start;
}

.php-block {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--accent-cyan);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.2);
}

.code-header {
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  color: var(--bg-primary);
  padding: 1rem;
  font-weight: bold;
  font-family: 'Courier New', monospace;
}

.onion-links-list {
  padding: 1.5rem;
  max-height: 400px;
  overflow-y: auto;
}

.onion-link-item {
  display: block;
  padding: 0.8rem;
  margin: 0.5rem 0;
  background: rgba(0, 255, 204, 0.1);
  border-left: 3px solid var(--accent-cyan);
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  word-break: break-all;
  transition: all 0.3s ease;
}

.onion-link-item:hover {
  background: rgba(0, 255, 204, 0.2);
  border-left-color: var(--accent-pink);
  transform: translateX(10px);
}

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

.testimonial-card {
  background: rgba(0, 255, 204, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 204, 0.1);
}

.testimonial-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-glow);
  transform: translateY(-5px);
}

.user-info {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.user-icon {
  font-size: 2rem;
  margin-right: 1rem;
}

.user-name {
  font-size: 1.2rem;
  color: var(--accent-cyan);
  margin: 0;
}

.review-text {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.rating {
  color: var(--accent-pink);
  font-size: 1.1rem;
  font-weight: bold;
}

/* Forms */
.cyber-form {
  background: rgba(0, 255, 204, 0.05);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  margin: 2rem 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--accent-cyan);
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
  background: rgba(0, 255, 204, 0.05);
}

.cyber-button {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  color: var(--bg-primary);
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
}

.cyber-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 255, 204, 0.5);
  color: var(--bg-primary);
}

.cyber-button:active {
  transform: translateY(-1px);
}

/* Form Message */
.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 4px;
  text-align: center;
}

.form-message.success {
  background: rgba(0, 255, 204, 0.2);
  color: var(--accent-cyan);
  border: 1px solid var(--accent-cyan);
}

.form-message.error {
  background: rgba(255, 36, 36, 0.2);
  color: var(--accent-pink);
  border: 1px solid var(--accent-pink);
}

/* Footer */
.footer {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
  border-top: 2px solid var(--border-color);
  padding: 3rem 2rem;
  margin-top: 4rem;
  text-align: center;
  color: var(--text-secondary);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  max-width: 100px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 10px rgba(0, 255, 204, 0.3));
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 1.5rem 0;
}

.footer-links a {
  color: var(--accent-cyan);
  transition: all 0.3s ease;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--accent-pink);
  text-shadow: 0 0 10px rgba(255, 36, 36, 0.5);
}

.footer-content {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.cyber-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  margin: 1.5rem 0;
}

/* Navigation */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 20px rgba(0, 255, 204, 0.2);
  z-index: 1000;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.nav-link {
  display: inline-block;
  padding: 1.2rem 1.5rem;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  position: relative;
}

.nav-link:hover {
  color: var(--accent-cyan);
  background: rgba(0, 255, 204, 0.05);
  border-bottom-color: var(--accent-cyan);
  text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

.nav-link.active {
  color: var(--accent-cyan);
  border-bottom-color: var(--accent-cyan);
}

/* Warning Section */
.warning-section {
  background: rgba(255, 36, 36, 0.05);
  border-left-color: var(--accent-pink);
}

.warning-section .section-title {
  color: var(--accent-pink);
  border-bottom-color: var(--accent-pink);
}

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

@keyframes glow-pulse {
  0%, 100% {
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
  }
  50% {
    text-shadow: 0 0 30px rgba(0, 255, 204, 0.8);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   НОВЫЕ СТИЛИ ЭТАП 3 - РЕСТАЙЛИНГ
   ======================================== */

/* Crypto Price Widget */
.crypto-widget {
  position: fixed;
  top: 100px;
  right: 30px;
  background: rgba(10, 14, 26, 0.95);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  min-width: 280px;
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.2);
  z-index: 999;
  backdrop-filter: blur(10px);
  animation: fade-in-up 0.8s ease-out;
}

.crypto-widget-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--accent-cyan);
}

.crypto-widget-title {
  font-size: 1.1rem;
  color: var(--accent-cyan);
  font-weight: 700;
  margin: 0;
  flex: 1;
}

.crypto-widget-icon {
  font-size: 1.3rem;
  margin-right: 0.5rem;
}

.crypto-price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0, 255, 204, 0.1);
  transition: all 0.3s ease;
}

.crypto-price-item:last-child {
  border-bottom: none;
}

.crypto-price-item:hover {
  background: rgba(0, 255, 204, 0.05);
  padding-left: 0.5rem;
}

.crypto-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.crypto-symbol {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-left: 0.3rem;
}

.crypto-price {
  font-weight: 700;
  color: var(--accent-cyan);
  font-family: 'Courier New', monospace;
  font-size: 1rem;
}

.crypto-change {
  font-size: 0.85rem;
  margin-top: 0.2rem;
  font-weight: 600;
}

.crypto-change.positive {
  color: #00ff88;
}

.crypto-change.negative {
  color: var(--accent-pink);
}

/* Last Updated Timestamp */
.last-updated {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 255, 204, 0.1);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 1rem 0;
  transition: all 0.3s ease;
}

.last-updated:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.2);
}

.last-updated-icon {
  margin-right: 0.5rem;
  color: var(--accent-cyan);
  font-size: 1rem;
}

.last-updated-time {
  color: var(--accent-cyan);
  font-weight: 600;
  margin-left: 0.3rem;
}

/* Privacy News Feed */
.news-feed {
  background: rgba(0, 255, 204, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
}

.news-feed-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--accent-cyan);
}

.news-feed-title {
  font-size: 1.5rem;
  color: var(--accent-cyan);
  margin: 0;
  flex: 1;
}

.news-item {
  padding: 1.2rem;
  margin-bottom: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-left: 3px solid var(--accent-purple);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.news-item:hover {
  border-left-color: var(--accent-cyan);
  background: rgba(0, 255, 204, 0.05);
  transform: translateX(5px);
}

.news-item-date {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.news-item-title {
  font-size: 1.1rem;
  color: var(--accent-cyan);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.news-item-source {
  font-size: 0.85rem;
  color: var(--accent-purple);
  font-style: italic;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-card {
  background: linear-gradient(135deg, rgba(0, 255, 204, 0.05), rgba(183, 79, 255, 0.05));
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.8rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.stat-card:hover::before {
  left: 100%;
}

.stat-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 25px rgba(0, 255, 204, 0.3);
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent-cyan);
  text-shadow: 0 0 15px rgba(0, 255, 204, 0.5);
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-cyan);
  margin-bottom: 0.5rem;
  font-family: 'Courier New', monospace;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-cyan), var(--accent-purple));
  box-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  width: 45%;
  background: rgba(0, 255, 204, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.2);
  transform: scale(1.02);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--accent-cyan);
  border: 3px solid var(--bg-primary);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.8);
  z-index: 2;
}

.timeline-date {
  font-size: 0.9rem;
  color: var(--accent-purple);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 1.2rem;
  color: var(--accent-cyan);
  margin-bottom: 0.5rem;
}

.timeline-description {
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Comparison Cards */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.comparison-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.comparison-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 30px rgba(0, 255, 204, 0.3);
  transform: translateY(-8px);
}

.comparison-card-header {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  color: var(--bg-primary);
  padding: 1.5rem;
  text-align: center;
}

.comparison-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}

.comparison-card-body {
  padding: 1.5rem;
}

.comparison-feature {
  display: flex;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0, 255, 204, 0.1);
}

.comparison-feature:last-child {
  border-bottom: none;
}

.comparison-feature-icon {
  margin-right: 0.8rem;
  font-size: 1.2rem;
}

.comparison-feature-icon.check {
  color: #00ff88;
}

.comparison-feature-icon.cross {
  color: var(--accent-pink);
}

.comparison-feature-text {
  color: var(--text-primary);
  font-size: 0.95rem;
}

/* Accordion */
.accordion {
  margin: 2rem 0;
}

.accordion-item {
  background: rgba(0, 255, 204, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.15);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: rgba(0, 255, 204, 0.05);
}

.accordion-title {
  font-size: 1.1rem;
  color: var(--accent-cyan);
  font-weight: 600;
  margin: 0;
}

.accordion-icon {
  font-size: 1.2rem;
  color: var(--accent-cyan);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
}

.accordion-body {
  padding: 1.5rem;
  color: var(--text-primary);
  line-height: 1.8;
}

/* Info Boxes */
.info-box {
  display: flex;
  align-items: flex-start;
  background: rgba(0, 255, 204, 0.05);
  border-left: 4px solid var(--accent-cyan);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  transition: all 0.3s ease;
}

.info-box:hover {
  background: rgba(0, 255, 204, 0.08);
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.15);
  transform: translateX(5px);
}

.info-box.warning {
  border-left-color: var(--accent-pink);
  background: rgba(255, 36, 36, 0.05);
}

.info-box.warning:hover {
  background: rgba(255, 36, 36, 0.08);
}

.info-box.success {
  border-left-color: #00ff88;
  background: rgba(0, 255, 136, 0.05);
}

.info-box.success:hover {
  background: rgba(0, 255, 136, 0.08);
}

.info-box.purple {
  border-left-color: var(--accent-purple);
  background: rgba(183, 79, 255, 0.05);
}

.info-box.purple:hover {
  background: rgba(183, 79, 255, 0.08);
}

.info-box-icon {
  font-size: 1.8rem;
  margin-right: 1.2rem;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.info-box.warning .info-box-icon {
  color: var(--accent-pink);
}

.info-box.success .info-box-icon {
  color: #00ff88;
}

.info-box.purple .info-box-icon {
  color: var(--accent-purple);
}

.info-box-content {
  flex: 1;
}

.info-box-title {
  font-size: 1.1rem;
  color: var(--accent-cyan);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.info-box.warning .info-box-title {
  color: var(--accent-pink);
}

.info-box.success .info-box-title {
  color: #00ff88;
}

.info-box.purple .info-box-title {
  color: var(--accent-purple);
}

.info-box-text {
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero-section {
    min-height: 60vh;
    padding: 2rem 1rem;
  }

  .main-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .onion-links-container {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .nav-container {
    padding: 0 1rem;
    gap: 0;
  }

  .nav-link {
    padding: 1rem 1rem;
    font-size: 0.9rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .content-section {
    padding: 1.5rem 1rem;
  }

  p {
    font-size: 0.95rem;
  }

  /* Новые элементы - мобильная адаптация */
  .crypto-widget {
    position: static;
    margin: 2rem auto;
    max-width: 100%;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: row !important;
    padding-left: 50px;
  }

  .timeline-content {
    width: 100%;
  }

  .timeline-dot {
    left: 20px;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .news-feed {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  .main-title {
    font-size: 1.3rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .logo {
    max-width: 100px;
  }

  .cyber-form {
    padding: 1rem;
  }

  .cyber-button {
    width: 100%;
  }

  .footer {
    padding: 2rem 1rem;
  }
}

/* Print Styles */
@media print {
  .top-nav,
  .cyber-grid,
  .floating-particles {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  a {
    color: blue;
  }
}
