        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #f5e6d3 0%, #e8d4b5 100%);
            color: #333;
            line-height: 1.7;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a {
            color: #d2691e;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #8b4513;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .site-header {
            background: #fff;
            padding: 1.5rem;
            border-radius: 0 0 12px 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: #d2691e;
            text-shadow: 1px 1px 3px rgba(210, 105, 30, 0.3);
        }
        .my-logo a {
            color: inherit;
        }
        .my-logo span {
            color: #8b4513;
        }
        .nav-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #d2691e;
            cursor: pointer;
            padding: 0.5rem;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0.3rem;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #d2691e;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .breadcrumb {
            padding: 1rem 1.5rem;
            background: #f8f1e5;
            border-radius: 8px;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #a0522d;
        }
        .breadcrumb i {
            margin: 0 8px;
            color: #ccc;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 768px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .main-content {
            background: #fff;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
        }
        article h1 {
            font-size: 2.8rem;
            color: #5c2e0d;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid #e8d4b5;
            padding-bottom: 0.8rem;
        }
        article h2 {
            font-size: 2rem;
            color: #8b4513;
            margin-top: 2.8rem;
            margin-bottom: 1.2rem;
            padding-left: 0.8rem;
            border-left: 5px solid #d2691e;
        }
        article h3 {
            font-size: 1.6rem;
            color: #a0522d;
            margin-top: 2.2rem;
            margin-bottom: 1rem;
        }
        article h4 {
            font-size: 1.3rem;
            color: #b5651d;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight-box {
            background: #fff8e1;
            border-left: 5px solid #ffb300;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3em;
        }
        .last-updated {
            font-style: italic;
            color: #777;
            background: #f9f9f9;
            padding: 0.8rem;
            border-radius: 6px;
            margin: 2rem 0;
            text-align: center;
        }
        .sidebar {
            background: #fff;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
            align-self: start;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar h3 {
            color: #8b4513;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #e8d4b5;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.9rem;
            border: 2px solid #e8d4b5;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-form button {
            background: #d2691e;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #b55a1a;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ffd700;
            cursor: pointer;
        }
        .rating-stars span:hover {
            color: #ffed85;
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 0.9rem;
            border: 2px solid #e8d4b5;
            border-radius: 8px;
            font-size: 1rem;
        }
        .form-button {
            background: #d2691e;
            color: white;
            border: none;
            padding: 1rem 1.8rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
            align-self: flex-start;
        }
        .form-button:hover {
            background: #b55a1a;
        }
        .site-footer {
            margin-top: 3rem;
            padding: 2.5rem 0;
            background: #5c2e0d;
            color: #f5e6d3;
            border-radius: 12px 12px 0 0;
            text-align: center;
        }
        friend-link {
            display: block;
            margin: 1.5rem 0;
        }
        friend-link a {
            color: #ffcc99;
            margin: 0 1rem;
            font-weight: 600;
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #8b4513;
            color: #d2b48c;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .site-header {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-toggle {
                display: block;
                position: absolute;
                top: 2rem;
                right: 1.5rem;
            }
            .main-nav {
                width: 100%;
                display: none;
                margin-top: 1.5rem;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0.8rem;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
            .main-content, .sidebar {
                padding: 1.8rem;
            }
        }
