        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f7f5f0;
            color: #2e2b27;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #b85c2b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #7a3b1a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: #1f3b3c;
            color: #f7f5f0;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #f7f5f0;
            background: #b85c2b;
            padding: 6px 18px;
            border-radius: 8px;
            display: inline-block;
            transition: background 0.3s;
        }
        .my-logo:hover {
            background: #9a4a20;
            text-decoration: none;
            color: #fff;
        }
        .my-logo small {
            font-size: 0.55rem;
            font-weight: 400;
            display: block;
            letter-spacing: 0.3px;
            color: #f0e6d8;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f7f5f0;
            color: #f7f5f0;
            font-size: 1.5rem;
            padding: 6px 14px;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            gap: 8px 16px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #f0e6d8;
            font-weight: 500;
            padding: 6px 10px;
            border-radius: 6px;
            font-size: 0.95rem;
            transition: background 0.2s, color 0.2s;
        }
        .nav-menu a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #ffd7b3;
            text-decoration: none;
        }
        .nav-menu .active {
            background: rgba(184, 92, 43, 0.55);
            color: #fff;
        }
        .breadcrumb {
            background: #e8e2d8;
            padding: 10px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #d6cec2;
        }
        .breadcrumb ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 14px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 14px;
            color: #8a7a6a;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #5f4e3c;
        }
        .breadcrumb a:hover {
            color: #b85c2b;
        }
        .breadcrumb .current {
            color: #2e2b27;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #1f3b3c 0%, #2d5a5b 100%);
            color: #f7f5f0;
            padding: 48px 0 40px;
            text-align: center;
            border-bottom: 4px solid #b85c2b;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            line-height: 1.2;
            max-width: 900px;
            margin: 0 auto 12px;
        }
        .hero h1 span {
            color: #ffd7b3;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 750px;
            margin: 12px auto 0;
            opacity: 0.92;
        }
        .hero .last-update {
            display: inline-block;
            margin-top: 16px;
            background: rgba(255, 255, 255, 0.12);
            padding: 4px 18px;
            border-radius: 40px;
            font-size: 0.85rem;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 860px) {
            .main-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
        }
        .content-area {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        h1 {
            font-size: 2.2rem;
            font-weight: 800;
            color: #1f3b3c;
            margin: 0 0 18px;
            line-height: 1.25;
        }
        h2 {
            font-size: 1.7rem;
            font-weight: 700;
            color: #1f3b3c;
            margin: 48px 0 16px;
            padding-bottom: 6px;
            border-bottom: 3px solid #b85c2b;
            display: inline-block;
        }
        h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2d4a4b;
            margin: 32px 0 12px;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #3d5a5b;
            margin: 24px 0 8px;
        }
        p {
            margin: 0 0 18px;
            font-size: 1rem;
        }
        .lead {
            font-size: 1.15rem;
            font-weight: 400;
            color: #3d3a35;
        }
        strong,
        b {
            color: #1f3b3c;
        }
        .emoji-big {
            font-size: 1.4rem;
        }
        .featured-image {
            margin: 28px 0 32px;
            border-radius: 14px;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
            background: #e8e2d8;
            padding: 8px;
        }
        .featured-image figcaption {
            text-align: center;
            font-size: 0.85rem;
            color: #5f4e3c;
            padding: 8px 0 4px;
            font-style: italic;
        }
        .highlight-box {
            background: #eef5f0;
            border-left: 5px solid #b85c2b;
            padding: 20px 24px;
            border-radius: 8px;
            margin: 24px 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .stat-card {
            background: #fff;
            border-radius: 12px;
            padding: 18px 14px;
            text-align: center;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            border: 1px solid #e0d8ce;
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: #b85c2b;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #5f4e3c;
            margin-top: 4px;
        }
        .sidebar-widget {
            background: #fff;
            border-radius: 14px;
            padding: 22px 20px;
            margin-bottom: 28px;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
            border: 1px solid #e0d8ce;
        }
        .sidebar-widget h3 {
            font-size: 1.2rem;
            border-bottom: 2px solid #b85c2b;
            padding-bottom: 6px;
            margin-top: 0;
            margin-bottom: 16px;
        }
        .sidebar-widget ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-widget li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }
        .sidebar-widget li::before {
            content: "▸";
            position: absolute;
            left: 0;
            color: #b85c2b;
            font-weight: 700;
        }
        .sidebar-widget a {
            color: #2d4a4b;
            font-weight: 500;
        }
        .sidebar-widget a:hover {
            color: #b85c2b;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin: 8px 0 4px;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 10px 16px;
            border: 2px solid #d6cec2;
            border-radius: 40px;
            font-size: 0.95rem;
            background: #fafaf8;
            transition: border 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #b85c2b;
            outline: none;
        }
        .search-form button {
            background: #b85c2b;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 10px 20px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 0.95rem;
        }
        .search-form button:hover {
            background: #9a4a20;
        }
        .comment-form textarea,
        .rating-form select,
        .rating-form input[type="text"] {
            width: 100%;
            padding: 10px 14px;
            border: 2px solid #d6cec2;
            border-radius: 8px;
            font-size: 0.95rem;
            background: #fafaf8;
            transition: border 0.2s;
            font-family: inherit;
        }
        .comment-form textarea:focus,
        .rating-form select:focus,
        .rating-form input:focus {
            border-color: #b85c2b;
            outline: none;
        }
        .comment-form textarea {
            min-height: 90px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            background: #1f3b3c;
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 10px 26px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 0.95rem;
            margin-top: 6px;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #2d5a5b;
        }
        .rating-stars {
            display: flex;
            gap: 4px;
            font-size: 1.5rem;
            color: #e6c229;
            margin: 6px 0;
        }
        .rating-stars i {
            cursor: pointer;
            transition: transform 0.15s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .links-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 10px 20px;
            margin: 18px 0 24px;
            padding: 0;
            list-style: none;
        }
        .links-list li a {
            display: block;
            padding: 8px 14px;
            background: #eef5f0;
            border-radius: 8px;
            border-left: 3px solid #b85c2b;
            font-weight: 500;
            transition: background 0.2s, transform 0.15s;
        }
        .links-list li a:hover {
            background: #ddeae0;
            transform: translateX(4px);
            text-decoration: none;
        }
        .site-footer {
            background: #1f3b3c;
            color: #d6cec2;
            padding: 36px 0 24px;
            margin-top: 40px;
            border-top: 4px solid #b85c2b;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
        }
        @media (max-width: 700px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        .footer-inner h4 {
            color: #f0e6d8;
            font-size: 1.1rem;
            margin: 0 0 12px;
        }
        .footer-inner a {
            color: #c4b8a8;
        }
        .footer-inner a:hover {
            color: #ffd7b3;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner li {
            margin-bottom: 6px;
        }
        .friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.05);
            padding: 16px 20px;
            border-radius: 10px;
            margin: 12px 0 0;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 2px 8px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 4px;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            margin-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.85rem;
            color: #a89884;
        }
        @media (max-width: 700px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 12px 0 4px;
                gap: 6px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 10px 14px;
                border-radius: 6px;
                background: rgba(255, 255, 255, 0.04);
            }
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #b85c2b;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
            transition: background 0.2s, transform 0.2s;
            z-index: 999;
        }
        .back-to-top:hover {
            background: #9a4a20;
            transform: translateY(-4px);
            text-decoration: none;
            color: #fff;
        }
        @media (max-width: 500px) {
            .back-to-top {
                bottom: 16px;
                right: 16px;
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }
        .schema-hidden {
            display: none;
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.3rem;
                padding: 4px 12px;
            }
            .container {
                padding: 0 14px;
            }
            h2 {
                font-size: 1.3rem;
            }
            h3 {
                font-size: 1.1rem;
            }
        }
