/* Complete blogstyle.css file */
/* Modern Rust Affiliate Site - Blog Styles */
/* Color Scheme: Electric Blue/Purple with Neon Accents */

:root {
  /* Modern Color Palette */
  --primary: #00d4ff;
  --primary-dark: #0099cc;
  --secondary: #7c3aed;
  --secondary-dark: #5b21b6;
  --accent: #ff6b35;
  --accent-dark: #e55039;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
  --gradient-secondary: linear-gradient(135deg, #7c3aed 0%, #ff6b35 100%);
  --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #00d4ff 100%);
  --gradient-dark: linear-gradient(135deg, #0a0a0f 0%, #111118 100%);
  
  /* Background Colors */
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-tertiary: #1a1a24;
  --bg-card: #15151f;
  --bg-elevated: #1f1f2e;
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --text-inverse: #000000;
  
  /* Border & Surface */
  --border-primary: #27272a;
  --border-secondary: #3f3f46;
  --border-accent: rgba(0, 212, 255, 0.3);
  
  /* Shadows & Glows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  --glow-primary: 0 0 20px rgba(0, 212, 255, 0.5);
  --glow-secondary: 0 0 20px rgba(124, 58, 237, 0.5);
  --glow-accent: 0 0 20px rgba(255, 107, 53, 0.5);
  
  /* Typography */
  --font-primary: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Success/Error Colors */
  --success-color: #10b981;
  --danger-color: #ef4444;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background Animation - Extended with more shapes */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 60px;
  height: 60px;
  background: var(--gradient-secondary);
  border-radius: 30%;
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  background: var(--gradient-accent);
  border-radius: 20%;
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

.shape-4 {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  top: 40%;
  right: 10%;
  animation-delay: 1s;
}

.shape-5 {
  width: 70px;
  height: 70px;
  background: var(--gradient-secondary);
  border-radius: 40%;
  bottom: 20%;
  right: 30%;
  animation-delay: 3s;
}

.shape-6 {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  border-radius: 25%;
  top: 10%;
  left: 50%;
  animation-delay: 1.5s;
}

.shape-7 {
  width: 90px;
  height: 90px;
  background: var(--gradient-primary);
  border-radius: 45%;
  bottom: 10%;
  left: 5%;
  animation-delay: 2.5s;
}

.shape-8 {
  width: 35px;
  height: 35px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  top: 70%;
  left: 40%;
  animation-delay: 3.5s;
}

.shape-9 {
  width: 75px;
  height: 75px;
  background: var(--gradient-accent);
  border-radius: 35%;
  top: 30%;
  right: 40%;
  animation-delay: 4.5s;
}

.shape-10 {
  width: 55px;
  height: 55px;
  background: var(--gradient-primary);
  border-radius: 30%;
  bottom: 50%;
  right: 5%;
  animation-delay: 5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-30px) rotate(120deg); }
  66% { transform: translateY(-60px) rotate(240deg); }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-primary);
}

.header-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-primary);
  opacity: 0.5;
}

.main-nav {
  padding: var(--space-4) 0;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--space-3);
  box-shadow: var(--glow-primary);
}

.logo-text {
  font-size: var(--font-size-xl);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.logo-text .pro {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-8);
}

.nav-menu a {
  position: relative;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-base);
  padding: var(--space-2) 0;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--text-primary);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-base);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: var(--space-1);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-base);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white !important;
  border: 1px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--glow-primary);
  color: white !important;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white !important;
  border: 1px solid var(--border-secondary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary);
  color: white !important;
}

.btn-ghost {
  background: transparent;
  color: white !important;
  border: 1px solid var(--border-secondary);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
  color: white !important;
}

.btn-glow {
  box-shadow: var(--glow-primary);
}

.btn-glow:hover {
  box-shadow: var(--shadow-xl), var(--glow-primary);
}

/* Footer */
.site-footer {
  padding: var(--space-12) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-primary);
  position: relative;
}

.footer-bg-effects {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-primary);
  opacity: 0.3;
}

.footer-content {
  text-align: center;
  color: var(--text-secondary);
}

.footer-disclaimer {
  margin-top: var(--space-2);
  color: var(--text-muted);
  font-size: var(--font-size-sm);
}

/* Blog-specific styles */

/* Blog Post Layout */
.page-section {
  padding: 8rem 0 6rem;
  background: var(--bg-primary);
  min-height: 100vh;
}

.blog-post {
  position: relative;
}

.blog-post::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-primary);
  opacity: 0.3;
}

/* Blog Header */
.blog-title {
  font-size: var(--font-size-5xl);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-8);
  text-align: center;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-intro {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-16);
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Blog Cards */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  margin-bottom: var(--space-8);
  position: relative;
  transition: all var(--transition-smooth);
  overflow: hidden;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  z-index: -1;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-xl), var(--glow-primary);
}

.blog-card:hover::before {
  opacity: 0.03;
}

/* Blog Card Headers */
.blog-card h2 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.blog-card h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  margin-top: var(--space-6);
}

/* Blog Card Content */
.blog-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.blog-card p strong {
  color: var(--primary);
  font-weight: 600;
}

/* Blog Lists */
.blog-card ul {
  list-style: none;
  margin: var(--space-6) 0;
  padding: 0;
}

.blog-card ul li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-3);
  color: var(--text-secondary);
  line-height: 1.6;
}

.blog-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary);
}

.blog-card ul li strong {
  color: var(--primary);
  font-weight: 600;
}

/* Blog Links */
.blog-card a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-base);
  border-bottom: 1px solid transparent;
}

.blog-card a:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
}

/* Special Cards */
.featured-blog-card {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 212, 255, 0.05) 100%);
}

.tips-card {
  border-color: var(--secondary);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(124, 58, 237, 0.05) 100%);
}

.tips-card h2 {
  color: var(--secondary);
}

.resources-card {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 107, 53, 0.05) 100%);
}

.resources-card h3 {
  color: var(--accent);
}

.safety-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 107, 53, 0.05) 100%);
  border-color: var(--accent);
}

.safety-card h2 {
  color: var(--accent);
}

.safety-actions {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.safety-actions .btn {
  flex: 1;
  margin-top: 0;
}

/* Disable auto-numbering by default */
.blog-card h2::before {
  display: none;
}

/* Button Enhancements */
.blog-card .btn {
  margin-top: var(--space-4);
  width: 100%;
  justify-content: center;
}

.blog-card .btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: var(--space-4) var(--space-6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  font-size: var(--font-size-sm);
}

.blog-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--glow-primary);
}

/* Site Icons */
.site-icon {
  width: 24px;
  height: 24px;
  margin-right: var(--space-2);
  opacity: 0.8;
}

/* Platform Badges */
.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}

.platform-badge.trusted {
  background: var(--gradient-primary);
}

.platform-badge.innovative {
  background: var(--gradient-secondary);
}

.platform-badge.beginner {
  background: var(--gradient-accent);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--space-4);
    border-top: 1px solid var(--border-primary);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .page-section {
    padding: 6rem 0 4rem;
  }
  
  /* Improved Blog Typography */
  .blog-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  
  .blog-intro {
    font-size: 1.125rem;
    padding: 0 1rem;
    margin-bottom: 2rem;
  }
  
  /* Better Blog Cards */
  .blog-card {
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
    animation: none; /* Disable animation on mobile */
  }
  
  .blog-card h2 {
    font-size: var(--font-size-xl);
    flex-direction: column;
    text-align: center;
    gap: var(--space-2);
  }

  /* Better paragraphs and lists */
  .blog-card p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .safety-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .blog-title {
    font-size: var(--font-size-3xl);
  }
  
  .blog-card {
    padding: var(--space-4);
  }
  
  .blog-card h2 {
    font-size: var(--font-size-lg);
  }
}

/* Loading Animation */
@keyframes cardSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-card {
  animation: cardSlideIn 0.6s ease-out forwards;
}

.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }
.blog-card:nth-child(4) { animation-delay: 0.4s; }
.blog-card:nth-child(5) { animation-delay: 0.5s; }
.blog-card:nth-child(6) { animation-delay: 0.6s; }
.blog-card:nth-child(7) { animation-delay: 0.7s; }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .blog-card {
    opacity: 1;
    animation: none;
  }
  
  .shape {
    animation: none;
  }
}

/* Custom Gaming Icons */
.icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  vertical-align: middle;
}

.icon-weapon {
  background: linear-gradient(135deg, #00d4ff, #7c3aed);
  clip-path: polygon(15% 25%, 85% 25%, 95% 35%, 85% 75%, 15% 75%, 5% 35%);
  box-shadow: 0 0 8px rgba(0, 212, 255, 0.3);
}

.icon-sound {
  background: radial-gradient(circle, #00d4ff 30%, transparent 70%);
  border-radius: 50%;
  position: relative;
}

.icon-sound::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border: 2px solid #00d4ff;
  border-radius: 50%;
  opacity: 0.6;
}

.icon-home {
  background: linear-gradient(135deg, #ff6b35, #7c3aed);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  box-shadow: 0 0 8px rgba(255, 107, 53, 0.3);
}

.icon-tool {
  background: linear-gradient(45deg, #7c3aed, #00d4ff);
  clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 80% 100%, 20% 100%, 0% 20%);
  transform: rotate(45deg);
}

.icon-cloud {
  background: linear-gradient(135deg, #00d4ff, rgba(255,255,255,0.3));
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: relative;
}

.icon-cloud::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 4px;
  width: 16px;
  height: 12px;
  background: inherit;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.icon-aircraft {
  background: linear-gradient(135deg, #ff6b35, #00d4ff);
  clip-path: polygon(0% 50%, 25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%);
}

.icon-gear {
  background: #7c3aed;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Update Badges */
.update-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: linear-gradient(135deg, #00d4ff, #7c3aed);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

/* Rating System */
.rating-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.rating-item {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.rating-item:hover {
  transform: translateY(-2px);
  background: rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.5);
}

.rating-score {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.rating-label {
  color: #a1a1aa;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 4px;
}

/* Pros/Cons Lists */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 24px 0;
}

.pros-list, .cons-list {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #27272a;
}

.pros-list {
  border-left: 4px solid #10b981;
}

.cons-list {
  border-left: 4px solid #ef4444;
}

.pros-list h3 {
  color: #10b981;
  margin-bottom: 16px;
  font-size: var(--font-size-xl);
  font-weight: 600;
}

.cons-list h3 {
  color: #ef4444;
  margin-bottom: 16px;
  font-size: var(--font-size-xl);
  font-weight: 600;
}

.pros-list ul, .cons-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros-list li, .cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px; /* This creates proper spacing between icon and text */
  padding: 0;
  margin-bottom: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: var(--font-size-base);
}

.pros-list li::before {
  content: '✓';
  color: #10b981;
  font-weight: bold;
  font-size: 16px;
  flex-shrink: 0; /* Prevents the icon from shrinking */
  margin-top: 2px; /* Slight vertical alignment adjustment */
}

.cons-list li::before {
  content: '✗';
  color: #ef4444;
  font-weight: bold;
  font-size: 16px;
  flex-shrink: 0; /* Prevents the icon from shrinking */
  margin-top: 2px; /* Slight vertical alignment adjustment */
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .pros-cons {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .pros-list, .cons-list {
    padding: 16px;
  }
  
  .pros-list li, .cons-list li {
    gap: 10px;
    margin-bottom: 10px;
    font-size: var(--font-size-sm);
  }
}

/* Table of Contents */
.toc {
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin: 24px 0;
}

.toc h3 {
  color: #7c3aed;
  margin-bottom: 16px;
}

.toc ul {
  list-style: none;
  padding: 0;
}

.toc li {
  margin-bottom: 8px;
}

.toc a {
  color: #a1a1aa;
  text-decoration: none;
  transition: color 0.2s;
}

.toc a:hover {
  color: #7c3aed;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #27272a;
}

.comparison-table th {
  background: linear-gradient(135deg, #00d4ff, #7c3aed);
  color: white;
  padding: 16px 12px;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
}

.comparison-table td {
  padding: 16px 12px;
  border-bottom: 1px solid #27272a;
  color: #a1a1aa;
  font-size: 0.9rem;
  vertical-align: top;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.comparison-table tr:hover {
  background: rgba(0, 212, 255, 0.05);
}

/* Fix table icons spacing */
.comparison-table .icon {
  margin-right: 6px;
  vertical-align: middle;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .pros-cons {
    grid-template-columns: 1fr;
  }
  
  .rating-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .comparison-table {
    font-size: 0.8rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 12px 8px;
  }
  
  .icon {
    width: 20px;
    height: 20px;
    margin-right: 6px;
  }
}

/* Add this to the very END of your blogstyle.css file to override style.css */

/* Pros/Cons Lists - Final Override Fix */
.blog-card .pros-cons {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 24px !important;
  margin: 24px 0 !important;
}

.blog-card .pros-list, 
.blog-card .cons-list {
  background: rgba(255, 255, 255, 0.02) !important;
  border-radius: 12px !important;
  padding: 20px !important;
  border: 1px solid #27272a !important;
}

.blog-card .pros-list {
  border-left: 4px solid #10b981 !important;
}

.blog-card .cons-list {
  border-left: 4px solid #ef4444 !important;
}

.blog-card .pros-list h3 {
  color: #10b981 !important;
  margin-bottom: 16px !important;
  font-size: var(--font-size-xl) !important;
  font-weight: 600 !important;
}

.blog-card .cons-list h3 {
  color: #ef4444 !important;
  margin-bottom: 16px !important;
  font-size: var(--font-size-xl) !important;
  font-weight: 600 !important;
}

/* Critical: Override the conflicting ul/li styles from style.css */
.blog-card .pros-list ul, 
.blog-card .cons-list ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.blog-card .pros-list li, 
.blog-card .cons-list li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  padding: 0 !important;
  padding-left: 0 !important;
  margin-bottom: 12px !important;
  color: var(--text-secondary) !important;
  line-height: 1.5 !important;
  font-size: var(--font-size-base) !important;
  position: relative !important;
}

/* Override ALL existing ::before styles for pros/cons */
.blog-card .pros-list li::before {
  content: '✓' !important;
  color: #10b981 !important;
  font-weight: bold !important;
  font-size: 16px !important;
  flex-shrink: 0 !important;
  margin-top: 2px !important;
  margin-right: 0 !important;
  position: static !important;
  left: auto !important;
  top: auto !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.blog-card .cons-list li::before {
  content: '✗' !important;
  color: #ef4444 !important;
  font-weight: bold !important;
  font-size: 16px !important;
  flex-shrink: 0 !important;
  margin-top: 2px !important;
  margin-right: 0 !important;
  position: static !important;
  left: auto !important;
  top: auto !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .blog-card .pros-cons {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  
  .blog-card .pros-list, 
  .blog-card .cons-list {
    padding: 16px !important;
  }
  
  .blog-card .pros-list li, 
  .blog-card .cons-list li {
    gap: 10px !important;
    margin-bottom: 10px !important;
    font-size: var(--font-size-sm) !important;
  }
}