* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
        }
        body {
            background: #f8f5f0;
            color: #2d2a24;
            line-height: 1.7;
            padding: 0 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #fffcf9;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
            border-radius: 32px;
            padding: 20px 24px 40px;
            margin-top: 16px;
            margin-bottom: 40px;
        }
        header {
            padding: 16px 0 8px;
            border-bottom: 2px solid #f0e6d8;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: -0.5px;
            text-decoration: none;
            color: #c44536;
            background: linear-gradient(135deg, #c44536, #e27b5a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #c44536;
            color: #c44536;
            font-size: 28px;
        }
        .my-logo span {
            font-weight: 300;
            -webkit-text-fill-color: #7a6a5c;
            color: #7a6a5c;
            font-size: 20px;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-menu {
            display: flex;
            gap: 20px;
            list-style: none;
            flex-wrap: wrap;
        }
        .nav-menu li a {
            text-decoration: none;
            color: #4a3f35;
            font-weight: 500;
            font-size: 15px;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-menu li a:hover {
            border-bottom-color: #c44536;
            color: #c44536;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 26px;
            color: #4a3f35;
            cursor: pointer;
            padding: 4px 8px;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 10px;
            padding: 12px 0 8px;
            font-size: 14px;
            color: #8a7a6a;
            width: 100%;
        }
        .breadcrumb a {
            color: #8a7a6a;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #c44536;
        }
        .breadcrumb i {
            font-size: 12px;
            color: #b8a898;
        }
        .breadcrumb .current {
            color: #2d2a24;
            font-weight: 500;
        }
        .hero {
            padding: 24px 0 16px;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.02em;
            color: #2d2a24;
            margin-bottom: 12px;
        }
        .hero h1 i {
            color: #c44536;
        }
        .hero .meta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 28px;
            color: #6d5d4d;
            font-size: 15px;
            border-left: 4px solid #c44536;
            padding-left: 18px;
            margin: 12px 0 18px;
        }
        .hero .meta i {
            margin-right: 6px;
            color: #c44536;
        }
        .hero .last-updated {
            background: #f0e6d8;
            padding: 6px 16px;
            border-radius: 40px;
            font-size: 14px;
            display: inline-block;
        }
        .search-block {
            background: #f4efe8;
            border-radius: 60px;
            padding: 6px 6px 6px 20px;
            display: flex;
            align-items: center;
            max-width: 480px;
            margin: 20px 0 28px;
            border: 1px solid #e2d4c4;
            transition: 0.2s;
        }
        .search-block:focus-within {
            border-color: #c44536;
            box-shadow: 0 0 0 3px rgba(196, 69, 54, 0.12);
        }
        .search-block input {
            background: transparent;
            border: none;
            padding: 12px 8px 12px 0;
            font-size: 16px;
            flex: 1;
            outline: none;
            color: #2d2a24;
        }
        .search-block button {
            background: #c44536;
            border: none;
            color: #fff;
            padding: 10px 22px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-block button:hover {
            background: #a83326;
            transform: scale(0.97);
        }
        .content {
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 40px 32px;
            margin-top: 16px;
        }
        .main-article h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #2d2a24;
            margin-top: 40px;
            margin-bottom: 12px;
            border-bottom: 3px solid #f0e6d8;
            padding-bottom: 8px;
        }
        .main-article h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #3d342b;
            margin-top: 32px;
            margin-bottom: 10px;
        }
        .main-article h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #4a3f35;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        .main-article p {
            margin-bottom: 18px;
            font-size: 16.5px;
            color: #3d3730;
        }
        .main-article p b,
        .main-article p strong {
            color: #2d2a24;
        }
        .main-article ul,
        .main-article ol {
            margin: 12px 0 20px 24px;
            font-size: 16.5px;
            color: #3d3730;
        }
        .main-article li {
            margin-bottom: 6px;
        }
        .main-article a {
            color: #c44536;
            text-decoration: underline;
            text-underline-offset: 3px;
            transition: 0.2s;
        }
        .main-article a:hover {
            color: #8a2b1f;
            text-decoration-thickness: 2px;
        }
        .main-article .img-wrapper {
            margin: 28px 0 32px;
            border-radius: 20px;
            overflow: hidden;
            background: #f4efe8;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }
        .main-article .img-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            aspect-ratio: 16/9;
            object-fit: cover;
        }
        .main-article .img-wrapper figcaption {
            padding: 12px 18px;
            font-size: 14px;
            color: #6d5d4d;
            background: #faf7f2;
            border-top: 1px solid #e8ddd0;
        }
        .sidebar {
            border-left: 1px solid #eee5db;
            padding-left: 28px;
        }
        .sidebar .card {
            background: #faf7f2;
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 24px;
            border: 1px solid #e8ddd0;
        }
        .sidebar .card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #2d2a24;
        }
        .sidebar .card ul {
            list-style: none;
        }
        .sidebar .card ul li {
            padding: 6px 0;
            border-bottom: 1px dashed #e0d4c6;
        }
        .sidebar .card ul li:last-child {
            border-bottom: none;
        }
        .sidebar .card ul li a {
            text-decoration: none;
            color: #4a3f35;
            font-size: 15px;
            transition: 0.2s;
            display: block;
        }
        .sidebar .card ul li a:hover {
            color: #c44536;
            padding-left: 4px;
        }
        .rating-area,
        .comment-area {
            background: #faf7f2;
            border-radius: 20px;
            padding: 24px 28px;
            margin: 40px 0 24px;
            border: 1px solid #e8ddd0;
        }
        .rating-area h3,
        .comment-area h3 {
            font-size: 1.3rem;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .stars {
            display: flex;
            gap: 6px;
            font-size: 28px;
            color: #d4c8b8;
            cursor: pointer;
            margin: 8px 0 14px;
        }
        .stars i {
            transition: 0.15s;
        }
        .stars i:hover,
        .stars i.active {
            color: #e8a830;
        }
        .rating-area form,
        .comment-area form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .rating-area input,
        .rating-area textarea,
        .comment-area input,
        .comment-area textarea {
            padding: 14px 16px;
            border: 1px solid #ddd2c4;
            border-radius: 12px;
            font-size: 15px;
            background: #fff;
            transition: 0.2s;
            resize: vertical;
        }
        .rating-area input:focus,
        .rating-area textarea:focus,
        .comment-area input:focus,
        .comment-area textarea:focus {
            border-color: #c44536;
            outline: none;
            box-shadow: 0 0 0 3px rgba(196, 69, 54, 0.08);
        }
        .rating-area button,
        .comment-area button {
            align-self: flex-start;
            background: #c44536;
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: 0.2s;
        }
        .rating-area button:hover,
        .comment-area button:hover {
            background: #a83326;
            transform: scale(0.97);
        }
        footer {
            margin-top: 48px;
            padding-top: 32px;
            border-top: 2px solid #f0e6d8;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
        }
        .footer-grid h4 {
            font-size: 1rem;
            font-weight: 700;
            color: #2d2a24;
            margin-bottom: 12px;
        }
        .footer-grid ul {
            list-style: none;
        }
        .footer-grid ul li {
            padding: 4px 0;
        }
        .footer-grid ul li a {
            text-decoration: none;
            color: #5d4d3d;
            font-size: 14px;
            transition: 0.2s;
        }
        .footer-grid ul li a:hover {
            color: #c44536;
            padding-left: 4px;
        }
        friend-link {
            display: block;
            margin: 24px 0 16px;
            padding: 16px 20px;
            background: #f4efe8;
            border-radius: 14px;
            font-size: 14px;
            color: #4a3f35;
            border: 1px solid #e2d4c4;
        }
        friend-link a {
            color: #c44536;
            text-decoration: none;
            margin: 0 4px;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding: 20px 0 8px;
            font-size: 14px;
            color: #7a6a5c;
            border-top: 1px solid #ece2d6;
            margin-top: 20px;
        }
        .copyright strong {
            color: #2d2a24;
        }
        @media (max-width: 820px) {
            .container {
                padding: 12px 14px 28px;
                border-radius: 20px;
            }
            .content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                border-left: none;
                padding-left: 0;
                margin-top: 24px;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                background: #fffcf9;
                position: absolute;
                top: 72px;
                right: 0;
                left: 0;
                padding: 20px 24px;
                border-radius: 0 0 20px 20px;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
                border: 1px solid #f0e6d8;
                z-index: 99;
            }
            .nav-menu.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .search-block {
                max-width: 100%;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .container {
                padding: 8px 10px 20px;
                border-radius: 14px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .rating-area,
            .comment-area {
                padding: 18px 16px;
            }
            .my-logo {
                font-size: 22px;
            }
            .search-block button span {
                display: none;
            }
            .search-block button i {
                margin: 0;
            }
            .search-block button {
                padding: 10px 16px;
            }
            .breadcrumb {
                font-size: 12px;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .schema-hidden {
            display: none;
        }
