* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --green: #1e7e34;
            --darkgreen: #145a24;
            --navy: #0f1f3d;
            --gold: #f7b32b;
            --light: #f7f9fa;
            --grey: #eef1f4;
            --dark: #212529;
            --white: #ffffff;
            --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            --radius: 16px;
        }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: var(--green);
            text-decoration: none;
            transition: all .2s ease;
        }
        a:hover {
            color: var(--gold);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .top-strip {
            background: linear-gradient(135deg, #0a3d1f, #1e7e34);
            color: #fff;
            font-size: .85rem;
            padding: 8px 0;
            text-align: center;
        }
        .top-strip i {
            margin-right: 6px;
        }
        header.site-header {
            background: var(--white);
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
        }
        .header-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            min-height: 74px;
            flex-wrap: wrap;
            padding: 8px 0;
        }
        .my-logo {
            font-weight: 800;
            font-size: 1.55rem;
            letter-spacing: -0.5px;
            color: var(--navy);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            line-height: 1.2;
        }
        .my-logo span {
            color: var(--green);
            font-size: 1.7rem;
        }
        .my-logo:hover {
            color: var(--green);
        }
        .nav-area {
            display: flex;
            align-items: center;
            gap: 30px;
        }
        .nav-toggle {
            display: none;
        }
        .nav-menu {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            gap: 8px;
            list-style: none;
        }
        .nav-links a {
            font-weight: 600;
            font-size: .92rem;
            color: var(--dark);
            padding: 10px 18px;
            border-radius: 40px;
            display: inline-block;
        }
        .nav-links a:hover {
            background: var(--grey);
            color: var(--green);
        }
        .nav-links a.active {
            background: var(--navy);
            color: white;
        }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: var(--navy);
            padding: 8px;
        }
        .header-search {
            min-width: 200px;
        }
        .header-search form {
            display: flex;
            background: var(--grey);
            border-radius: 40px;
            overflow: hidden;
            border: 1px solid transparent;
        }
        .header-search form:focus-within {
            border-color: var(--green);
            background: #fff;
        }
        .header-search input {
            border: 0;
            background: transparent;
            flex: 1;
            padding: 8px 15px;
            font-size: .87rem;
            outline: none;
        }
        .header-search button {
            border: 0;
            background: var(--navy);
            color: white;
            padding: 0 15px;
            cursor: pointer;
            transition: .2s;
        }
        .header-search button:hover {
            background: var(--green);
        }
        .breadcrumb-wrap {
            background: var(--grey);
        }
        .breadcrumb {
            padding: 8px 0;
            font-size: .85rem;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "\2192";
            color: #adb5bd;
            margin-right: 8px;
        }
        .breadcrumb a {
            color: #495057;
        }
        .breadcrumb a:hover {
            color: var(--green);
        }
        .breadcrumb li:last-child {
            color: var(--green);
            font-weight: 600;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: var(--navy);
            color: white;
            border-radius: 60px;
            border: 0;
            font-weight: 600;
            letter-spacing: .5px;
            cursor: pointer;
            transition: .3s;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
            background: var(--green);
        }
        .btn-gold {
            background: var(--gold);
        }
        .layout-main {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 40px;
            margin: 40px 0;
        }
        .article-body {
            background: var(--white);
            border-radius: var(--radius);
            padding: 38px;
            box-shadow: var(--shadow);
        }
        .article-body h1 {
            font-size: 2.3rem;
            line-height: 1.3;
            margin-bottom: 16px;
            color: var(--navy);
        }
        .article-body h2 {
            font-size: 1.8rem;
            margin: 40px 0 18px;
            color: var(--navy);
            line-height: 1.4;
            padding-bottom: 8px;
            border-bottom: 3px solid var(--gold);
        }
        .article-body h3 {
            font-size: 1.3rem;
            margin: 30px 0 14px;
            color: var(--green);
            font-weight: 700;
        }
        .article-body h4 {
            font-size: 1.1rem;
            font-weight: 650;
            color: var(--dark);
            margin: 22px 0 8px;
        }
        .article-body p {
            margin-bottom: 16px;
            font-size: 1rem;
        }
        .article-body ul,
        .article-body ol {
            margin: 16px 0 24px 22px;
        }
        .article-body li {
            margin-bottom: 8px;
        }
        .highlight-box {
            background: linear-gradient(135deg, #e8f4ec, #d1e9d8);
            border-left: 6px solid var(--green);
            padding: 20px 24px;
            border-radius: 12px;
            margin: 28px 0;
            font-weight: 500;
        }
        .insight-box {
            background: #fdf6e3;
            border-left: 6px solid var(--gold);
            border-radius: 12px;
            padding: 20px;
            margin: 24px 0;
        }
        .meta-info {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            color: #6c757d;
            font-size: .87rem;
            margin-bottom: 20px;
        }
        .meta-info i {
            margin-right: 4px;
        }
        .author-card {
            display: flex;
            gap: 18px;
            background: var(--grey);
            border-radius: 16px;
            padding: 20px;
            margin: 35px 0;
            align-items: center;
        }
        .avatar-icon {
            width: 62px;
            height: 62px;
            background: var(--navy);
            color: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.7rem;
            flex-shrink: 0;
        }
        .sidebar-area {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .side-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 26px;
            box-shadow: var(--shadow);
        }
        .side-card h3 {
            font-size: 1.25rem;
            margin-bottom: 20px;
            color: var(--navy);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .quick-links {
            list-style: none;
        }
        .quick-links li {
            border-bottom: 1px solid #eee;
            padding: 10px 0;
        }
        .quick-links li:last-child {
            border-bottom: 0;
        }
        .quick-links i {
            margin-right: 6px;
            color: var(--green);
            font-size: .8rem;
        }
        .featured-img {
            border-radius: 18px;
            overflow: hidden;
            margin: 32px 0;
        }
        .featured-img img {
            width: 100%;
            object-fit: cover;
        }
        .featured-caption {
            font-size: .8rem;
            color: #6c757d;
            padding: 8px 10px;
            background: #f8f9fa;
            text-align: center;
            border-radius: 0 0 18px 18px;
        }
        .score-area {
            background: var(--navy);
            color: white;
            border-radius: 16px;
            padding: 22px 28px;
            margin: 30px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
        }
        .stars-select label {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
        }
        .stars-select {
            display: flex;
            gap: 5px;
            direction: rtl;
        }
        .stars-select input {
            display: none;
        }
        .stars-select input:checked~label,
        .stars-select label:hover,
        .stars-select label:hover~label {
            color: var(--gold);
        }
        .rating-form button {
            background: var(--gold);
            color: var(--navy);
            border: 0;
            padding: 10px 25px;
            border-radius: 40px;
            font-weight: 700;
            cursor: pointer;
        }
        .rating-form button:hover {
            background: white;
        }
        .comments-area {
            margin-top: 40px;
            border-top: 2px solid var(--grey);
            padding-top: 30px;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            border: 1px solid #ced4da;
            border-radius: 10px;
            padding: 12px 16px;
            margin-bottom: 14px;
            font-family: inherit;
            font-size: .95rem;
            transition: .2s;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: var(--green);
            outline: 0;
            box-shadow: 0 0 0 3px rgba(30, 126, 52, .1)
        }
        .comment-form label {
            font-weight: 600;
            margin-bottom: 7px;
            display: block;
        }
        friend-link {
            display: block;
            padding: 8px 0;
            font-size: .95rem;
        }
        friend-link a {
            color: var(--grey);
            transition: .2s;
        }
        friend-link a:hover {
            color: var(--gold);
        }
        .site-footer {
            background: var(--navy);
            color: rgba(255, 255, 255, .9);
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 30px;
        }
        .site-footer h3 {
            color: var(--gold);
            margin-bottom: 14px;
            font-size: 1.1rem;
        }
        .footer-copy {
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, .2);
            padding-top: 20px;
            font-size: .88rem;
            color: rgba(255, 255, 255, .6);
        }
        .footer-copy a {
            color: rgba(255, 255, 255, .6);
        }
        .footer-copy a:hover {
            color: goldenrod;
        }
        @media(max-width:992px) {
            .layout-main {
                grid-template-columns: 1fr;
            }
            .sidebar-area {
                order: 2;
            }
            .header-row {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                background: var(--white);
                padding: 10px 0;
                box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
            }
            .nav-toggle:checked~.nav-menu {
                display: block;
            }
            .nav-links {
                flex-direction: column;
            }
            .nav-links a {
                display: block;
                padding: 10px 20px !important;
            }
            .header-search {
                width: 100%;
                margin: 8px 0;
            }
            .article-body {
                padding: 22px;
            }
            .article-body h1 {
                font-size: 1.7rem;
            }
            .article-body h2 {
                font-size: 1.4rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        @media(min-width:993px) {
            .nav-toggle~.nav-menu {
                display: flex !important;
            }
        }
        .toc {
            background: #f1f3f5;
            border-radius: 15px;
            padding: 18px 26px;
            display: inline-block;
            margin: 20px 0;
        }
        .toc ol {
            margin: 8px 0 0 18px;
        }
        .table-wrap {
            overflow-x: auto;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: .92rem;
            margin: 25px 0;
            border-radius: 12px;
            overflow: hidden;
        }
        table th {
            background: var(--navy);
            color: #fff;
            padding: 14px 12px;
            text-align: left;
            font-weight: 600;
        }
        table td {
            border-bottom: 1px solid #eee;
            padding: 12px;
            vertical-align: top;
        }
        table tr:hover {
            background-color: #fafaf3;
        }
        .btn i {
            margin-right: 8px;
        }
        .fancy-border {
            border-left-color: var(--gold);
        }
