:root {
  /* Enhanced Color Palette */
  --primary-red: #ff0040;
  --primary-red-glow: rgba(255, 0, 64, 0.8);
  --secondary-cyan: #00ffff;
  --secondary-cyan-glow: rgba(0, 255, 255, 0.6);
  --accent-purple: #8b00ff;
  --accent-gold: #ffd700;
  --accent-green: #00ff88;
  
  /* Background Colors */
  --bg-primary: #0a0a0f;
  --bg-secondary: #1a1a2e;
  --bg-tertiary: #16213e;
  --bg-card: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  --bg-glass: rgba(26, 26, 46, 0.85);
  --bg-overlay: rgba(0, 0, 0, 0.7);
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #b8c5d6;
  --text-muted: #7a8ba0;
  --text-accent: var(--primary-red);
  
  /* Border & Shadow */
  --border-primary: rgba(255, 0, 64, 0.3);
  --border-secondary: rgba(0, 255, 255, 0.2);
  --border-subtle: rgba(255, 255, 255, 0.1);
  --shadow-glow: 0 0 20px var(--primary-red-glow);
  --shadow-deep: 0 10px 40px rgba(0, 0, 0, 0.7);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  
  /* Animation Timings */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Layout */
  --max-width: 1400px;
  --content-width: 1200px;
  --section-padding: 6rem 0;
  --card-radius: 16px;
  --border-radius: 8px;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  font-weight: 400;
}

/* Enhanced Background with Animated Particles */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 0, 64, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(139, 0, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 60% 70%, rgba(0, 255, 136, 0.06) 0%, transparent 50%);
  z-index: -2;
  animation: backgroundShift 25s ease-in-out infinite;
}

@keyframes backgroundShift {
  0%, 100% { 
    transform: scale(1) rotate(0deg);
    opacity: 0.8;
  }
  25% {
    transform: scale(1.05) rotate(0.5deg);
    opacity: 1;
  }
  50% { 
    transform: scale(1.1) rotate(1deg);
    opacity: 0.9;
  }
  75% {
    transform: scale(1.05) rotate(0.5deg);
    opacity: 1;
  }
}

/* Enhanced Matrix Rain Effect */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(0, 255, 136, 0.04) 2px,
      rgba(0, 255, 136, 0.04) 4px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 255, 136, 0.03) 2px,
      rgba(0, 255, 136, 0.03) 4px
    );
  background-size: 25px 25px;
  z-index: -1;
  animation: matrixRain 20s linear infinite;
}

@keyframes matrixRain {
  0% { 
    transform: translateY(-100px);
    opacity: 0.1;
  }
  50% {
    opacity: 0.4;
  }
  100% { 
    transform: translateY(100px);
    opacity: 0.1;
  }
}

/* ========================================
   ENHANCED TYPOGRAPHY SYSTEM
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  text-align: center;
}

h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  background: linear-gradient(135deg, var(--primary-red), var(--secondary-cyan), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px var(--primary-red-glow);
  margin-bottom: 2rem;
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: var(--text-primary);
  margin-bottom: 2rem;
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red), var(--secondary-cyan));
  border-radius: 2px;
}

h3 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  color: var(--text-primary);
  margin-bottom: 1.2rem;
}

h4 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--secondary-cyan);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Enhanced text alignment classes */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Special text styles */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-red), var(--secondary-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-glow {
  text-shadow: 0 0 20px var(--primary-red-glow);
}

/* Links styling - enhanced without underlines */
a {
  color: var(--primary-red);
  text-decoration: none;
  transition: all var(--transition-smooth);
  position: relative;
  font-weight: 500;
}

a:hover {
  color: var(--secondary-cyan);
  text-shadow: 0 0 12px var(--secondary-cyan-glow);
  transform: translateY(-1px);
}

a.no-underline {
  text-decoration: none !important;
}

/* Special link types */
a.external-link {
  color: var(--accent-purple);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

a.external-link:hover {
  color: var(--accent-gold);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

a.mirror-link {
  color: var(--accent-green);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  display: block;
  padding: 0.8rem 1rem;
  margin: 0.5rem 0;
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: var(--border-radius);
  transition: all var(--transition-smooth);
}

a.mirror-link:hover {
  color: var(--secondary-cyan);
  background: rgba(0, 255, 255, 0.1);
  border-color: var(--secondary-cyan);
  text-shadow: 0 0 15px var(--secondary-cyan-glow);
  transform: translateX(5px);
}

/* ========================================
   ENHANCED CONTAINER & LAYOUT SYSTEM
   ======================================== */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.content-container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: var(--section-padding);
}

.centered-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (max-width: 768px) {
  .container,
  .content-container {
    padding: 0 1rem;
  }
  
  :root {
    --section-padding: 4rem 0;
  }
}

/* ========================================
   ADVANCED HEADER WITH GLASS MORPHISM
   ======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(25px) saturate(180%);
  border-bottom: 1px solid var(--border-primary);
  z-index: 1000;
  transition: all var(--transition-smooth);
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-red), var(--secondary-cyan), transparent);
  animation: headerGlow 4s ease-in-out infinite;
}

@keyframes headerGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}

.logo {
  height: 55px;
  width: auto;
  filter: drop-shadow(0 0 15px var(--primary-red-glow));
  transition: all var(--transition-smooth);
}

.logo:hover {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 25px var(--primary-red-glow));
}

.nav-title {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-red), var(--secondary-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  transition: all var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 0;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red), var(--secondary-cyan));
  transition: all var(--transition-smooth);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  text-shadow: 0 0 12px var(--primary-red-glow);
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 100%;
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  background: var(--bg-glass);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-subtle);
}

.lang-active {
  color: var(--primary-red);
  text-shadow: 0 0 8px var(--primary-red-glow);
}

.lang-inactive {
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-inactive:hover {
  color: var(--secondary-cyan);
  text-shadow: 0 0 8px var(--secondary-cyan-glow);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .nav-container {
    padding: 1rem 0;
  }
  
  .nav-title {
    font-size: 1.5rem;
  }
}

/* ========================================
   ENHANCED HERO SECTION
   ======================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 10rem 0 6rem;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-title {
  margin-bottom: 2rem;
}

.title-line {
  display: block;
  margin-bottom: 0.5rem;
}

.neon-text {
  text-shadow: 
    0 0 10px var(--primary-red-glow),
    0 0 20px var(--primary-red-glow),
    0 0 40px var(--primary-red-glow);
  animation: neonPulse 3s ease-in-out infinite;
}

@keyframes neonPulse {
  0%, 100% { 
    text-shadow: 
      0 0 10px var(--primary-red-glow),
      0 0 20px var(--primary-red-glow),
      0 0 40px var(--primary-red-glow);
  }
  50% { 
    text-shadow: 
      0 0 15px var(--primary-red-glow),
      0 0 30px var(--primary-red-glow),
      0 0 60px var(--primary-red-glow);
  }
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.6;
  font-weight: 400;
}

/* Enhanced Matrix Effect */
.neon-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  overflow: hidden;
}

.neon-grid::before {
  content: '01001010 01100101 01110100 01101000 01100101 01101110 01101111 01110010 01110100 01101000 01001010 01100101 01110100 01101000 01100101 01101110 01101111 01110010 01110100 01101000 01001010 01100101 01110100 01101000 01100101 01101110 01101111 01110010 01110100 01101000 01001010 01100101 01110100 01101000 01100101 01101110 01101111 01110010 01110100 01101000 01001010 01100101 01110100 01101000 01100101 01101110 01101111 01110010 01110100 01101000 01001010 01100101 01110100 01101000 01100101 01101110 01101111 01110010 01110100 01101000';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 200%;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  color: rgba(0, 255, 136, 0.12);
  line-height: 1.4;
  word-wrap: break-word;
  animation: matrixFlow 25s linear infinite;
  z-index: -1;
}

.neon-grid::after {
  content: 'WETHENORTH MATRIX SECURE ENCRYPTED DARKNET PRIVACY ANONYMOUS BITCOIN ESCROW CANADA WETHENORTH MATRIX SECURE ENCRYPTED DARKNET PRIVACY ANONYMOUS BITCOIN ESCROW CANADA WETHENORTH MATRIX SECURE ENCRYPTED DARKNET PRIVACY ANONYMOUS BITCOIN ESCROW CANADA';
  position: absolute;
  top: -100%;
  right: 0;
  width: 100%;
  height: 200%;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: rgba(255, 0, 64, 0.1);
  line-height: 1.6;
  word-wrap: break-word;
  animation: matrixFlow 30s linear infinite reverse;
  z-index: -1;
}

@keyframes matrixFlow {
  0% { 
    transform: translateY(0);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  90% {
    opacity: 0.4;
  }
  100% { 
    transform: translateY(100%);
    opacity: 0;
  }
}

/* Enhanced Floating Particles */
.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-particles::before,
.floating-particles::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--primary-red);
  border-radius: 50%;
  box-shadow: 0 0 25px var(--primary-red-glow);
  animation: particleFloat 10s ease-in-out infinite;
}

.floating-particles::before {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.floating-particles::after {
  top: 70%;
  right: 20%;
  animation-delay: 5s;
  background: var(--secondary-cyan);
  box-shadow: 0 0 25px var(--secondary-cyan-glow);
}

@keyframes particleFloat {
  0%, 100% { 
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0.7;
  }
  25% { 
    transform: translateY(-40px) translateX(25px) scale(1.3);
    opacity: 1;
  }
  50% { 
    transform: translateY(-20px) translateX(-15px) scale(0.8);
    opacity: 0.8;
  }
  75% { 
    transform: translateY(-35px) translateX(30px) scale(1.1);
    opacity: 0.9;
  }
}

/* ========================================
   ENHANCED HERO STATS
   ======================================== */

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin: 4rem 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  backdrop-filter: blur(20px);
  transition: all var(--transition-smooth);
  min-width: 180px;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-red);
  box-shadow: var(--shadow-card);
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-red);
  text-shadow: 0 0 20px var(--primary-red-glow);
  margin-bottom: 0.5rem;
  font-family: 'IBM Plex Mono', monospace;
}

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

@media (max-width: 768px) {
  .hero-stats {
    gap: 2rem;
  }
  
  .stat-item {
    min-width: 150px;
    padding: 1.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

/* ========================================
   ENHANCED BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  min-width: 200px;
}

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

.btn:hover::before {
  left: 100%;
}

.neon-btn {
  background: linear-gradient(145deg, var(--primary-red), #cc0033);
  color: var(--text-primary);
  border: 2px solid var(--primary-red);
  box-shadow: 
    0 0 20px rgba(255, 0, 64, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.neon-btn:hover {
  background: linear-gradient(145deg, #ff1a4d, var(--primary-red));
  transform: translateY(-3px);
  box-shadow: 
    0 0 30px rgba(255, 0, 64, 0.6),
    0 10px 20px rgba(255, 0, 64, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-access-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #007bff, #0056b3);
  color: #ffffff;
  padding: 1.2rem 3rem;
  border: 2px solid #00aaff;
  border-radius: var(--border-radius);
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 
    0 0 20px rgba(0, 123, 255, 0.4),
    0 5px 15px rgba(0, 123, 255, 0.2);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

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

.btn-access-links:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 0 30px rgba(0, 123, 255, 0.6),
    0 10px 25px rgba(0, 123, 255, 0.3);
  background: linear-gradient(145deg, #0088ff, #0062cc);
  text-decoration: none;
  color: #ffffff;
}

.btn-access-links:hover::before {
  left: 100%;
}

.button-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 25px var(--primary-red-glow);
  opacity: 0.4;
  border-radius: var(--border-radius);
  pointer-events: none;
}

/* ========================================
   ENHANCED SECTIONS
   ======================================== */

section {
  padding: var(--section-padding);
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red), var(--secondary-cyan));
  border-radius: 2px;
}

/* ========================================
   ENHANCED MIRRORS SECTION
   ======================================== */

.mirrors {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.mirror-box-replacement {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem 0;
}

.mirror-box {
  background: var(--bg-glass);
  border: 1px solid var(--border-primary);
  border-radius: var(--card-radius);
  backdrop-filter: blur(20px);
  overflow: hidden;
  max-width: 800px;
  margin: 2rem auto;
  box-shadow: var(--shadow-card);
}

.mirror-header {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-primary);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.terminal-prompt {
  color: var(--accent-green);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
}

.blinking-cursor {
  color: var(--primary-red);
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.mirror-content {
  padding: 2rem;
  font-family: 'IBM Plex Mono', monospace;
  line-height: 1.8;
}

/* ========================================
   ENHANCED SECURITY SECTION
   ======================================== */

.security {
  background: var(--bg-primary);
}

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

.security-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  padding: 2.5rem;
  text-align: center;
  backdrop-filter: blur(20px);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.security-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red), var(--secondary-cyan));
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.security-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-red);
  box-shadow: var(--shadow-card);
}

.security-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
}

.card-title {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-align: center;
}

.card-description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: center;
}

.card-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.status-indicator.active {
  background: var(--accent-green);
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

.status-indicator.warning {
  background: var(--accent-gold);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.status-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

/* ========================================
   ENHANCED ESCROW TIMELINE
   ======================================== */

.escrow {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 3rem auto;
}

.timeline-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--border-subtle);
  border-radius: 2px;
  transform: translateY(-50%);
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--primary-red), var(--secondary-cyan));
  border-radius: 2px;
  animation: progressFlow 3s ease-in-out infinite;
}

@keyframes progressFlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.timeline-items {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 200px;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background: var(--primary-red);
  border: 3px solid var(--bg-primary);
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 0 15px var(--primary-red-glow);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 0 15px var(--primary-red-glow);
  }
  50% { 
    transform: scale(1.1);
    box-shadow: 0 0 25px var(--primary-red-glow);
  }
}

.timeline-content h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.timeline-time {
  color: var(--primary-red);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.escrow-note {
  background: var(--bg-glass);
  border: 1px solid var(--border-primary);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-top: 3rem;
  text-align: center;
  backdrop-filter: blur(20px);
}

.escrow-note strong {
  color: var(--primary-red);
}

@media (max-width: 768px) {
  .timeline-items {
    flex-direction: column;
    gap: 2rem;
  }
  
  .timeline-track {
    display: none;
  }
  
  .timeline-item {
    max-width: 100%;
  }
}

/* ========================================
   ENHANCED RULES SECTION
   ======================================== */

.rules {
  background: var(--bg-primary);
}

.rules-accordion {
  max-width: 900px;
  margin: 3rem auto;
}

.accordion-item {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: all var(--transition-smooth);
  background: linear-gradient(135deg, transparent, rgba(255, 0, 64, 0.05));
}

.accordion-header:hover {
  background: linear-gradient(135deg, rgba(255, 0, 64, 0.05), rgba(255, 0, 64, 0.1));
}

.accordion-header h3 {
  color: var(--text-primary);
  font-size: 1.3rem;
  margin: 0;
  text-align: left;
}

.accordion-icon {
  color: var(--primary-red);
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform var(--transition-smooth);
}

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

.accordion-content {
  padding: 0 2rem 2rem;
  display: none;
}

.accordion-item.active .accordion-content {
  display: block;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.accordion-content ul {
  list-style: none;
  padding: 0;
}

.accordion-content li {
  color: var(--text-secondary);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  padding-left: 2rem;
}

.accordion-content li:last-child {
  border-bottom: none;
}

.accordion-content li::before {
  content: '•';
  color: var(--primary-red);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* ========================================
   ENHANCED VENDORS SECTION
   ======================================== */

.vendors {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.vendor-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  padding: 2.5rem;
  text-align: center;
  backdrop-filter: blur(20px);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.vendor-card.trusted {
  border-color: var(--accent-green);
}

.vendor-card.premium {
  border-color: var(--accent-gold);
}

.vendor-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-green);
  color: var(--bg-primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vendor-card.premium .vendor-badge {
  background: var(--accent-gold);
}

.vendor-card h3 {
  color: var(--text-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.vendor-features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 2rem 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.feature-icon {
  color: var(--accent-green);
  font-weight: bold;
  width: 20px;
}

.vendor-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

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

/* ========================================
   ENHANCED GALLERY SECTION
   ======================================== */

.gallery {
  background: var(--bg-primary);
}

.gallery-container {
  position: relative;
  max-width: 800px;
  margin: 3rem auto;
  border-radius: var(--card-radius);
  overflow: hidden;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(20px);
}

.gallery-slides {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.gallery-slide.active {
  opacity: 1;
}

.gallery-image {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
}

.gallery-caption {
  margin-top: 1rem;
  color: var(--text-secondary);
  font-size: 1rem;
  text-align: center;
  font-weight: 500;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-glass);
  border: 1px solid var(--border-primary);
  color: var(--text-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: bold;
  transition: all var(--transition-smooth);
  backdrop-filter: blur(20px);
}

.gallery-nav:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  box-shadow: 0 0 20px var(--primary-red-glow);
}

.gallery-prev {
  left: 1rem;
}

.gallery-next {
  right: 1rem;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--border-subtle);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.gallery-dot.active,
.gallery-dot:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  box-shadow: 0 0 10px var(--primary-red-glow);
}

@media (max-width: 768px) {
  .gallery-slides {
    height: 400px;
  }
  
  .gallery-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* ========================================
   ENHANCED SUPPORT SECTION
   ======================================== */

.support {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.support-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  transition: all var(--transition-smooth);
}

.support-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-red);
  box-shadow: var(--shadow-card);
}

.support-card h3 {
  color: var(--text-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.support-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: center;
}

.language-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.lang-badge {
  background: var(--primary-red);
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.device-recommendation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: var(--border-radius);
}

.device-icon {
  font-size: 2rem;
}

.device-text {
  color: var(--accent-green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

/* ========================================
   ENHANCED FOOTER
   ======================================== */

.footer {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-top: 1px solid var(--border-primary);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-red), var(--secondary-cyan), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  color: var(--text-primary);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.footer-section p {
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: left;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  color: var(--text-secondary);
  padding: 0.5rem 0;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.footer-section li:hover {
  color: var(--primary-red);
  transform: translateX(5px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  text-align: left;
}

.footer-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.badge {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom p {
    text-align: center;
  }
}

/* ========================================
   ENHANCED ABOUT & LINKS PAGES
   ======================================== */

.about-hero,
.links-hero {
  min-height: 80vh;
  padding: 8rem 0 4rem;
}

.mission {
  padding: var(--section-padding);
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.mission-text {
  text-align: left;
}

.mission-text h2 {
  text-align: left;
}

.mission-text h2::after {
  left: 0;
  transform: none;
}

.mission-description p {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.mission-image,
.technology-image {
  text-align: center;
}

.feature-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
}

.feature-image:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.values {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.value-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  padding: 2.5rem;
  text-align: center;
  backdrop-filter: blur(20px);
  transition: all var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-red);
  box-shadow: var(--shadow-card);
}

.value-card h3 {
  color: var(--text-primary);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  text-align: center;
}

.value-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: center;
}

.technology {
  background: var(--bg-primary);
}

.technology-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.technology-text {
  text-align: left;
}

.technology-text h2 {
  text-align: left;
}

.technology-text h2::after {
  left: 0;
  transform: none;
}

.tech-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.tech-feature h4 {
  color: var(--secondary-cyan);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  text-align: left;
}

.tech-feature p {
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.commitment {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.commitment-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.commitment-text {
  text-align: left;
}

.commitment-text p {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.commitment-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.commitment-stats .stat-item {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  text-align: center;
}

@media (max-width: 768px) {
  .mission-content,
  .technology-content,
  .commitment-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .mission-text,
  .technology-text {
    text-align: center;
  }
  
  .mission-text h2,
  .technology-text h2 {
    text-align: center;
  }
  
  .mission-text h2::after,
  .technology-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .mission-description p,
  .tech-feature p,
  .commitment-text p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .tech-feature h4 {
    text-align: center;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ========================================
   ENHANCED LINKS PAGE STYLES
   ======================================== */

.tor-section,
.vpn-section,
.messaging-section {
  padding: var(--section-padding);
}

.tor-section {
  background: var(--bg-primary);
}

.vpn-section {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.messaging-section {
  background: var(--bg-primary);
}

.tool-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.tool-description {
  text-align: left;
}

.tool-description h3 {
  color: var(--secondary-cyan);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.tool-description p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius);
  backdrop-filter: blur(20px);
  transition: all var(--transition-smooth);
}

.feature-item:hover {
  border-color: var(--primary-red);
  transform: translateX(5px);
}

.feature-icon {
  font-size: 1.2rem;
}

.tool-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.link-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  padding: 2rem;
  backdrop-filter: blur(20px);
  transition: all var(--transition-smooth);
}

.link-card.official {
  border-color: var(--accent-green);
}

.link-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-red);
  box-shadow: var(--shadow-card);
}

.link-card h4 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  text-align: center;
}

.link-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: center;
}

.link-icon {
  margin-left: 0.5rem;
  font-size: 0.8rem;
}

.vpn-intro {
  max-width: 900px;
  margin: 2rem auto;
  text-align: center;
}

.vpn-intro p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.1rem;
}

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

.vpn-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  transition: all var(--transition-smooth);
  position: relative;
}

.vpn-card.premium {
  border-color: var(--accent-gold);
}

.vpn-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.vpn-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-green);
  color: var(--bg-primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vpn-card h3 {
  color: var(--text-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.vpn-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: center;
}

.vpn-features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.vpn-feature {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

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

.vpn-link {
  display: inline-block;
  background: var(--primary-red);
  color: var(--text-primary);
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all var(--transition-smooth);
  margin-top: 1rem;
}

.vpn-link:hover {
  background: var(--secondary-cyan);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.vpn-warning {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--bg-glass);
  border: 1px solid var(--accent-gold);
  border-radius: var(--card-radius);
  padding: 2rem;
  margin-top: 3rem;
  backdrop-filter: blur(20px);
}

.warning-icon {
  font-size: 2rem;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.warning-content h4 {
  color: var(--accent-gold);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  text-align: left;
}

.warning-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

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

.messaging-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  padding: 2rem;
  backdrop-filter: blur(20px);
  transition: all var(--transition-smooth);
}

.messaging-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-red);
  box-shadow: var(--shadow-card);
}

.messaging-card h3 {
  color: var(--text-primary);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  text-align: center;
}

.messaging-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: center;
}

.messaging-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.msg-feature {
  background: rgba(255, 0, 64, 0.1);
  color: var(--primary-red);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.msg-link {
  display: inline-block;
  color: var(--secondary-cyan);
  text-decoration: none;
  font-weight: 600;
  font-family: 'IBM Plex Mono', monospace;
  transition: all var(--transition-smooth);
}

.msg-link:hover {
  color: var(--primary-red);
  text-shadow: 0 0 10px var(--primary-red-glow);
}

@media (max-width: 768px) {
  .tool-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .tool-description {
    text-align: center;
  }
  
  .tool-description h3 {
    text-align: center;
  }
  
  .tool-description p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .tool-features {
    grid-template-columns: 1fr;
  }
  
  .vpn-grid,
  .messaging-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .vpn-warning {
    flex-direction: column;
    text-align: center;
  }
  
  .warning-content h4 {
    text-align: center;
  }
  
  .warning-content p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ========================================
   RESPONSIVE DESIGN ENHANCEMENTS
   ======================================== */

@media (max-width: 1200px) {
  :root {
    --max-width: 1200px;
    --content-width: 1000px;
  }
}

@media (max-width: 992px) {
  :root {
    --max-width: 100%;
    --content-width: 100%;
    --section-padding: 5rem 0;
  }
  
  .hero {
    padding: 8rem 0 4rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 4rem 0;
  }
  
  .hero {
    padding: 6rem 0 3rem;
    min-height: 80vh;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  
  .stat-item {
    min-width: 200px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 3rem 0;
  }
  
  .container,
  .content-container {
    padding: 0 1rem;
  }
  
  .hero {
    padding: 5rem 0 2rem;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
  
  .btn,
  .btn-access-links {
    padding: 1rem 2rem;
    font-size: 1rem;
    min-width: 180px;
  }
}

/* ========================================
   ACCESSIBILITY IMPROVEMENTS
   ======================================== */

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
.nav-link:focus,
.btn:focus {
  outline: 2px solid var(--primary-red);
  outline-offset: 2px;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .neon-text {
    animation: none;
  }
  
  .floating-particles::before,
  .floating-particles::after {
    animation: none;
  }
  
  body::before,
  body::after {
    animation: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --text-secondary: #ffffff;
    --text-muted: #cccccc;
    --border-subtle: rgba(255, 255, 255, 0.3);
  }
}

/* Print styles */
@media print {
  body::before,
  body::after,
  .neon-grid,
  .floating-particles {
    display: none;
  }
  
  .header {
    position: static;
    background: white;
    color: black;
  }
  
  * {
    color: black !important;
    background: white !important;
  }
}
