        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #1a472a;
            --primary-medium: #2a623d;
            --primary-light: #3c7a4a;
            --accent-warm: #d4af37;
            --accent-earth: #8b7355;
            --text-light: #f5f5f5;
            --text-dim: #cccccc;
            --bg-dark: #0f1411;
            --bg-card: #1a201c;
            --border-color: #3a4a40;
        }
        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-warm);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #f0d076;
            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(to bottom, rgba(26, 71, 42, 0.95), rgba(15, 20, 17, 0.98));
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--accent-earth);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(90deg, var(--accent-warm), #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: unset;
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .desktop-nav a:hover {
            background-color: rgba(212, 175, 55, 0.1);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--bg-card);
            flex-direction: column;
            padding: 1rem;
            border-top: 1px solid var(--border-color);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 1rem;
            border-bottom: 1px solid var(--border-color);
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-dim);
            background-color: rgba(26, 32, 28, 0.7);
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--text-dim);
        }
        .breadcrumb a:hover {
            color: var(--accent-warm);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: var(--bg-card);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            border: 1px solid var(--border-color);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: var(--accent-warm);
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            color: var(--primary-light);
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--border-color);
        }
        h3 {
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
            color: var(--text-light);
        }
        h4 {
            font-size: 1.3rem;
            margin: 1.8rem 0 0.8rem;
            color: var(--text-dim);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .intro {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--text-dim);
            border-left: 4px solid var(--accent-warm);
            padding-left: 1.5rem;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background-color: rgba(212, 175, 55, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 5px solid var(--accent-warm);
            margin: 2rem 0;
        }
        .highlight strong {
            color: var(--accent-warm);
        }
        em {
            color: var(--accent-earth);
            font-style: italic;
        }
        strong {
            color: #fff;
            font-weight: 700;
        }
        .featured-image {
            margin: 2.5rem 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.7);
            border: 3px solid var(--primary-medium);
        }
        .img-caption {
            margin-top: 0.8rem;
            font-style: italic;
            color: var(--text-dim);
            font-size: 0.95rem;
        }
        .link-block {
            background: linear-gradient(135deg, rgba(42, 98, 61, 0.3), rgba(26, 71, 42, 0.3));
            padding: 1.2rem;
            border-radius: 8px;
            margin: 1.5rem 0;
            border: 1px solid var(--border-color);
        }
        .link-block a {
            font-weight: 600;
            display: block;
            margin: 0.5rem 0;
        }
        aside {
            background-color: var(--bg-card);
            border-radius: 12px;
            padding: 2rem;
            height: fit-content;
            border: 1px solid var(--border-color);
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            font-size: 1.4rem;
            color: var(--accent-warm);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.9rem;
            border: 1px solid var(--border-color);
            border-radius: 6px 0 0 6px;
            background-color: rgba(255,255,255,0.08);
            color: var(--text-light);
        }
        .search-form button {
            background-color: var(--primary-medium);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: var(--primary-light);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            margin-bottom: 0.5rem;
        }
        .stars .star {
            transition: color 0.2s;
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--accent-warm);
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
            color: var(--text-dim);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 0.9rem;
            border-radius: 6px;
            border: 1px solid var(--border-color);
            background-color: rgba(255,255,255,0.08);
            color: var(--text-light);
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to right, var(--primary-medium), var(--primary-light));
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            margin-top: 0.5rem;
        }
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        footer {
            background-color: #0a0e0b;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
            border-top: 2px solid var(--accent-earth);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        friend-link {
            display: block;
            background-color: rgba(255,255,255,0.05);
            padding: 1rem;
            margin-bottom: 0.8rem;
            border-radius: 6px;
            transition: background-color 0.3s;
        }
        friend-link:hover {
            background-color: rgba(212, 175, 55, 0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-dim);
            font-size: 0.9rem;
        }
        .update-time {
            background-color: rgba(212, 175, 55, 0.15);
            padding: 0.8rem;
            border-radius: 6px;
            text-align: center;
            margin: 2rem 0;
            font-weight: 600;
            color: var(--accent-warm);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border-color), transparent);
            margin: 2.5rem 0;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            article { padding: 1.5rem; }
            .main-content { gap: 2rem; }
        }
