        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        :root {
            --article-accent: #e74c3c;
            --article-accent-light: rgba(231, 76, 60, 0.1);
            --article-accent-medium: rgba(231, 76, 60, 0.2);
            --article-accent-shadow: rgba(231, 76, 60, 0.2);
        }
        
        :root {
            --primary: #667eea;
            --secondary: #764ba2;
            --accent: #4ecdc4;
            --dark: #1a1a2e;
            --light: #f8f9fa;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
            line-height: 1.8;
            color: var(--dark);
            background: #fff;
        }
        
         
    .technical-box {
      background: #1f2937;
      color: #d1d5db;
      padding: 2rem;
      border-radius: 12px;
      margin: 2.5rem 0;
      font-family: 'Courier New', monospace;
      font-size: 0.95rem;
      line-height: 1.6;
    }
    
    .technical-box h4 {
      color: #dc2626;
      margin-bottom: 1rem;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }
        
       
        
        nav {
            background: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        nav .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            color: var(--dark);
            text-decoration: none;
            font-weight: 700;
            font-size: 1.5em;
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 50px;
            width: auto;
        }
        
        .back-link {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            transition: opacity 0.3s;
        }
        
        .back-link:hover { opacity: 0.7; }
        
        iframe  {
            min-height: flex;
            min-width: 500px;
            text-align: center;
        }
         
       
       .inline-image img {
    height: 600px;
    width: auto;
    display: block; /* prevents stray spacing */
    padding: 30px;
}

       
       
       .header-design {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.article-header {
  position: relative;
  height: 500px;
  background: none; /* Remove the fixed red gradient */
  overflow: hidden;
}

.header-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0; /* add this line so it covers the full image */

  padding: 3rem 2rem;
  color: white;
  z-index: 2;
}





.pullquote {
    font-size: 1.5em;
    font-style: italic;
    text-align: center;
    margin: 20px 0;
    padding: 10px;
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    border-left: 4px solid rgba(255,255,255,0.5);
    color: white;
    border-radius: 15px;
}












       
       
       
       
       .article-card img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transform: translateZ(0);
  backface-visibility: hidden;
}

       
       
       
      
        .article-category {
            display: inline-block;
            background: #e74c3c;
            color: white;
            padding: 0.5rem 1.2rem;
            border-radius: 20px;
            font-size: 0.85em;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .article-title {
            font-size: 3em;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .article-meta {
            font-size: 1em;
            opacity: 0.9;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .article-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 3rem 2rem;
        }
        
        .article-intro {
            font-size: 1.3em;
            color: #555;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 3px solid #e74c3c;
            font-weight: 400;
            line-height: 1.6;
        }
        
        .article-content h2 {
            font-size: 2em;
            color: var(--dark);
            margin: 2.5rem 0 1rem;
            line-height: 1.3;
        }
        
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1em;
            color: #333;
        }
        
         
      .article-content strong {
    font-weight: 700;
}
        
        

        
        
        
        
        
        .highlight-box {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
            padding: 2rem;
            border-radius: 15px;
            margin: 2.5rem 0;
           
        }
        
        .highlight-box h3 {
            color: white;
            margin-top: 0;
        }
        
        .highlight-box ul {
            margin-left: 1.5rem;
            margin-top: 1rem;
        }
        
        .highlight-box li {
            margin-bottom: 0.8rem;
            font-style: bold;
        }
        
        
        
        
        .highlight-link {
  color: #fff;
  text-decoration: none;
  font-style: italic;
  font-weight: 200;
  transition: color 0.3s ease;
}
        
    
    
 a, a:link, a:visited, a:hover, a:active {
  text-decoration: none;
  font-style: italic;
}
   
        
        
        
        
        
        
        
        
        
        
        
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        
        .stat-card {
            background: var(--dark);
            color: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
        }
     

.stat-number {
    font-size: 3em;
    font-weight: 700;
    /* color: #e74c3c;  <-- REMOVE THIS LINE */
    margin-bottom: 0.5rem;
}
        
        .stat-label {
            font-size: 1em;
            opacity: 0.9;
        }
        
        .takeaways {
            background: #fff5f5;
            border: 2px solid #e74c3c;
            border-radius: 15px;
            padding: 2rem;
            margin: 2.5rem 0;
        }
        
        .takeaways h3 {
            color: var(--dark);
            margin-top: 0;
        }
        
        .takeaways ul {
            margin-left: 1.5rem;
            margin-top: 1rem;
        }
        
        .takeaways li {
            margin-bottom: 1rem;
            color: #333;
        }
        
        .article-footer {
            border-top: 2px solid var(--light);
            margin-top: 4rem;
            padding-top: 2rem;
        }
        
        .author-bio {
            background: var(--light);
            padding: 2rem;
            border-radius: 5px;
            margin-bottom: 2rem;
        }
        
        .author-bio h4 {
            color: black;
            font-weight: 2rem;
            text-align: center;
            font-size: 5rem;
            margin-bottom: 1rem;
        }
        
        .share-section {
            text-align: center;
            padding: 2rem;
            background: var(--dark);
            color: white;
            border-radius: 15px;
            margin-bottom: 2rem;
        }
        
        .share-section h3 {
            margin-bottom: 1.5rem;
        }
        
        .share-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .share-btn {
            padding: 0.8rem 2rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s;
            display: inline-block;
        }
        
        .share-btn:hover {
            transform: translateY(-3px);
        }
        
        .btn-twitter {
            background: #1DA1F2;
            color: white;
        }
        
        .btn-copy {
            background: var(--accent);
            color: white;
        }
        
        .read-more {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #e0e0e0;
        }
        
        .read-more h3 {
            color: #000;
            margin-bottom: 1rem;
        }
        
        .read-more-links {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        
        .read-more-links a {
            color: #000;
            text-decoration: none;
            border-left: 3px solid #000;
            padding-left: 1rem;
            transition: all 0.3s;
        }
        
        .read-more-links a:hover {
            border-left-color: #e74c3c;
            color: #e74c3c;
        }
        
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #e74c3c;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            transition: all 0.3s;
            font-size: 1.5em;
        }
        
        .back-to-top:hover {
            background: #c0392b;
            transform: translateY(-5px);
        }
        
        @media (max-width: 768px) {
            .article-title { font-size: 2em; }
            .article-intro { font-size: 1.1em; }
            .article-content h2 { font-size: 1.5em; }
            .article-header { height: 400px; }
            .stats-grid { grid-template-columns: 1fr; }
        }
        
        @keyframes fadeOut {
  0%, 80% { opacity: 1; }
  100% { opacity: 0; }
}

#smart-share-btn {
  transform: translateY(-20px) !important;
}













.related-audio {
  background: radial-gradient(circle at top left, rgba(0,255,255,0.05), transparent 80%);
  border-top: 1px solid rgba(0,255,255,0.15);
  border-bottom: 1px solid rgba(0,255,255,0.1);
  margin-top: 3rem;
  padding: 2rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,255,255,0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.related-audio:hover {
  background: radial-gradient(circle at top left, rgba(0,255,255,0.1), transparent 90%);
  box-shadow: 0 0 25px rgba(0,255,255,0.15);
}

.related-audio h3 {
  color: #0ff;
  font-weight: 600;
  margin-bottom: 0.6rem;
  letter-spacing: 0.5px;
}

.related-audio p {
  color: #aaa;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.related-audio audio {
  width: 100%;
  max-width: 500px;
  border-radius: 6px;
  outline: none;
  box-shadow: 0 0 10px rgba(0,255,255,0.15);
  background: #111;
}

.related-audio .source {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: #666;
}

.related-audio .source a {
  color: #0ff;
  text-decoration: none;
  border-bottom: 1px dotted #0ff;
  transition: color 0.2s ease;
}

.related-audio .source a:hover {
  color: #fff;
}

.corroboration-block,
.x-post-card,
.context-box,
.analysis-box {
  border-radius: 8px;
}

.x-post-card {
  display: block;
  overflow: hidden;
}

.x-post-card iframe {
  display: block !important;
  vertical-align: top !important;
}
