        :root { --brand: #000; --text: #242424; --muted: #6B6B6B; --border: #F2F2F2; --accent: #0062FF; }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Inter', sans-serif; color: var(--text); background: #fff; overflow-x: hidden; }

        /* Progress & Ads */
        #reading-progress { position: fixed; top: 0; left: 0; height: 4px; background: var(--accent); width: 0; z-index: 9999; }
 
        /* Layout */
        .main-container { max-width: 700px; margin: 40px auto 0; padding: 0 20px; }
        .hero-img { width: 100%; max-height: 450px; object-fit: cover;margin: 20px 0; }
        
        .cat-tag { display: inline-block; background: #F3F4F6; color: var(--text); font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 50px; text-transform: uppercase; margin-bottom: 15px; }
        .article-title { font-size: clamp(32px, 5vw, 46px); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 25px; }
        
        /* Author Block */
        .author-block { display: flex; align-items: center; gap: 15px; margin-bottom: 30px; }
        .author-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
        .follow-btn { color: #fff; background: #1f8942; border: none; padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 600; cursor: pointer; margin-left: 8px; transition: 0.2s; }
        .follow-btn.active { background: #f1f1f1; color: var(--brand); }

        /* Action Bar */
        .action-bar { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 10px; flex-wrap: wrap; gap: 10px; }
        .act-group { display: flex; align-items: center; gap: 15px; }
        .act-btn { background: none; border: none; color: var(--muted); font-size: 16px; cursor: pointer; display: flex; align-items: center; gap: 6px; transition: 0.2s; }
        .act-btn:hover, .act-btn.active { color: var(--brand); }
        .share-icon { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #f5f5f5; color: var(--brand); text-decoration: none; font-size: 14px; transition: 0.2s; }
        .share-icon:hover { background: #e5e5e5; }

        /* Article Body */
        .article-body { font-family: 'Lora', serif; font-size: 20px; line-height: 1.8; color: #242424; }
        .article-body p { margin-bottom: 30px; }
        .article-body img { width: 100% !important; height: auto !important; max-height: 500px !important; object-fit: cover !important;margin: 30px 0; display: block; }
        .article-body h2, .article-body h3 { font-family: 'Inter', sans-serif; font-weight: 700; margin: 40px 0 20px; }
        .article-body blockquote {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 40px;
    margin-inline-end: 40px;
    unicode-bidi: isolate;
    font-style: italic;
    border-left: 4px solid #0062ff;
    padding-left: 20px;
    margin: 40px 0;
    color: #444;
    background: #0062ff1c;
}

 /* Related Articles - Universal Row Layout (Same on Mobile & Desktop) */
.related-wrap { background: #FAFAFA; padding: 40px 15px; margin-top: 60px; border-top: 1px solid var(--border); }
.related-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.related-header { font-size: 22px; font-weight: 800; margin-bottom: 15px; color: var(--brand); }

.rel-row-card { display: flex; gap: 15px; align-items: center; text-decoration: none; color: inherit; transition: background 0.2s, transform 0.2s; padding: 10px; border-radius: 12px; flex-direction: row-reverse;
 }
.rel-row-card:hover { background: #ffffff; box-shadow: 0 4px 12px rgba(0,0,0,0.05); transform: translateY(-2px); }

/* The 'clamp' width safely scales the image down on phones but caps it at 150px on desktop */
.rel-row-img { width: clamp(100px, 30vw, 150px); aspect-ratio: 16/9; object-fit: cover; flex-shrink: 0; background: #eee; }

.rel-row-content { display: flex; flex-direction: column; justify-content: center; flex: 1; }

/* The title text scales slightly down on mobile so it doesn't get squished */
.rel-row-title { font-weight: 700; font-size: clamp(14px, 4vw, 18px); line-height: 1.4; color: var(--text); margin: 0; }

/* Mobile Responsiveness: Image on the RIGHT, no rounded corners */
@media (max-width: 600px) {
    .rel-row-card { 
        flex-direction: row-reverse; /* Flips the image to the right side */
        align-items: center; 
        gap: 15px; 
        padding: 15px 10px; 
    }
    .rel-row-img { 
        width: 100px; /* Scaled down slightly so text fits nicely on small screens */
        height: 75px; 
        border-radius: 0 !important; /* Removes the rounded corners specifically on mobile */
    }
    .rel-row-content {
        flex: 1; /* Forces the text to take up the remaining left-side space */
    }
    .rel-row-title {
        font-size: 15px; /* Slightly smaller title for mobile screens */
    }
}

        /* Comments */
        .btn-post { background: var(--brand); color: #fff; padding: 10px 25px; border-radius: 50px; border: none; font-weight: 600; cursor: pointer; }
        .c-card { padding: 20px 0; border-bottom: 1px solid var(--border); }
        
        /* Restricted Access */
        .restricted-box { background: #FFF5F5; border: 1px solid #FED7D7; padding: 30px; text-align: center; border-radius: 12px; margin-top: 40px; color: #C53030; }
        .btn-modern-soft{display:inline-flex;align-items:center;gap:10px;padding:10px 10px;background:#fff;color:#333;font-family:'Inter',sans-serif;font-size:15px;font-weight:600;border:1px solid #e2e8f0;border-radius:50px;cursor:pointer;box-shadow:0 4px 6px -1px rgba(0,0,0,.05),0 2px 4px -1px rgba(0,0,0,.03);transition:all .3s cubic-bezier(.4,0,.2,1);}
        .btn-modern-soft .btn-icon{color:#0062FF;display:flex;align-items:center;justify-content:center;}
         .btn-modern-soft:active{transform:translateY(0);box-shadow:0 2px 4px -1px rgba(0,0,0,.05);}
