        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f5f0;
            background-image: linear-gradient(to bottom, #fdfcfb 0%, #f8f5f0 100%);
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #8b4513;
            text-decoration: none;
            transition: color 0.3s ease, border-bottom-color 0.3s ease;
        }
        a:hover {
            color: #d2691e;
            border-bottom: 1px dashed #d2691e;
        }
        .site-header {
            padding: 1.5rem 0;
            border-bottom: 3px double #8b4513;
            margin-bottom: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: Georgia, 'Times New Roman', Times, serif;
            font-size: 2.5rem;
            font-weight: bold;
            color: #8b4513;
            text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.2);
            letter-spacing: -1px;
        }
        .my-logo a {
            border: none;
        }
        .my-logo span {
            color: #d2691e;
            font-style: italic;
        }
        .main-nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .nav-links a {
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            border-bottom: 2px solid #d2691e;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #8b4513;
            cursor: pointer;
        }
        .breadcrumb {
            margin: 1rem 0 2rem;
            font-size: 0.9rem;
            color: #666;
        }
        .breadcrumb a:after {
            content: " › ";
            margin: 0 8px;
            color: #aaa;
        }
        .breadcrumb a:last-child:after {
            content: "";
        }
        .content-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 900px) {
            .content-container {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
        }
        h1 {
            font-size: 2.8rem;
            color: #5d2906;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid #d2691e;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #8b4513;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #e8d4c3;
        }
        h3 {
            font-size: 1.6rem;
            color: #a0522d;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #b8860b;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #444;
            background-color: #fffaf0;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            border-left: 4px solid #b8860b;
        }
        strong {
            color: #5d2906;
            font-weight: 700;
        }
        em {
            color: #8b4513;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fdf6e3, #faebd7);
            border: 1px solid #e8d4c3;
            padding: 1.8rem;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: inset 0 0 10px rgba(139, 69, 19, 0.05);
        }
        blockquote {
            font-style: italic;
            color: #555;
            border-left: 4px solid #d2691e;
            padding-left: 1.5rem;
            margin: 2rem 0;
            background-color: #fefefe;
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.6rem;
        }
        hr {
            border: none;
            height: 1px;
            background: linear-gradient(to right, transparent, #e8d4c3, transparent);
            margin: 2.5rem 0;
        }
        .article-img {
            width: 100%;
            margin: 2.5rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border: 1px solid #ddd;
        }
        .article-img img {
            width: 100%;
            height: auto;
        }
        figcaption {
            text-align: center;
            font-size: 0.9rem;
            color: #777;
            padding: 0.8rem;
            background-color: #f9f9f9;
        }
        aside {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
            align-self: start;
            position: sticky;
            top: 20px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            color: #8b4513;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dotted #d2691e;
        }
        .search-form {
            display: flex;
            margin-bottom: 1.5rem;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem;
            border: 1px solid #d2691e;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: #8b4513;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background-color: #a0522d;
        }
        .rating-widget, .comment-widget {
            background: #fffaf0;
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid #e8d4c3;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #ffc107;
        }
        .stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-form button, .comment-form button {
            background-color: #d2691e;
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .rating-form button:hover, .comment-form button:hover {
            background-color: #8b4513;
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
        }
        footer {
            margin-top: 4rem;
            padding: 2.5rem 0;
            border-top: 3px double #8b4513;
            background-color: #2f1b0a;
            color: #e8d4c3;
            border-radius: 12px 12px 0 0;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: #f0d9b5;
            margin-bottom: 1.2rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            color: #d7b899;
            border-bottom: 1px dotted transparent;
        }
        friend-link a:hover {
            color: #ffd700;
            border-bottom-color: #ffd700;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #5d2906;
            font-size: 0.9rem;
            color: #b8860b;
        }
        @media (max-width: 768px) {
            .site-header {
                flex-direction: column;
                align-items: flex-start;
            }
            .main-nav {
                width: 100%;
                margin-top: 1rem;
                justify-content: space-between;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: white;
                padding: 1rem;
                border-radius: 8px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                position: absolute;
                top: 120px;
                left: 15px;
                right: 15px;
                z-index: 1000;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article, aside {
                padding: 1.5rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, aside {
            animation: fadeIn 0.6s ease-out;
        }
        .nav-links a, .search-form button, .rating-form button, .comment-form button {
            position: relative;
            overflow: hidden;
        }
        .nav-links a:after, .search-form button:after, .rating-form button:after, .comment-form button:after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 5px;
            height: 5px;
            background: rgba(255, 255, 255, .5);
            opacity: 0;
            border-radius: 100%;
            transform: scale(1, 1) translate(-50%);
            transform-origin: 50% 50%;
        }
        .nav-links a:focus:after, .search-form button:focus:after, .rating-form button:focus:after, .comment-form button:focus:after {
            animation: ripple 1s ease-out;
        }
        @keyframes ripple {
            0% {
                transform: scale(0, 0);
                opacity: 0.5;
            }
            100% {
                transform: scale(40, 40);
                opacity: 0;
            }
        }
