        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0a0f;
            color: #e0e0e0;
            line-height: 1.7;
            background-image: linear-gradient(rgba(15, 15, 25, 0.95), rgba(5, 5, 15, 0.98)), url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMzAgMTVMMTUgMzBMMzAgNDVMNDUgMzB6IiBzdHJva2U9IiMxMTIyNDQiIHN0cm9rZS13aWR0aD0iMC41IiBmaWxsPSJub25lIi8+PC9zdmc+');
        }
        a {
            color: #c8a85a;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #f4d03f;
            text-shadow: 0 0 8px rgba(244, 208, 63, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 5px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(20, 20, 35, 0.95);
            border-bottom: 2px solid #3a2c1a;
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.5rem;
            font-weight: bold;
            background: linear-gradient(to right, #c8a85a, #8b6914);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background: rgba(200, 168, 90, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #c8a85a;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
            border-bottom: 1px solid #222;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #c8a85a;
        }
        .breadcrumb i {
            margin: 0 0.5rem;
        }
        .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: rgba(30, 30, 45, 0.7);
            padding: 2.5rem;
            border-radius: 12px;
            border-left: 5px solid #c8a85a;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 3.2rem;
            color: #f0e6d2;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px #000;
            border-bottom: 3px double #c8a85a;
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #d4af37;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #444;
        }
        h3 {
            font-size: 1.7rem;
            color: #e6d4a5;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #b8a87c;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: #ccc;
            background: rgba(50, 40, 20, 0.2);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid #8b6914;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(200,168,90,0.1), transparent);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
            border-left: 4px solid #c8a85a;
        }
        b, strong {
            color: #f0e6d2;
            font-weight: 700;
        }
        em {
            color: #b8a87c;
            font-style: italic;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 3px;
        }
        hr {
            border: none;
            height: 1px;
            background: linear-gradient(to right, transparent, #c8a85a, transparent);
            margin: 3rem 0;
        }
        .feature-img {
            width: 100%;
            margin: 2.5rem auto;
            border: 3px solid #3a2c1a;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #999;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .sidebar {
            background: rgba(25, 25, 40, 0.8);
            padding: 1.8rem;
            border-radius: 12px;
            border-right: 4px solid #8b6914;
            align-self: start;
            position: sticky;
            top: 140px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            font-size: 1.4rem;
            color: #d4af37;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #444;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.9rem;
            background: #1a1a2e;
            border: 1px solid #444;
            border-right: none;
            border-radius: 6px 0 0 6px;
            color: #eee;
        }
        .search-btn {
            background: #8b6914;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: #c8a85a;
        }
        .rating-form, .comment-form {
            background: rgba(40, 35, 25, 0.3);
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 1rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffd700;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            color: #ccc;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.9rem;
            background: #1a1a2e;
            border: 1px solid #444;
            border-radius: 6px;
            color: #eee;
            font-size: 1rem;
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to right, #8b6914, #c8a85a);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            display: block;
            width: 100%;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #c8a85a, #f4d03f);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(200, 168, 90, 0.4);
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            padding: 0.8rem 0;
            border-bottom: 1px dashed #333;
        }
        .link-list li:last-child {
            border-bottom: none;
        }
        .link-list a {
            display: block;
            padding: 0.5rem;
            border-radius: 4px;
        }
        .link-list a:hover {
            background: rgba(200, 168, 90, 0.1);
        }
        .site-footer {
            background: #11111a;
            border-top: 2px solid #3a2c1a;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        friend-link {
            display: block;
            background: rgba(60, 50, 30, 0.3);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1rem 0;
            border: 1px solid #555;
        }
        friend-link a {
            font-weight: bold;
            font-size: 1.1rem;
        }
        .copyright {
            text-align: center;
            color: #777;
            font-size: 0.9rem;
            padding-top: 1.5rem;
            border-top: 1px solid #222;
        }
        .update-time {
            color: #c8a85a;
            font-style: italic;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px dashed #444;
            text-align: right;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(20, 20, 35, 0.98);
                padding: 1rem;
                border-top: 1px solid #3a2c1a;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .main-nav.active ul {
                display: flex;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            article {
                padding: 1.5rem;
            }
            .sidebar {
                position: static;
                top: auto;
            }
        }
        @media print {
            body {
                background: white;
                color: black;
            }
            .site-header, .sidebar, .site-footer, .search-form, .rating-form, .comment-form, .hamburger {
                display: none;
            }
            .main-content {
                grid-template-columns: 1fr;
            }
            a {
                color: black;
                text-decoration: underline;
            }
        }
