        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0a2e1f;
            --primary-green: #1a472a;
            --accent-gold: #c8a951;
            --accent-red: #8b1a1a;
            --light-bg: #f5f5e9;
            --dark-text: #1a1a1a;
            --light-text: #f0f0f0;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--light-bg);
            color: var(--dark-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-green));
            color: var(--light-text);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            text-decoration: none;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Georgia', serif;
            transition: var(--transition);
        }
        .my-logo:hover {
            color: #fff;
            text-shadow: 0 0 10px var(--accent-gold);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: var(--light-text);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .desktop-nav a:hover,
        .desktop-nav a:focus {
            background-color: rgba(255, 255, 255, 0.15);
            color: var(--accent-gold);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--light-text);
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--primary-dark);
            flex-direction: column;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
            width: 100%;
        }
        .mobile-nav li {
            margin: 0.5rem 0;
        }
        .mobile-nav a {
            color: var(--light-text);
            text-decoration: none;
            display: block;
            padding: 0.8rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .mobile-nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background-color: #e9e3c9;
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
            border-bottom: 1px solid #d4cba5;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            max-width: 1400px;
            margin: 0 auto;
        }
        .breadcrumb li {
            margin-right: 0.5rem;
        }
        .breadcrumb a {
            color: var(--primary-green);
            text-decoration: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: #777;
        }
        .main-container {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 1024px) {
            .main-container {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: #fff;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
        }
        h1 {
            color: var(--primary-dark);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--accent-gold);
            padding-bottom: 1rem;
        }
        h2 {
            color: var(--primary-green);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-top: 1rem;
        }
        h3 {
            color: var(--accent-red);
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: #555;
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #333;
            background-color: #f9f7e8;
            padding: 1.5rem;
            border-left: 5px solid var(--accent-gold);
            border-radius: 0 8px 8px 0;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background-color: #fff9db;
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: 600;
        }
        strong {
            color: var(--primary-dark);
        }
        em {
            color: #666;
            font-style: italic;
        }
        article a {
            color: var(--accent-red);
            text-decoration: none;
            border-bottom: 1px dotted var(--accent-red);
            transition: var(--transition);
        }
        article a:hover {
            color: var(--primary-dark);
            border-bottom-style: solid;
            background-color: #fdf0f0;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 2rem auto;
            display: block;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            border: 5px solid #e9e3c9;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: #fff;
            border-radius: 12px;
            padding: 1.8rem;
            box-shadow: var(--shadow);
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            color: var(--primary-green);
            border-bottom: 2px solid var(--accent-gold);
            padding-bottom: 0.7rem;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #ccc;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-button {
            background-color: var(--primary-green);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-button:hover {
            background-color: var(--primary-dark);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ddd;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars .star {
            transition: var(--transition);
            margin: 0 0.2rem;
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--accent-gold);
        }
        .rating-form input,
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
        }
        .submit-btn {
            background-color: var(--primary-green);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            width: 100%;
        }
        .submit-btn:hover {
            background-color: var(--primary-dark);
        }
        .update-time {
            background-color: #e9f7ef;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
            color: var(--primary-green);
            border: 1px solid #b8e6cf;
        }
        .site-footer {
            background-color: var(--primary-dark);
            color: var(--light-text);
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-section h3 {
            color: var(--accent-gold);
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent-gold);
            padding-left: 0.5rem;
        }
        friend-link {
            display: block;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            border-radius: 6px;
            margin-bottom: 1rem;
        }
        friend-link a {
            color: #a3d9b1;
            font-weight: 600;
            text-decoration: none;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .header-container {
                padding: 0.5rem 1rem;
            }
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .main-container {
                padding: 0 1rem;
                grid-template-columns: 1fr;
            }
            article {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .lead {
                font-size: 1.1rem;
                padding: 1rem;
            }
            p {
                font-size: 1rem;
            }
        }
        .clearfix::after {
            content: "";
            clear: both;
            display: table;
        }
        .text-center {
            text-align: center;
        }
        .emoji {
            font-size: 1.2em;
            vertical-align: middle;
        }
