/* Futuristic Crypto Design System - Dark theme with neon accents */

/* CSS Variables */
:root {
  /* Dark Base Colors */
  --background: 240 10% 3.9%;
  --foreground: 240 4% 95.9%;
  --card: 240 8% 8%;
  --card-foreground: 240 4% 95.9%;
  --popover: 240 8% 8%;
  --popover-foreground: 240 4% 95.9%;
  
  /* Neon Cyan Primary */
  --primary: 183 100% 50%;
  --primary-foreground: 240 10% 3.9%;
  
  /* Dark Secondary */
  --secondary: 240 4% 15.9%;
  --secondary-foreground: 240 4% 95.9%;
  --muted: 240 4% 15.9%;
  --muted-foreground: 240 4% 65.9%;
  
  /* Purple Accent */
  --accent: 270 95% 65%;
  --accent-foreground: 240 10% 3.9%;
  
  --destructive: 0 62.8% 50.6%;
  --destructive-foreground: 240 4% 95.9%;
  --border: 240 4% 15.9%;
  --input: 240 4% 15.9%;
  --ring: 183 100% 50%;
  --radius: 0.75rem;
  
  /* Crypto Theme Colors */
  --neon-blue: 217 91% 60%;
  --neon-purple: 270 95% 65%;
  --neon-green: 142 76% 36%;
  --neon-pink: 330 85% 60%;
  --cyber-dark: 240 10% 3.9%;
  --cyber-gray: 240 4% 15.9%;
  --glass-bg: 240 4% 8%;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(183 100% 50%), hsl(270 95% 65%));
  --gradient-secondary: linear-gradient(135deg, hsl(240 8% 8% / 0.9), hsl(240 4% 15.9% / 0.9));
  --gradient-hero: linear-gradient(135deg, hsl(240 10% 3.9%), hsl(240 8% 8%));
  --gradient-card: linear-gradient(135deg, hsl(240 8% 8% / 0.7), hsl(240 4% 15.9% / 0.5));
  
  /* Glassmorphism */
  --glass-border: hsl(240 4% 95.9% / 0.1);
  --glass-shadow: 0 8px 32px hsl(240 10% 3.9% / 0.3);
  --neon-glow: 0 0 20px hsl(183 100% 50% / 0.5);
  
  /* Animations */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-glow: all 0.2s ease-in-out;
}

/* Base Styles */
* {
  box-sizing: border-box;
  border-color: hsl(var(--border));
}

body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background: var(--gradient-hero);
  color: hsl(var(--foreground));
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Utility Classes */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-neon {
  color: hsl(var(--primary));
  text-shadow: 0 0 10px hsl(var(--primary) / 0.5);
}

.text-foreground {
  color: hsl(var(--foreground));
}

.text-muted-foreground {
  color: hsl(var(--muted-foreground));
}

.text-primary {
  color: hsl(var(--primary));
}

.text-neon-blue {
  color: hsl(var(--neon-blue));
}

.text-neon-green {
  color: hsl(var(--neon-green));
}

.text-neon-purple {
  color: hsl(var(--neon-purple));
}

.text-neon-pink {
  color: hsl(var(--neon-pink));
}

.text-accent {
  color: hsl(var(--accent));
}

.text-red-400 {
  color: hsl(0 84% 60%);
}

/* Severity color classes */
.border-red-500 {
  border-color: hsl(0 84% 60%);
}

.bg-red-500\/10 {
  background-color: hsl(0 84% 60% / 0.1);
}

.border-orange-500 {
  border-color: hsl(25 95% 53%);
}

.bg-orange-500\/10 {
  background-color: hsl(25 95% 53% / 0.1);
}

.border-yellow-500 {
  border-color: hsl(48 96% 53%);
}

.bg-yellow-500\/10 {
  background-color: hsl(48 96% 53% / 0.1);
}

.border-green-500 {
  border-color: hsl(142 76% 36%);
}

.bg-green-500\/10 {
  background-color: hsl(142 76% 36% / 0.1);
}

.border-primary {
  border-color: hsl(var(--primary));
}

.bg-primary\/10 {
  background-color: hsl(var(--primary) / 0.1);
}

.bg-muted {
  background-color: hsl(var(--muted));
}

/* Tailwind-like utility classes */
.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-6 {
  padding: 1.5rem;
}

.px-1\.5 {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-full {
  border-radius: 9999px;
}

.border-2 {
  border-width: 2px;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.font-semibold {
  font-weight: 600;
}

.leading-tight {
  line-height: 1.25;
}

.capitalize {
  text-transform: capitalize;
}

.w-1 {
  width: 0.25rem;
}

.h-1 {
  height: 0.25rem;
}

.w-6 {
  width: 1.5rem;
}

.h-6 {
  height: 1.5rem;
}

.w-8 {
  width: 2rem;
}

.h-8 {
  height: 2rem;
}

.space-x-1 > * + * {
  margin-left: 0.25rem;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.cursor-pointer {
  cursor: pointer;
}

/* Line clamp utilities */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Additional utility classes */
.group:hover .group-hover\:text-primary {
  color: hsl(var(--primary));
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.opacity-0 {
  opacity: 0;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.space-x-3 > * + * {
  margin-left: 0.75rem;
}

/* Grid utilities */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-center {
  justify-content: center;
}

/* Responsive utilities */
@media (min-width: 768px) {
  .md\:p-6 {
    padding: 1.5rem;
  }
  
  .md\:px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  .md\:py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  
  .md\:mb-4 {
    margin-bottom: 1rem;
  }
  
  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  
  .md\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  
  .md\:mb-2 {
    margin-bottom: 0.5rem;
  }
  
  .md\:mb-4 {
    margin-bottom: 1rem;
  }
  
  .md\:h-8 {
    height: 2rem;
  }
  
  .md\:w-8 {
    width: 2rem;
  }
  
  .md\:w-1\.5 {
    width: 0.375rem;
  }
  
  .md\:h-1\.5 {
    height: 0.375rem;
  }
  
  .md\:line-clamp-none {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
  }
  
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Glass Card Effect */
.glass-card {
  background: var(--gradient-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--neon-glow), var(--glass-shadow);
}

/* Neon Glow Effects */
.neon-glow {
  box-shadow: var(--neon-glow);
}

.neon-border {
  border: 1px solid hsl(var(--primary));
  box-shadow: 0 0 10px hsl(var(--primary) / 0.3);
}

/* Animated Background */
.animated-bg {
  background: linear-gradient(-45deg, 
    hsl(var(--cyber-dark)), 
    hsl(var(--cyber-gray)), 
    hsl(var(--cyber-dark)), 
    hsl(var(--glass-bg)));
  background-size: 400% 400%;
  animation: gradient-shift 15s ease infinite;
}

/* Button Variants */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: calc(var(--radius) - 2px);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: inherit;
}

.btn-neon {
  background: var(--gradient-primary);
  color: hsl(var(--primary-foreground));
  border: none;
  transition: var(--transition-glow);
}

.btn-neon:hover {
  box-shadow: var(--neon-glow);
  transform: translateY(-2px);
}

.btn-glass {
  background: var(--gradient-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: hsl(var(--foreground));
  transition: var(--transition-smooth);
}

.btn-glass:hover {
  background: hsl(var(--primary) / 0.1);
  border-color: hsl(var(--primary) / 0.5);
}

.hover\:border-primary\/50:hover {
  border-color: hsl(var(--primary) / 0.5);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.w-full {
  width: 100%;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 40;
  transition: var(--transition-smooth);
}

.nav.scrolled {
  background: var(--gradient-card);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  background: var(--gradient-primary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary-foreground));
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: hsl(var(--foreground));
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: hsl(var(--primary));
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: none;
  border: none;
  color: hsl(var(--foreground));
  cursor: pointer;
}

.nav-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--gradient-card);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.nav-mobile.active {
  display: block;
}

.nav-mobile-content {
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-mobile-link {
  color: hsl(var(--foreground));
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.3s;
}

.nav-mobile-link:hover {
  color: hsl(var(--primary));
}

.nav-mobile-buttons {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9)), url('hero-background.jpg');
  background-size: cover;
  background-position: center;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: 
    linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 72rem;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-tagline {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.75rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.hero-subtitle {
  font-size: 1rem;
  color: hsl(var(--foreground) / 0.8);
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.stat-card {
  background: var(--gradient-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  padding: 1.5rem;
  border-radius: 1rem;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.stat-card:hover {
  transform: scale(1.02);
}

.stat-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  animation: float 3s ease-in-out infinite;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
}

.stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.stat-label {
  color: hsl(var(--muted-foreground));
  font-weight: 500;
}

/* Particles */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  background: hsl(var(--primary));
  border-radius: 50%;
  opacity: 0.2;
  animation: float 3s ease-in-out infinite;
}

/* Ticker Section */
.ticker {
  padding: 1.5rem 0;
  border-top: 1px solid hsl(var(--border) / 0.5);
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.ticker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.ticker-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  display: flex;
  align-items: center;
}

.ticker-indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: hsl(var(--primary));
  animation: pulse-glow 2s ease-in-out infinite;
  margin-right: 0.5rem;
}

.ticker-subtitle {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.ticker-widget {
  border-radius: 0.75rem;
  overflow: hidden;
}

.tradingview-container {
  min-height: 400px;
}

.ticker-footer {
  padding: 0.5rem 1rem;
  border-top: 1px solid hsl(var(--border) / 0.2);
  text-align: center;
}

.ticker-link {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.3s;
}

.ticker-link:hover {
  color: hsl(var(--primary));
}

/* Issues Section */
.issues {
  padding: 5rem 1rem;
}

.issues .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  max-width: 48rem;
  margin: 0 auto;
}

.issues-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
  justify-items: center;
}

.issue-card {
  background: var(--gradient-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  padding: 0.75rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border-width: 2px;
  width: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}

.issue-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px hsl(183 100% 50% / 0.3);
}

/* Disable hover effects on mobile */
@media (max-width: 768px) {
  .issue-card:hover,
  .news-card:hover,
  .stat-card:hover {
    transform: none !important;
    box-shadow: var(--glass-shadow) !important;
  }
  
  /* Fix mobile grid centering */
  .issues-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 0.75rem;
  }
  
  .issue-card {
    width: 100%;
    max-width: 160px;
    min-height: 180px;
  }
}

.issue-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.issue-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--primary));
}

.issue-category {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  background: var(--gradient-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
}

.issue-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.issue-description {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.issue-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.issue-severity {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  text-transform: capitalize;
}

.issue-dots {
  display: flex;
  gap: 0.25rem;
}

.issue-dot {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
}

.issue-dot.active {
  background: hsl(var(--primary));
}

.issue-dot.inactive {
  background: hsl(var(--muted));
}

.issues-cta {
  text-align: center;
}

.cta-card {
  padding: 2rem;
  border-radius: 1.5rem;
  max-width: 42rem;
  margin: 0 auto;
}

.cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.cta-subtitle {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

/* News Section */
.news {
  padding: 5rem 1rem;
}

.news-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.news-filter-btn {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  background: var(--gradient-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: hsl(var(--foreground));
  cursor: pointer;
}

.news-filter-btn:hover {
  border-color: hsl(var(--primary) / 0.5);
}

.news-filter-btn.active {
  background: var(--gradient-primary);
  color: hsl(var(--primary-foreground));
  border: none;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.news-card {
  background: var(--gradient-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  padding: 1.5rem;
  border-radius: 1rem;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.news-card:hover {
  transform: scale(1.02);
}

.news-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.news-category {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  background: var(--gradient-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
}

.news-trending {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  color: hsl(var(--neon-pink));
}

.news-trending svg {
  width: 0.75rem;
  height: 0.75rem;
  margin-right: 0.25rem;
}

.news-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}

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

.news-summary {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.news-source {
  font-weight: 500;
}

.news-read-time {
  display: flex;
  align-items: center;
}

.news-read-time svg {
  width: 0.75rem;
  height: 0.75rem;
  margin-right: 0.25rem;
}

.news-time {
  display: flex;
  align-items: center;
}

.news-external {
  width: 0.75rem;
  height: 0.75rem;
  margin-left: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.news-card:hover .news-external {
  opacity: 1;
}

.news-load-more {
  text-align: center;
}

/* Contact Section */
.contact {
  padding: 2.5rem 1rem 5rem;
}

.contact-form-container {
  max-width: 64rem;
  margin: 0 auto;
}

.form-card {
  padding: 1rem 2rem 3rem;
  border-radius: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

.form-input,
.form-select,
.form-textarea {
  padding: 0.75rem;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid hsl(var(--border) / 0.5);
  background: hsl(var(--background) / 0.5);
  color: hsl(var(--foreground));
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
}

.form-textarea {
  min-height: 120px;
  resize: none;
}

.file-upload {
  position: relative;
}

.file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-dropzone {
  background: var(--gradient-card);
  backdrop-filter: blur(20px);
  border: 2px dashed hsl(var(--border) / 0.5);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  transition: border-color 0.3s;
  cursor: pointer;
}

.file-dropzone:hover {
  border-color: hsl(var(--primary) / 0.5);
}

.upload-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

.file-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  display: block;
}

.file-hint {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.5rem;
}

.form-submit {
  padding-top: 1.5rem;
}

.submit-text {
  display: inline;
}

.submit-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.5rem;
  transition: transform 0.3s;
}

.btn:hover .submit-icon {
  transform: translateX(0.25rem);
}

.submit-spinner {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 0.5rem;
}

.form-disclaimer {
  padding: 1rem;
  border-radius: 0.75rem;
}

.disclaimer-text {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
}

/* Success Message */
.contact-success {
  max-width: 42rem;
  margin: 0 auto;
}

.success-card {
  padding: 1.5rem 3rem;
  border-radius: 1rem;
  text-align: center;
}

.success-icon {
  width: 4rem;
  height: 4rem;
  color: hsl(var(--neon-green));
  margin: 0 auto 1rem;
  animation: pulse-glow 2s ease-in-out infinite;
}

.success-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.success-message {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
  padding: 0 0.5rem;
}

.success-note {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
}

.success-note-text {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* Footer */
.footer {
  background: hsl(var(--cyber-dark));
  border-top: 1px solid hsl(var(--border) / 0.5);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  padding: 4rem 0;
}

.footer-brand {
  grid-column: 1 / -1;
}

.brand-info {
  margin-bottom: 1.5rem;
}

.brand-title {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.brand-description {
  color: hsl(var(--muted-foreground));
  max-width: 28rem;
}

.brand-status {
  margin-bottom: 1.5rem;
}

.status-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: hsl(var(--neon-green));
  animation: pulse-glow 2s ease-in-out infinite;
}

.status-label {
  font-size: 0.875rem;
  color: hsl(var(--neon-green));
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  background: var(--gradient-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 0.75rem;
  padding: 0.75rem;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link:hover {
  transform: scale(1.1);
  box-shadow: var(--neon-glow);
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-links {
  display: none;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-list a {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.3s;
}

.footer-list a:hover {
  color: hsl(var(--primary));
}

.footer-tools {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border) / 0.5);
}

.tools-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
  text-align: center;
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.tool-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 0.75rem;
  padding: 0.5rem 1rem;
  transition: var(--transition-smooth);
}

.tool-item:hover {
  transform: scale(1.05);
}

.tool-logo {
  font-size: 1.25rem;
}

.tool-name {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.footer-bottom {
  border-top: 1px solid hsl(var(--border) / 0.5);
  background: hsl(var(--cyber-dark) / 0.5);
}

.bottom-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
}

.copyright {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.bottom-status {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Toast Container */
.toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  background: var(--gradient-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: var(--glass-shadow);
  min-width: 300px;
  animation: slide-up 0.3s ease-out;
}

.toast-title {
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

.toast-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.toast.destructive {
  border-color: hsl(var(--destructive));
}

/* Keyframe Animations */
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: hsl(var(--cyber-dark));
}

::-webkit-scrollbar-thumb {
  background: hsl(var(--primary) / 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--primary) / 0.5);
}

/* Responsive Design */
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  
  .nav-cta {
    display: flex;
  }
  
  .nav-toggle {
    display: none;
  }
  
  .hero-title {
    font-size: 3.75rem;
  }
  
  .hero-tagline {
    font-size: 1.25rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .hero-buttons {
    flex-direction: row;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .stat-card {
    padding: 1.5rem;
    border-radius: 1rem;
  }
  
  .stat-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
  }
  
  .stat-value {
    font-size: 1.875rem;
    margin-bottom: 0.5rem;
  }
  
  .issues-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  
  .issue-card {
    padding: 1.5rem;
    border-radius: 1rem;
  }
  
  .issue-header {
    margin-bottom: 1rem;
  }
  
  .issue-icon {
    width: 2rem;
    height: 2rem;
  }
  
  .issue-category {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }
  
  .issue-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
  
  .issue-description {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: block;
  }
  
  .issue-dots {
    gap: 0.375rem;
  }
  
  .issue-dot {
    width: 0.375rem;
    height: 0.375rem;
  }
  
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .contact-form {
    gap: 1.5rem;
  }
  
  .form-card {
    padding: 2rem 3rem;
    border-radius: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-brand {
    grid-column: 1 / 3;
  }
  
  .bottom-content {
    flex-direction: row;
    gap: 0;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 5rem;
  }
  
  .issues-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .footer-brand {
    grid-column: 1 / 3;
  }
  
  .footer-links {
    display: block;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 6rem;
  }
  
  .issues-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1536px) {
  .hero-title {
    font-size: 8rem;
  }
}