        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #1a472a;
            --primary-green: #2e7d32;
            --accent-gold: #d4af37;
            --accent-brown: #8b4513;
            --light-bg: #f5f5f5;
            --dark-text: #222;
            --light-text: #f8f8f8;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #fdf6e3 0%, #e8f5e9 100%);
            color: var(--dark-text);
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .site-header {
            background: linear-gradient(to right, var(--primary-dark), var(--primary-green));
            color: var(--light-text);
            padding: 1rem 2rem;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: var(--accent-gold);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .logo a:hover {
            color: #fff;
        }
        .logo .tagline {
            font-size: 0.9rem;
            color: #ccc;
            font-style: italic;
        }
        .breadcrumb {
            padding: 0.8rem 2rem;
            background: #e0f2e9;
            font-size: 0.9rem;
            border-bottom: 1px solid #c8e6c9;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            max-width: 1400px;
            margin: 0 auto;
        }
        .breadcrumb li {
            margin-right: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: var(--primary-green);
        }
        .breadcrumb a:hover {
            color: var(--primary-green);
            text-decoration: underline;
        }
        .nav-container {
            display: flex;
            align-items: center;
        }
        .main-nav {
            display: flex;
        }
        .main-nav li {
            margin-left: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: var(--accent-gold);
            border-bottom-color: var(--accent-gold);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0.5rem;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--light-text);
            margin: 3px 0;
            border-radius: 2px;
            transition: var(--transition);
        }
        .search-box {
            display: flex;
            margin-left: 2rem;
            border-radius: 30px;
            overflow: hidden;
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.3);
        }
        .search-box input {
            padding: 0.6rem 1rem;
            background: transparent;
            border: none;
            color: white;
            min-width: 250px;
        }
        .search-box input::placeholder {
            color: rgba(255,255,255,0.7);
        }
        .search-box button {
            background: var(--accent-gold);
            color: var(--primary-dark);
            border: none;
            padding: 0.6rem 1.2rem;
            cursor: pointer;
            font-weight: bold;
        }
        .search-box button:hover {
            background: #e6c130;
        }
        .main-container {
            flex: 1;
            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: white;
            border-radius: 15px;
            padding: 3rem;
            box-shadow: var(--shadow);
        }
        .article-header {
            border-bottom: 3px solid var(--accent-brown);
            padding-bottom: 2rem;
            margin-bottom: 2rem;
        }
        h1 {
            font-size: 3.2rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--primary-green);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #c8e6c9;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--accent-brown);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #555;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #444;
            font-weight: 500;
            padding-left: 1rem;
            border-left: 4px solid var(--accent-gold);
        }
        .highlight {
            background: linear-gradient(120deg, #d4edda 0%, transparent 100%);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid var(--primary-green);
            margin: 2rem 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: #f1f8e9;
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 3px 8px rgba(0,0,0,0.08);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 1rem;
        }
        .stat-card h4 {
            margin: 0;
            color: var(--primary-dark);
        }
        .stat-card p {
            margin: 0;
            font-size: 2rem;
            font-weight: bold;
            color: var(--accent-brown);
        }
        .image-container {
            margin: 3rem 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 5px solid white;
            max-width: 900px;
            margin: 0 auto;
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .link-list {
            background: #f9f9f9;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .link-list h4 {
            margin-top: 0;
        }
        .link-list ul {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .link-list a {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: #e8f5e9;
            border-radius: 30px;
            color: var(--primary-green);
            border: 1px solid #c8e6c9;
        }
        .link-list a:hover {
            background: var(--primary-green);
            color: white;
            transform: translateY(-3px);
        }
        .quote {
            font-size: 1.3rem;
            color: var(--primary-dark);
            padding: 2rem;
            background: linear-gradient(45deg, #fff9c4, #fffde7);
            border-radius: 10px;
            margin: 2.5rem 0;
            border-left: 8px solid var(--accent-gold);
            font-style: italic;
        }
        .author {
            text-align: right;
            font-weight: bold;
            color: var(--accent-brown);
            margin-top: 1rem;
        }
        .interactive-section {
            margin: 3rem 0;
            padding: 2rem;
            background: #f5f5f5;
            border-radius: 12px;
        }
        .rating-widget {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .stars {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            margin: 1rem 0;
        }
        .stars .star {
            transition: var(--transition);
            margin: 0 5px;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffc107;
            transform: scale(1.2);
        }
        .comment-form,
        .search-widget {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #555;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus,
        textarea:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
        }
        button.submit-btn {
            background: linear-gradient(to right, var(--primary-green), var(--primary-dark));
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        button.submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        aside {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            color: var(--primary-dark);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-gold);
        }
        .update-time {
            background: #e8f5e9;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            font-weight: bold;
            color: var(--primary-dark);
        }
        .update-time i {
            margin-right: 0.5rem;
            color: var(--primary-green);
        }
        .site-footer {
            background: linear-gradient(to right, #0d281c, var(--primary-dark));
            color: var(--light-text);
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-widget h4 {
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links a {
            display: block;
            padding: 0.5rem 0;
            color: #ccc;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .footer-links a:hover {
            color: var(--accent-gold);
            padding-left: 0.5rem;
        }
        friend-link {
            display: block;
            padding: 0.8rem;
            background: rgba(255,255,255,0.05);
            border-radius: 6px;
            margin-bottom: 0.8rem;
            border-left: 3px solid var(--accent-gold);
            transition: var(--transition);
        }
        friend-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--primary-dark);
                flex-direction: column;
                padding: 1rem 2rem;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }
            .main-nav.active {
                display: flex;
            }
            .main-nav li {
                margin: 0.8rem 0;
            }
            .hamburger {
                display: flex;
            }
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
            .search-box input {
                min-width: 200px;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            .main-container {
                padding: 0 1rem;
            }
            article {
                padding: 2rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .search-box {
                margin: 1rem 0 0 0;
                width: 100%;
                order: 3;
            }
            .search-box input {
                min-width: auto;
                flex: 1;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .footer-container {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, aside {
            animation: fadeIn 0.8s ease-out;
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
