/* base styles */
:root {
            --bg-body: #e8e6e3;
            --bg-white: #ffffff;
            --text-dark: #222222;
            --text-body: #333333;
            --text-secondary: #555555;
            --text-muted: #777777;
            --header-bg: #1a1a2e;
            --nav-bg: #2c2c54;
            --accent-red: #cc0000;
            --accent-red-dark: #aa0000;
            --cta-orange: #e67e22;
            --cta-orange-hover: #d35400;
            --highlight-bg: #fffff0;
            --highlight-border: #cccc00;
            --update-bg: #fffff5;
            --update-border: #ccaa00;
            --border-color: #cccccc;
            --border-light: #dddddd;
            --font-serif: "Merriweather", Georgia, "Times New Roman", serif;
            --font-sans: "Source Sans 3", Arial, Helvetica, sans-serif;
            --max-w: 1100px;
        }

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: var(--font-sans);
            background: var(--bg-body);
            color: var(--text-dark);
            line-height: 1.6;
            font-size: 16px;
            overflow-x: hidden;
        }

        img { max-width: 100%; height: auto; display: block; }
        a { text-decoration: none; color: inherit; }

        /* ===== ADVERTORIAL BAR ===== */
        .advertorial-bar {
            background: #333333;
            text-align: center;
            padding: 6px 15px;
            font-size: 11px;
            color: #aaaaaa;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            border-bottom: 1px solid #444;
        }

        /* ===== HEADER / MASTHEAD ===== */
        .masthead {
            background: var(--header-bg);
            padding: 14px 20px;
            text-align: center;
            border-bottom: 3px solid var(--accent-red);
        }
        .masthead h1 {
            font-family: var(--font-serif);
            font-size: 28px;
            font-weight: 900;
            color: #ffffff;
            margin: 0;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* ===== BREADCRUMB ===== */
        .breadcrumb {
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 10px 20px;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            background: #f0eeeb;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb span { color: #999; }

        /* ===== MAIN LAYOUT ===== */
        .page-wrapper {
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 15px 15px 40px;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 15px;
        }
        .main-content {
            min-width: 0;
            background: var(--bg-white);
            border: 1px solid var(--border-color);
            padding: 25px 25px;
        }

        /* ===== ARTICLE HEADLINE ===== */
        .article-headline {
            margin-bottom: 15px;
        }
        .headline-badge {
            display: inline-block;
            background: var(--accent-red);
            color: #fff;
            font-size: 10px;
            font-weight: 800;
            padding: 3px 8px;
            border-radius: 0;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .article-headline h2 {
            font-family: var(--font-serif);
            font-size: 26px;
            font-weight: 900;
            line-height: 1.3;
            color: var(--text-dark);
        }

        /* ===== META ROW ===== */
        .meta-row {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 6px;
            flex-wrap: wrap;
            padding-bottom: 8px;
            border-bottom: 1px dotted var(--border-light);
        }
        .meta-views { display: flex; align-items: center; gap: 4px; }

        /* ===== AUTHOR ROW ===== */
        .author-row {
            border-bottom: 1px solid var(--border-light);
            padding: 8px 0;
            margin-bottom: 20px;
            font-size: 13px;
            color: var(--text-muted);
        }
        .author-row strong {
            color: var(--text-dark);
            font-weight: 700;
        }

        /* ===== STORY TEXT ===== */
        .story-text {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-body);
            margin-bottom: 20px;
        }
        .story-text p {
            margin-bottom: 14px;
        }

        /* ===== SECTION TITLES ===== */
        .section-heading {
            font-family: var(--font-serif);
            font-size: 22px;
            font-weight: 900;
            color: var(--text-dark);
            line-height: 1.3;
            margin: 30px 0 15px;
            padding: 8px 12px;
            background: #f5f5f5;
            border-left: 4px solid var(--accent-red);
            border-bottom: 1px solid var(--border-light);
        }

        /* ===== ARTICLE IMAGES ===== */
        .article-img {
            width: 100%;
            border-radius: 0;
            margin: 15px 0 20px;
            border: 1px solid var(--border-color);
        }

        /* ===== IMAGE PLACEHOLDER ===== */
        .img-placeholder {
            background: #f9f9f9;
            border: 1px dashed #bbb;
            border-radius: 0;
            padding: 30px 20px;
            text-align: center;
            margin: 15px 0 20px;
        }
        .img-placeholder .ph-icon {
            font-size: 32px;
            margin-bottom: 8px;
            opacity: 0.5;
        }
        .img-placeholder .ph-label {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #999;
            margin-bottom: 4px;
        }
        .img-placeholder .ph-desc {
            font-size: 13px;
            color: #666;
            line-height: 1.5;
            max-width: 450px;
            margin: 0 auto;
        }
        .img-placeholder-sm {
            padding: 20px 15px;
        }
        .img-placeholder-sm .ph-icon { font-size: 24px; }

        /* ===== FEATURE NUMBER LIST ===== */
        .feature-number {
            font-family: var(--font-serif);
            font-size: 20px;
            font-weight: 900;
            color: var(--header-bg);
            margin: 25px 0 10px;
            padding: 6px 0;
            border-bottom: 2px solid var(--accent-red);
            display: inline-block;
        }

        /* ===== HIGHLIGHT / TESTIMONIAL BOX ===== */
        .highlight-box {
            background: var(--highlight-bg);
            border: 1px solid #e0dda0;
            border-left: 4px solid var(--highlight-border);
            padding: 18px 20px;
            margin: 20px 0;
            border-radius: 0;
        }
        .highlight-box .hb-title {
            font-size: 15px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 8px;
        }
        .highlight-box p {
            font-size: 14px;
            line-height: 1.65;
            color: var(--text-body);
            margin-bottom: 8px;
        }
        .highlight-box .hb-author {
            font-size: 12px;
            color: var(--text-muted);
            font-style: italic;
        }
        .highlight-box .verified {
            color: #2e7d32;
            font-weight: 700;
            font-style: normal;
        }

        /* ===== CTA BLOCK ===== */
        .cta-block {
            text-align: center;
            padding: 25px 20px;
            margin: 25px 0;
            background: #f5f5f5;
            border: 1px solid var(--border-color);
        }
        .cta-btn {
            display: inline-block;
            background: var(--cta-orange);
            color: #fff;
            padding: 14px 30px;
            border-radius: 3px;
            font-size: 17px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            border: none;
            text-align: center;
            transition: background 0.15s;
            max-width: 550px;
            width: 100%;
        }
        .cta-btn:hover {
            background: var(--cta-orange-hover);
        }

        .cta-product-img {
            max-width: 320px;
            margin: 20px auto;
            border: 1px solid var(--border-color);
        }

        /* ===== UPDATE / SCARCITY BOX ===== */
        .update-box {
            background: var(--update-bg);
            border: 1px dashed var(--update-border);
            padding: 12px 16px;
            border-radius: 0;
            text-align: center;
            font-size: 13px;
            color: var(--text-dark);
            margin-top: 15px;
            line-height: 1.6;
        }
        .update-box strong { color: var(--accent-red-dark); }

        /* ===== URGENCY BOX ===== */
        .urgency-box {
            border: 2px dashed var(--accent-red);
            background: #fff5f5;
            padding: 12px 18px;
            text-align: center;
            border-radius: 0;
            margin-bottom: 18px;
            font-size: 14px;
            font-weight: 700;
            color: var(--accent-red-dark);
            letter-spacing: 0.5px;
        }

        /* ===== STOCK NOTE ===== */
        .stock-note {
            background: #e8f5e9;
            border: 1px solid #a5d6a7;
            padding: 10px 15px;
            border-radius: 0;
            text-align: center;
            font-size: 13px;
            color: #2e7d32;
            font-weight: 600;
            margin-top: 12px;
        }

        /* ===== COMMENTS SECTION ===== */
        .comments-section {
            margin-top: 30px;
            border-top: 3px solid var(--header-bg);
            padding-top: 20px;
        }
        .comments-header {
            font-family: var(--font-sans);
            font-size: 14px;
            font-weight: 800;
            color: var(--text-dark);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 1px solid var(--border-light);
        }
        .comments-disabled {
            background: #f5f5f5;
            padding: 8px 14px;
            border: 1px solid var(--border-light);
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 18px;
            text-align: center;
        }
        .comment {
            display: flex;
            gap: 12px;
            margin-bottom: 18px;
            padding-bottom: 18px;
            border-bottom: 1px dotted var(--border-light);
        }
        .comment-avatar {
            width: 36px;
            height: 36px;
            border-radius: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 800;
            font-size: 14px;
            flex-shrink: 0;
        }
        .comment-body { flex: 1; min-width: 0; }
        .comment-name {
            font-weight: 700;
            font-size: 13px;
            color: #1a0dab;
        }
        .comment-time {
            font-size: 11px;
            color: #999;
            margin-left: 8px;
        }
        .comment-text {
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-body);
            margin-top: 3px;
        }
        .comment-actions {
            margin-top: 5px;
            font-size: 12px;
            color: #999;
            display: flex;
            gap: 12px;
        }
        .comment-actions span { cursor: pointer; }
        .comment-actions .like-count { color: #1a0dab; font-weight: 600; }
        .comment-reply {
            margin-left: 48px;
            margin-top: 12px;
            border-bottom: none;
            padding-bottom: 0;
        }

        /* ===== SIDEBAR ===== */
        .sidebar {
            position: sticky;
            top: 15px;
            align-self: start;
            background: var(--bg-white);
            border: 1px solid var(--border-color);
            padding: 0;
        }
        .sidebar-header {
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #fff;
            background: var(--header-bg);
            padding: 10px 15px;
            margin-bottom: 0;
            border-bottom: 3px solid var(--accent-red);
        }
        .sidebar-text {
            font-size: 13px;
            line-height: 1.6;
            color: var(--text-secondary);
            margin-bottom: 14px;
            padding: 0 15px;
        }
        .sidebar-text:first-of-type {
            padding-top: 15px;
        }
        .sidebar-img {
            width: calc(100% - 30px);
            margin: 0 15px 14px;
            border: 1px solid var(--border-color);
        }
        .sidebar-features {
            list-style: none;
            padding: 0;
            margin: 0 15px 18px;
        }
        .sidebar-features li {
            padding: 6px 0;
            border-bottom: 1px solid #eee;
            font-size: 12px;
            color: var(--text-body);
            font-weight: 600;
        }
        .sidebar-features li::before {
            content: '\2713';
            color: #2e7d32;
            font-weight: 800;
            margin-right: 6px;
        }
        .sidebar-cta {
            display: block;
            background: var(--cta-orange);
            color: #fff;
            padding: 12px 15px;
            margin: 0 15px 15px;
            border-radius: 3px;
            font-size: 14px;
            font-weight: 800;
            text-align: center;
            text-transform: uppercase;
            transition: background 0.15s;
        }
        .sidebar-cta:hover { background: var(--cta-orange-hover); }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--header-bg);
            border-top: 3px solid var(--accent-red);
            padding: 25px 20px;
            text-align: center;
            font-size: 12px;
            color: #888;
            line-height: 1.7;
        }
        .footer-disclaimer {
            max-width: 800px;
            margin: 0 auto 18px;
            font-size: 11px;
            color: #777;
            line-height: 1.6;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 10px;
            flex-wrap: wrap;
        }
        .footer-links a {
            color: #aaa;
            text-decoration: underline;
            font-size: 12px;
        }
        .footer p {
            color: #666;
        }

        /* ===== STICKY BOTTOM BAR ===== */
        .sticky-bottom {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--header-bg);
            padding: 10px 20px;
            text-align: center;
            z-index: 1000;
            display: none;
            border-top: 3px solid var(--accent-red);
        }
        .sticky-bottom.visible { display: block; }
        .sticky-bottom .cta-btn {
            font-size: 15px;
            padding: 12px 25px;
            max-width: 450px;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 900px) {
            .page-wrapper {
                grid-template-columns: 1fr;
                gap: 0;
            }
            .sidebar {
                position: static;
                margin-top: 15px;
            }
            .masthead h1 { font-size: 22px; }
            .article-headline h2 { font-size: 22px; }
            .section-heading { font-size: 19px; }
            .story-text { font-size: 15px; }
            .cta-btn { font-size: 15px; padding: 12px 20px; }
        }

        @media (max-width: 600px) {
            .page-wrapper { padding: 10px 10px 30px; }
            .main-content { padding: 18px 15px; }
            .article-headline h2 { font-size: 20px; }
            .section-heading { font-size: 18px; padding: 6px 10px; }
            .story-text { font-size: 14px; }
            .meta-row { font-size: 11px; gap: 8px; }
            .cta-btn { font-size: 14px; padding: 12px 16px; }
            .highlight-box { padding: 14px 15px; }
            .comment-reply { margin-left: 24px; }
        }
html body { font-family: var(--font-sans); background: var(--bg-body); color: var(--text-dark); }
/* end base styles */
*{box-sizing:border-box;}body{margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;}#ix0xmi{color:#27ae60;}#ig0u5l{background:#3b5998;}#ifztf3{background:#e74c3c;}#iw4u8f{background:#27ae60;}#itnre4{background:#9b59b6;}#ielxxf{background:#e67e22;}#in8h0t{background:#e74c3c;}#i3oyie{background:#1abc9c;}#ih1jvp{background:#2c3e50;}#i0xo0g{background:#c0392b;}#izagx6{background:#f39c12;}#ipur06{background:#e74c3c;}#ik3bfq{background:#8e44ad;}#iyonwb{background:#16a085;}#ijewlf{color:#FBBF24;font-size:20px;letter-spacing:3px;}#ijkmkk{font-size:13px;color:var(--text-muted);}#ih84s6{margin-top:16px;text-align:center;}#ieojcl{font-family:inherit;color:#0f172a;padding:8px;}
[data-delay-vturb] {
  display: none !important;
}
  