        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f4f7f2;
            color: #1e2a1e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        a {
            color: #1a5c3a;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #d4a843;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        :root {
            --primary: #1a3c2a;
            --primary-light: #2a5c3e;
            --gold: #d4a843;
            --gold-light: #e8c56b;
            --accent: #c0392b;
            --bg-light: #f4f7f2;
            --bg-card: #ffffff;
            --text-dark: #1e2a1e;
            --text-muted: #4a5a4a;
            --border: #d0dcc8;
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            --radius: 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary) 0%, #0f2a1a 100%);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: var(--gold);
            background: rgba(255, 255, 255, 0.05);
            padding: 0.3rem 1.2rem;
            border-radius: 40px;
            border: 2px solid var(--gold);
            display: inline-block;
            transition: 0.3s;
        }
        .my-logo:hover {
            background: var(--gold);
            color: var(--primary);
            text-decoration: none;
            transform: scale(1.02);
        }
        .my-logo small {
            font-size: 0.55rem;
            font-weight: 400;
            display: block;
            color: #b0c8b0;
            letter-spacing: 1px;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #e0ece0;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: 0.25s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: rgba(212, 168, 67, 0.2);
            color: var(--gold-light);
            text-decoration: none;
        }
        .main-nav a.active {
            background: var(--gold);
            color: var(--primary);
            font-weight: 600;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid var(--gold);
            color: var(--gold);
            font-size: 1.6rem;
            padding: 0.3rem 0.9rem;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: var(--gold);
            color: var(--primary);
        }
        .nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: var(--bg-card);
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--border);
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: var(--text-muted);
            margin-right: 0.6rem;
        }
        .breadcrumb a {
            color: var(--primary-light);
        }
        .breadcrumb .current {
            color: var(--text-muted);
            font-weight: 500;
        }
        .main-content {
            padding: 2rem 0 3rem;
        }
        article {
            background: var(--bg-card);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 2.5rem 2.8rem;
            margin-bottom: 2.5rem;
        }
        @media (max-width: 640px) {
            article {
                padding: 1.5rem 1.2rem;
            }
        }
        h1 {
            font-size: 2.6rem;
            line-height: 1.2;
            color: var(--primary);
            margin-bottom: 0.8rem;
            font-weight: 800;
            letter-spacing: -0.02em;
        }
        h1 .highlight {
            color: var(--gold);
        }
        h2 {
            font-size: 1.8rem;
            color: var(--primary);
            margin: 2.2rem 0 1rem 0;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid var(--gold);
            font-weight: 700;
        }
        h3 {
            font-size: 1.35rem;
            color: var(--primary-light);
            margin: 1.8rem 0 0.8rem 0;
            font-weight: 600;
        }
        h4 {
            font-size: 1.1rem;
            color: var(--text-dark);
            margin: 1.4rem 0 0.5rem 0;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
            color: var(--text-dark);
        }
        .lead {
            font-size: 1.2rem;
            color: var(--text-muted);
            font-weight: 400;
            line-height: 1.6;
            border-left: 4px solid var(--gold);
            padding-left: 1.2rem;
            margin: 1.5rem 0;
        }
        .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem 2rem;
            color: var(--text-muted);
            font-size: 0.9rem;
            margin: 1rem 0 1.8rem 0;
            padding: 0.8rem 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .meta-info i {
            margin-right: 0.4rem;
            color: var(--gold);
        }
        .last-updated {
            font-weight: 600;
            color: var(--primary);
        }
        .featured-image {
            margin: 2rem 0 2.5rem;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
        }
        .featured-image img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.8rem 1rem;
            background: #f0f5ee;
            font-size: 0.85rem;
            color: var(--text-muted);
            font-style: italic;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.8rem 0;
            font-size: 0.95rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .data-table thead {
            background: var(--primary);
            color: #fff;
        }
        .data-table th {
            padding: 0.9rem 1.2rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.8rem 1.2rem;
            border-bottom: 1px solid var(--border);
        }
        .data-table tbody tr:hover {
            background: #f0f8ee;
        }
        .data-table tbody tr:nth-child(even) {
            background: #fafcfa;
        }
        blockquote {
            border-left: 5px solid var(--gold);
            background: #f7faf5;
            padding: 1.2rem 1.8rem;
            margin: 1.8rem 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: var(--text-muted);
            font-size: 1.05rem;
        }
        blockquote cite {
            display: block;
            margin-top: 0.6rem;
            font-size: 0.9rem;
            font-style: normal;
            color: var(--primary);
            font-weight: 500;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1.2rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: var(--bg-light);
            padding: 1.4rem 1rem;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--border);
            transition: 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }
        .stat-card .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            display: block;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .link-list {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1rem;
            margin: 1.5rem 0;
        }
        .link-list li a {
            background: var(--bg-light);
            padding: 0.4rem 1rem;
            border-radius: 30px;
            border: 1px solid var(--border);
            font-size: 0.9rem;
            transition: 0.2s;
            display: inline-block;
        }
        .link-list li a:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            text-decoration: none;
        }
        .search-section {
            background: var(--bg-card);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 2rem 2.5rem;
            margin-bottom: 2rem;
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 0.8rem 1.2rem;
            border: 2px solid var(--border);
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
            background: var(--bg-light);
        }
        .search-form input[type="text"]:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.15);
        }
        .search-form button {
            padding: 0.8rem 2rem;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: var(--gold);
            color: var(--primary);
        }
        .comments-section {
            background: var(--bg-card);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 2rem 2.5rem;
            margin-bottom: 2rem;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--border);
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 110px;
            transition: 0.3s;
            background: var(--bg-light);
        }
        .comment-form textarea:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.1);
            outline: none;
        }
        .comment-form input[type="text"] {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid var(--border);
            border-radius: 12px;
            font-size: 1rem;
            margin-bottom: 0.8rem;
            background: var(--bg-light);
            transition: 0.3s;
        }
        .comment-form input[type="text"]:focus {
            border-color: var(--gold);
            outline: none;
            box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.1);
        }
        .comment-form .form-row {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 180px;
        }
        .comment-form button {
            padding: 0.8rem 2.2rem;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            margin-top: 0.5rem;
        }
        .comment-form button:hover {
            background: var(--gold);
            color: var(--primary);
        }
        .rating-section {
            background: var(--bg-card);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 2rem 2.5rem;
            margin-bottom: 2rem;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.3rem;
            font-size: 2rem;
            margin: 0.8rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #d0dcc8;
            cursor: pointer;
            transition: 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--gold);
        }
        .rating-form button {
            padding: 0.7rem 2rem;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }
        .rating-form button:hover {
            background: var(--gold);
            color: var(--primary);
        }
        friend-link {
            display: block;
            background: var(--bg-card);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 2rem 2.5rem;
            margin: 2rem 0;
        }
        friend-link h3 {
            margin-top: 0;
        }
        .friend-links-list {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 0.8rem;
        }
        .friend-links-list li a {
            display: block;
            padding: 0.7rem 1.2rem;
            background: var(--bg-light);
            border-radius: 10px;
            border: 1px solid var(--border);
            transition: 0.2s;
            font-weight: 500;
        }
        .friend-links-list li a:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            text-decoration: none;
        }
        .site-footer {
            background: linear-gradient(135deg, var(--primary) 0%, #0f2a1a 100%);
            color: #c8dcc8;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.5rem;
        }
        .footer-inner .copyright {
            font-size: 0.9rem;
            opacity: 0.85;
        }
        .footer-inner .copyright strong {
            color: var(--gold);
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: rgba(15, 42, 26, 0.98);
                padding: 1rem 0.5rem;
                border-radius: 12px;
                margin-top: 0.5rem;
            }
            .main-nav a {
                padding: 0.7rem 1.2rem;
                border-radius: 8px;
            }
            .nav-toggle:checked~.main-nav {
                display: flex;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            article,
            .search-section,
            .comments-section,
            .rating-section,
            friend-link {
                padding: 1.2rem;
            }
            .meta-info {
                flex-direction: column;
                gap: 0.3rem;
            }
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .my-logo {
                font-size: 1.3rem;
                padding: 0.2rem 1rem;
            }
            .header-inner {
                gap: 0.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.5rem;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.8rem;
            }
            .stat-card .number {
                font-size: 1.6rem;
            }
            .search-form button {
                padding: 0.7rem 1.2rem;
                font-size: 0.9rem;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .friend-links-list {
                grid-template-columns: 1fr;
            }
        }
        .text-gold {
            color: var(--gold);
        }
        .bg-gold-light {
            background: #fbf5e6;
        }
        .emoji-big {
            font-size: 1.3em;
            margin-right: 0.3rem;
        }
        .highlight-box {
            background: #f0f8ee;
            border-left: 5px solid var(--gold);
            padding: 1.2rem 1.8rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        @media (max-width: 640px) {
            .two-col {
                grid-template-columns: 1fr;
            }
        }
        .skip-link {
            position: absolute;
            top: -100%;
            left: 0;
            background: var(--gold);
            color: var(--primary);
            padding: 0.6rem 1.2rem;
            z-index: 10000;
            font-weight: 600;
            border-radius: 0 0 12px 0;
        }
        .skip-link:focus {
            top: 0;
        }
        .nav-toggle {
            display: none;
        }
        @media (max-width: 768px) {
            .nav-toggle:checked~.main-nav {
                display: flex;
            }
        }
