        * { 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;
        }
        
        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; }
        

        
       
       .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 */
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  padding: 3rem 2rem;
  color: white;
  z-index: 2;
}

       
       
       
       
       .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: 800px;
            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 {
            color: #e74c3c;
            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-box strong { color: yellow; }
        
        
        .highlight-link {
  color: #fff;
  text-decoration: none;
  font-style: italic;
  font-weight: 200;
  transition: color 0.3s ease;
}
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 2.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;
            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: 15px;
            margin-bottom: 2rem;
        }
        
        .author-bio h4 {
            color: #e74c3c;
            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;
}
