/* --- 1. SHARED VARIABLES & RESET --- */
        :root {
            --primary: #4f46e5;
            --primary-dark: #4338ca;
            --secondary: #0ea5e9;
            --accent: #f43f5e;
            
            --bg-body: #f8fafc;
            --bg-card: #ffffff;
            --bg-glass: rgba(255, 255, 255, 0.85);
            
            --text-main: #0f172a;
            --text-muted: #64748b;
            --text-light: #94a3b8;
            
            --border: #e2e8f0;
            --radius-md: 16px;
            
            --footer-bg: #0f172a;
            --footer-text: #cbd5e1;
            
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
        }

        html { scroll-behavior: smooth; }
        * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        
        body {
            background-color: var(--bg-body);
            color: var(--text-main);
            font-family: 'Plus Jakarta Sans', sans-serif;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
            line-height: 1.6;
        }

         /* --- TOP BAR --- */
        .top-announcement-bar {
            background: linear-gradient(90deg, #000000, #000000);
            color: white; padding: 8px; font-size: 0.85rem;
            display: flex; justify-content: center; align-items: center; gap: 15px;
            z-index: 1001; position: relative;
        }
        .top-announcement-btn {
            background: rgba(255,255,255,0.15); color: #fff; padding: 2px 10px;
            border-radius: 4px; text-decoration: none; font-size: 0.75rem; font-weight: 600;
            transition: 0.3s;
        }
        .top-announcement-btn:hover { background: #fff; color: var(--text-main); }

        /* --- NAVBAR --- */
        .navbar {
            background: var(--bg-glass);
            backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.6);
            position: sticky; top: 0; z-index: 1000;
            padding: 1rem 0;
        }
        .nav-container {
            max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
            display: flex; justify-content: space-between; align-items: center;
        }
        .logo { 
            font-size: 1.5rem; font-weight: 800; color: var(--text-main); 
            text-decoration: none; display: flex; align-items: center; gap: 10px; letter-spacing: -0.5px;
        }
        .logo i { color: white; background: var(--primary); padding: 8px; border-radius: 8px; font-size: 1rem; }

        .nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
        .nav-links a {
            text-decoration: none; color: var(--text-muted); font-weight: 600; font-size: 0.95rem;
            position: relative; transition: color 0.3s ease;
        }
        .nav-links a:hover, .nav-links a.active { color: var(--primary); }
        .hamburger { display: none; cursor: pointer; font-size: 1.3rem; color: var(--text-main); }

        /* --- ARTICLE STYLES --- */
        .article-container {
            max-width: 800px; /* Narrower width for better reading experience */
            margin: 0 auto;
            padding: 3rem 1.5rem;
        }

        /* Breadcrumbs */
        .breadcrumbs { margin-bottom: 1.5rem; color: var(--text-muted); font-size: 0.9rem; }
        .breadcrumbs a { color: var(--primary); text-decoration: none; font-weight: 600; }
        .breadcrumbs span { margin: 0 8px; color: var(--text-light); }

        /* Header */
        .post-header { text-align: center; margin-bottom: 2.5rem; }
        .post-category { 
            display: inline-block; background: #eff6ff; color: var(--primary); 
            padding: 6px 14px; border-radius: 50px; font-weight: 700; font-size: 0.8rem; 
            text-transform: uppercase; margin-bottom: 1rem; 
        }
        .post-title { font-size: 2.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 1rem; letter-spacing: -1px; }
        .post-meta { color: var(--text-muted); font-size: 0.95rem; display: flex; align-items: center; justify-content: center; gap: 15px; }
        .post-meta i { margin-right: 5px; }

        /* Featured Image (16:9) */
        .featured-image-wrapper {
            width: 100%;
            aspect-ratio: 16 / 9;
            border-radius: var(--radius-md);
            overflow: hidden;
            margin-bottom: 3rem;
            box-shadow: var(--shadow-lg);
            position: relative;
        }
        .featured-image {
            width: 100%; height: 100%; object-fit: cover;
        }

        /* Content Typography */
        .post-content { font-size: 1.1rem; line-height: 1.8; color: #334155; }
        .post-content p { margin-bottom: 1.5rem; }
        .post-content h2 { font-size: 1.8rem; font-weight: 800; margin: 2.5rem 0 1rem; color: var(--text-main); }
        .post-content h3 { font-size: 1.4rem; font-weight: 700; margin: 2rem 0 0.8rem; }
        .post-content ul, .post-content ol { margin-bottom: 1.5rem; padding-left: 1.5rem; }
        .post-content li { margin-bottom: 0.5rem; }
        
        /* Code Block Styling */
        .code-block {
            background: #1e293b; color: #f1f5f9; padding: 1.5rem; border-radius: 12px;
            font-family: 'JetBrains Mono', monospace; font-size: 0.9rem; overflow-x: auto;
            margin: 1.5rem 0; border: 1px solid #334155; position: relative;
        }
        .copy-btn {
            position: absolute; top: 10px; right: 10px; background: rgba(255,255,255,0.1); color: white;
            border: none; padding: 5px 10px; border-radius: 6px; cursor: pointer; font-size: 0.8rem; transition: 0.2s;
        }
        .copy-btn:hover { background: rgba(255,255,255,0.2); }

        /* --- GET NOW BUTTON (NEW) --- */
        .get-now-container {
            text-align: center;
            margin: 3rem 0;
            padding: 2rem;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-radius: var(--radius-md);
            border-left: 4px solid var(--primary);
        }
        .get-now-title {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--text-main);
        }
        .get-now-desc {
            font-size: 1rem;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .get-now-btn {
            display: inline-block;
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
            border: none;
            cursor: pointer;
        }
        .get-now-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
        }
        .get-now-btn i {
            margin-right: 8px;
        }

        /* Share Section */
        .share-section {
            border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
            padding: 2rem 0; margin: 3rem 0; display: flex; justify-content: space-between; align-items: center;
        }
        .share-label { font-weight: 700; font-size: 1.1rem; }
        .share-icons { display: flex; gap: 10px; flex-wrap: wrap; }
        .share-icon {
            width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
            color: white; text-decoration: none; font-size: 1.1rem; transition: 0.3s;
        }
        .share-icon:hover { transform: translateY(-3px); }
        .si-tw { background: #1DA1F2; } 
        .si-fb { background: #4267B2; } 
        .si-li { background: #0077b5; } 
        .si-wa { background: #25D366; }
        .si-telegram { background: #0088cc; }
        .si-reddit { background: #FF5700; }
        .si-pinterest { background: #E60023; }
        .si-copy { background: var(--text-muted); }

        /* --- RELATED POSTS --- */
        .related-section {
            background: #fff; padding: 4rem 1.5rem; border-top: 1px solid var(--border);
        }
        .related-container { max-width: 1280px; margin: 0 auto; }
        .section-header { margin-bottom: 2rem; font-size: 1.8rem; font-weight: 800; }
        
        .related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
        
        .related-card {
            background: var(--bg-body); border-radius: var(--radius-md); border: 1px solid var(--border);
            overflow: hidden; display: flex; flex-direction: column; transition: 0.3s;
        }
        .related-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
        .related-img-box { width: 100%; aspect-ratio: 16/9; overflow: hidden; }
        .related-img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .related-card:hover .related-img { transform: scale(1.05); }
        
        .related-body { padding: 1.5rem; }
        .related-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.4; }
        .related-title a { text-decoration: none; color: var(--text-main); }
        .related-date { font-size: 0.85rem; color: var(--text-light); }

        /* --- FOOTER --- */
        footer { background-color: var(--footer-bg); color: var(--footer-text); padding: 5rem 1.5rem 2rem; margin-top: auto; }
        .footer-container {
            max-width: 1280px; margin: 0 auto;
            display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 4rem;
        }
        .footer-col h4 { color: white; font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; }
        .footer-brand p { font-size: 0.95rem; line-height: 1.7; margin-top: 1rem; max-width: 300px; color: #94a3b8; }
        .footer-logo { font-size: 1.5rem; font-weight: 800; color: white; text-decoration: none; display: flex; align-items: center; gap: 10px; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { text-decoration: none; color: var(--footer-text); transition: 0.3s; font-size: 0.95rem; }
        .footer-links a:hover { color: white; padding-left: 5px; }
        .footer-bottom { border-top: 1px solid #334155; padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; max-width: 1280px; margin: 0 auto; }
        .social-links { display: flex; gap: 15px; }
        .social-links a { width: 36px; height: 36px; background: #1e293b; color: white; display: flex; align-items: center; justify-content: center; border-radius: 50%; text-decoration: none; transition: 0.3s; }
        .social-links a:hover { background: var(--primary); transform: translateY(-3px); }

        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-links {
                display: none; position: fixed; top: 75px; left: 0; right: 0; background: white;
                flex-direction: column; padding: 2rem; border-radius: 0 0 20px 20px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-bottom: 1px solid var(--border);
            }
            .nav-links.active { display: flex; }
            .post-title { font-size: 1.8rem; }
            .get-now-container { padding: 1.5rem; }
            .get-now-title { font-size: 1.3rem; }
            .share-section { flex-direction: column; gap: 15px; align-items: flex-start; }
            .share-icons { justify-content: flex-start; }
            .footer-container { grid-template-columns: 1fr; text-align: center; }
            .footer-brand p { margin: 1rem auto; }
            .footer-logo { justify-content: center; }
            .footer-bottom { flex-direction: column; gap: 1.5rem; }
            .social-links { justify-content: center; }
        }