* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #f7f5f0;
            color: #2d2a24;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #b84a2c;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #8a351f;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #1f1b16;
            padding: 16px 0;
            border-bottom: 4px solid #b84a2c;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            color: #f0e6d8;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #f0e6d8, #b84a2c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #b89a7a;
            color: #b89a7a;
            letter-spacing: 4px;
            font-weight: 300;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f0e6d8;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            color: #d4c9b8;
            padding: 8px 18px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.25s;
            white-space: nowrap;
        }
        nav a:hover {
            background: #b84a2c;
            color: #fff;
            text-decoration: none;
            transform: translateY(-2px);
        }
        .breadcrumb {
            background: #e8e2d7;
            padding: 12px 0;
            font-size: 0.9rem;
            color: #5a4f42;
        }
        .breadcrumb a {
            color: #7a5a44;
        }
        .breadcrumb a:hover {
            color: #b84a2c;
        }
        .breadcrumb i {
            margin: 0 8px;
            font-size: 0.7rem;
            color: #b89a7a;
        }
        .hero {
            background: linear-gradient(135deg, #2d2720 0%, #1f1b16 100%);
            color: #f0e6d8;
            padding: 60px 0 50px;
            text-align: center;
            border-bottom: 4px solid #b84a2c;
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 900;
            letter-spacing: 1px;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero h1 span {
            color: #e67a4f;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 720px;
            margin: 0 auto 28px;
            color: #cbbeb0;
        }
        .hero .badge {
            display: inline-block;
            background: #b84a2c;
            padding: 6px 24px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            color: #fff;
            letter-spacing: 1px;
        }
        .search-bar {
            display: flex;
            max-width: 520px;
            margin: 24px auto 0;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .search-bar input {
            flex: 1;
            padding: 16px 24px;
            border: none;
            font-size: 1rem;
            background: #f7f5f0;
            color: #2d2a24;
            outline: none;
        }
        .search-bar button {
            background: #b84a2c;
            border: none;
            color: #fff;
            padding: 0 32px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.25s;
        }
        .search-bar button:hover {
            background: #9e3d24;
        }
        .search-bar button i {
            font-size: 1.2rem;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            padding: 50px 0;
        }
        .content-area h2 {
            font-size: 2.2rem;
            font-weight: 800;
            color: #1f1b16;
            margin: 48px 0 16px;
            border-left: 6px solid #b84a2c;
            padding-left: 18px;
        }
        .content-area h2:first-of-type {
            margin-top: 0;
        }
        .content-area h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: #2d2720;
            margin: 36px 0 12px;
            padding-bottom: 6px;
            border-bottom: 2px solid #e8e2d7;
        }
        .content-area h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #4a3f32;
            margin: 24px 0 10px;
        }
        .content-area p {
            margin-bottom: 18px;
            color: #3d352b;
        }
        .content-area ul,
        .content-area ol {
            margin: 12px 0 20px 24px;
            color: #3d352b;
        }
        .content-area li {
            margin-bottom: 8px;
        }
        .content-area .feature-img {
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            margin: 32px 0;
            width: 100%;
        }
        .content-area .highlight-box {
            background: #e8e2d7;
            border-left: 6px solid #b84a2c;
            padding: 24px 28px;
            border-radius: 0 12px 12px 0;
            margin: 28px 0;
        }
        .content-area .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .content-area .link-list {
            background: #f0ece4;
            padding: 20px 24px;
            border-radius: 12px;
            margin: 20px 0;
        }
        .content-area .link-list a {
            display: inline-block;
            margin: 4px 12px 4px 0;
        }
        .emoji-big {
            font-size: 1.8rem;
            margin-right: 8px;
        }
        .sidebar {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .sidebar-card {
            background: #f0ece4;
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 28px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        }
        .sidebar-card h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1f1b16;
            border-bottom: 2px solid #b84a2c;
            padding-bottom: 10px;
            margin-bottom: 16px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 8px 0;
            border-bottom: 1px dashed #d4c9b8;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
        }
        .sidebar-card ul li a i {
            color: #b84a2c;
            width: 18px;
            text-align: center;
        }
        .interaction-area {
            background: #f0ece4;
            border-radius: 20px;
            padding: 36px 40px;
            margin: 48px 0 32px;
        }
        .interaction-area h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1f1b16;
            border-bottom: 3px solid #b84a2c;
            padding-bottom: 12px;
            margin-bottom: 28px;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            color: #d4c9b8;
            cursor: pointer;
            margin: 12px 0 20px;
        }
        .rating-stars i.active {
            color: #f5b342;
        }
        .rating-stars i:hover {
            color: #f5b342;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #d4c9b8;
            border-radius: 12px;
            font-size: 1rem;
            background: #fff;
            color: #2d2a24;
            transition: border 0.25s;
            margin-bottom: 16px;
            font-family: inherit;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            outline: none;
            border-color: #b84a2c;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn-submit {
            background: #b84a2c;
            color: #fff;
            border: none;
            padding: 14px 40px;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn-submit:hover {
            background: #9e3d24;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(184, 74, 44, 0.35);
        }
        footer {
            background: #1f1b16;
            color: #cbbeb0;
            padding: 48px 0 32px;
            margin-top: 40px;
            border-top: 4px solid #b84a2c;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }
        footer h4 {
            color: #f0e6d8;
            font-size: 1.2rem;
            margin-bottom: 16px;
            font-weight: 700;
        }
        footer a {
            color: #b89a7a;
        }
        footer a:hover {
            color: #e67a4f;
        }
        friend-link {
            display: block;
            padding: 20px 0;
            border-top: 1px solid #3d352b;
            border-bottom: 1px solid #3d352b;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 20px 4px 0;
            padding: 4px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            font-size: 0.9rem;
            color: #8a7f6e;
            border-top: 1px solid #3d352b;
        }
        .copyright strong {
            color: #cbbeb0;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            footer .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 16px 0 8px;
                gap: 4px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 12px 20px;
                border-radius: 10px;
                width: 100%;
                text-align: center;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .search-bar {
                flex-direction: column;
                border-radius: 16px;
            }
            .search-bar input {
                border-radius: 16px 16px 0 0;
                padding: 14px 18px;
            }
            .search-bar button {
                padding: 14px;
                border-radius: 0 0 16px 16px;
            }
            .content-area h2 {
                font-size: 1.8rem;
            }
            .content-area h3 {
                font-size: 1.3rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .interaction-area {
                padding: 24px 20px;
            }
            footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.7rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
        }
        .schema-hidden {
            display: none;
        }
        .last-updated {
            display: inline-block;
            background: #e8e2d7;
            padding: 4px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #5a4f42;
            margin-bottom: 20px;
        }
        .last-updated i {
            margin-right: 6px;
            color: #b84a2c;
        }
