        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #e8e6e3;
            background-color: #0f0f13;
            background-image: radial-gradient(circle at 20% 30%, #1a1a2e 0%, #0f0f13 40%);
            min-height: 100vh;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-family: 'Georgia', serif; color: #f0b347; margin-bottom: 1rem; line-height: 1.3; }
        h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); border-left: 5px solid #a67c52; padding-left: 1rem; margin-top: 1.5rem; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-top: 3rem; padding-bottom: 0.5rem; border-bottom: 2px solid #2a2a3c; }
        h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); color: #d4af37; margin-top: 2rem; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        a { color: #c9a959; text-decoration: none; transition: color 0.3s ease, text-shadow 0.3s ease; }
        a:hover { color: #f0b347; text-shadow: 0 0 8px rgba(240, 179, 71, 0.4); }
        strong { color: #d4af37; font-weight: 700; }
        em { color: #b8b8b8; font-style: italic; }
        .highlight { background: linear-gradient(90deg, rgba(164, 124, 82, 0.2) 0%, transparent 100%); padding: 0.2rem 0.5rem; border-radius: 3px; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-content { display: grid; grid-template-columns: 1fr 300px; gap: 40px; padding: 30px 0; }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
            .sidebar { order: -1; }
        }
        .site-header {
            background: rgba(15, 15, 19, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #2a2a3c;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Georgia', serif;
            font-size: 2.2rem;
            font-weight: bold;
            background: linear-gradient(to right, #f0b347, #d4af37);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo a:hover { text-shadow: 0 0 15px rgba(240, 179, 71, 0.7); }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-desktop a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #f0b347;
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0b347;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .nav-mobile {
            display: none;
            background: #1a1a2e;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid #2a2a3c;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .nav-mobile.active { display: block; }
        .nav-mobile ul { list-style: none; }
        .nav-mobile li { margin-bottom: 1rem; }
        .nav-mobile a {
            display: block;
            padding: 0.8rem;
            border-radius: 5px;
            background: rgba(255,255,255,0.05);
        }
        .nav-mobile a:hover { background: rgba(240, 179, 71, 0.15); }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .hamburger { display: block; }
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #999;
            border-bottom: 1px solid #2a2a3c;
            margin-bottom: 2rem;
        }
        .breadcrumb a { color: #b8b8b8; }
        .breadcrumb a:hover { color: #f0b347; }
        .breadcrumb span { color: #f0b347; }
        .sidebar {
            background: rgba(26, 26, 46, 0.7);
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px solid #3a3a4c;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #3a3a4c;
            color: #d4af37;
        }
        .search-form { display: flex; }
        .search-form input[type="search"] {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            background: #1a1a2a;
            border: 1px solid #3a3a4c;
            border-radius: 5px 0 0 5px;
            color: #e8e6e3;
            font-size: 1rem;
        }
        .search-form button {
            background: #a67c52;
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover { background: #c9a959; }
        .comment-form textarea,
        .rating-form select {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            background: #1a1a2a;
            border: 1px solid #3a3a4c;
            border-radius: 5px;
            color: #e8e6e3;
            font-size: 1rem;
        }
        .comment-form button,
        .rating-form button {
            width: 100%;
            padding: 0.8rem;
            background: linear-gradient(to right, #4a6fa5, #3a5a8a);
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .comment-form button:hover,
        .rating-form button:hover { opacity: 0.9; }
        .stars { color: #f0b347; font-size: 1.2rem; margin-bottom: 0.5rem; }
        .article-content {
            background: rgba(26, 26, 46, 0.5);
            border-radius: 10px;
            padding: 2.5rem;
            border: 1px solid #3a3a4c;
        }
        .intro { font-size: 1.2rem; color: #d1d1d1; margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid #3a3a4c; }
        .featured-image {
            margin: 2rem 0;
            border-radius: 10px;
            overflow: hidden;
            border: 2px solid #a67c52;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            position: relative;
        }
        .featured-image img { width: 100%; transition: transform 0.5s ease; }
        .featured-image:hover img { transform: scale(1.03); }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #999;
            padding: 0.8rem;
            background: rgba(0,0,0,0.5);
            font-size: 0.9rem;
        }
        .content-block { margin-bottom: 3rem; }
        .tip-box {
            background: rgba(42, 42, 60, 0.7);
            border-left: 4px solid #f0b347;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 5px 5px 0;
        }
        .tip-box strong { display: block; margin-bottom: 0.5rem; font-size: 1.1rem; }
        .link-list { list-style: none; padding-left: 1.5rem; }
        .link-list li { margin-bottom: 0.8rem; position: relative; }
        .link-list li:before {
            content: '➔';
            color: #f0b347;
            position: absolute;
            left: -1.5rem;
        }
        .footer-links {
            background: #1a1a2e;
            padding: 3rem 0;
            border-top: 1px solid #2a2a3c;
            border-bottom: 1px solid #2a2a3c;
            margin-top: 4rem;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 1.2rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .web-link:hover {
            background: rgba(240, 179, 71, 0.1);
            border-color: #a67c52;
            transform: translateY(-3px);
        }
        .web-link a { font-weight: 600; }
        .site-footer {
            text-align: center;
            padding: 2.5rem 0;
            color: #999;
            font-size: 0.95rem;
        }
        .site-footer a { color: #b8b8b8; }
        .copyright { margin-top: 1rem; }
        .text-center { text-align: center; }
        .mb-3 { margin-bottom: 3rem; }
        .mt-3 { margin-top: 3rem; }
        .emoji { font-size: 1.2em; margin-right: 0.3rem; }
