        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #1a3c2e;
            --primary-green: #2d5a43;
            --accent-gold: #c9a959;
            --accent-brown: #8b5a2b;
            --light-bg: #f5f1e8;
            --text-dark: #333;
            --text-light: #f0f0f0;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #f9f7f2;
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-green);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-gold);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-green));
            color: var(--text-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo a {
            color: inherit;
        }
        .my-logo a:hover {
            text-decoration: none;
            color: white;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: var(--text-light);
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--primary-dark);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: var(--text-light);
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb {
            background-color: var(--light-bg);
            padding: 0.8rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #ddd;
        }
        .breadcrumb a {
            color: var(--primary-green);
        }
        .breadcrumb span {
            color: #777;
        }
        .hero {
            background: linear-gradient(rgba(26, 60, 46, 0.8), rgba(45, 90, 67, 0.9)), url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 4rem 2rem;
            margin-bottom: 2rem;
            border-radius: 0 0 15px 15px;
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .content-main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .article-content h2 {
            color: var(--primary-dark);
            border-left: 5px solid var(--accent-gold);
            padding-left: 15px;
            margin: 2.5rem 0 1.5rem;
            font-size: 2.2rem;
        }
        .article-content h3 {
            color: var(--primary-green);
            margin: 2rem 0 1rem;
            font-size: 1.7rem;
        }
        .article-content h4 {
            color: var(--accent-brown);
            margin: 1.5rem 0 1rem;
            font-size: 1.3rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .article-content strong {
            color: var(--primary-dark);
            font-weight: 700;
        }
        .article-content em {
            color: var(--accent-brown);
            font-style: italic;
        }
        .feature-img {
            width: 100%;
            border-radius: 10px;
            margin: 2rem auto;
            border: 3px solid var(--accent-gold);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }
        .highlight-box {
            background: linear-gradient(to right, #f5f1e8, #e8dfca);
            border-left: 5px solid var(--accent-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .inline-link {
            font-weight: 600;
            color: var(--primary-green);
            border-bottom: 1px dashed currentColor;
        }
        .inline-link:hover {
            color: var(--accent-gold);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 1rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            padding: 1.8rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .widget h3 {
            color: var(--primary-dark);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-gold);
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-green);
        }
        button, .btn {
            background: linear-gradient(to right, var(--primary-green), var(--primary-dark));
            color: white;
            border: none;
            padding: 0.9rem 1.5rem;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, var(--accent-brown), var(--primary-green));
            text-decoration: none;
            color: white;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            margin: 1rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: var(--accent-gold);
        }
        .update-time {
            font-style: italic;
            color: #666;
            font-size: 0.95rem;
            text-align: right;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }
        .site-footer {
            background: var(--primary-dark);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-section h3 {
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            color: #ccc;
        }
        friend-link a:hover {
            color: white;
        }
        .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;
        }
