        * {
            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.8;
            color: #e0d3b8;
            background: linear-gradient(135deg, #0c0c14 0%, #1a1a2a 50%, #0f0f1a 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .site-header {
            background: rgba(20, 15, 30, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #5d4a2a;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #d4af37, #b8941f, #ffd700);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            text-shadow: 0 2px 5px rgba(0,0,0,0.7);
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #c0b283;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: rgba(212, 175, 55, 0.1);
            color: #ffd700;
            border-color: #5d4a2a;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #d4af37;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background: rgba(30, 25, 45, 0.7);
            font-size: 0.9rem;
            color: #b0a070;
        }
        .breadcrumb a {
            color: #d4c097;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
            color: #ffd700;
        }
        .breadcrumb span {
            margin: 0 0.5rem;
            color: #777;
        }
        .search-container {
            padding: 2rem;
            text-align: center;
            background: rgba(15, 12, 24, 0.6);
            margin: 1rem auto;
            max-width: 800px;
            border-radius: 12px;
            border: 1px solid #3a2e50;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input[type="search"] {
            flex-grow: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid #5d4a2a;
            border-radius: 8px 0 0 8px;
            background: #1e182c;
            color: #f0e6d2;
            font-size: 1rem;
        }
        .search-form button {
            background: linear-gradient(to bottom, #5d4a2a, #3d2e1a);
            color: #ffd700;
            border: none;
            padding: 0 1.8rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        .search-form button:hover {
            background: linear-gradient(to bottom, #6d5a3a, #4d3e2a);
        }
        .container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
        }
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
            }
        }
        main {
            background: rgba(25, 20, 40, 0.85);
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #443322;
        }
        .sidebar {
            background: rgba(30, 25, 45, 0.9);
            border-radius: 16px;
            padding: 2rem;
            border: 1px solid #554433;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: #d4af37;
            border-bottom: 2px solid #5d4a2a;
            padding-bottom: 0.7rem;
            margin-bottom: 1.5rem;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li {
            margin-bottom: 1rem;
        }
        .sidebar a {
            color: #c0b283;
            text-decoration: none;
            display: block;
            padding: 0.7rem;
            border-radius: 6px;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }
        .sidebar a:hover {
            background: rgba(212, 175, 55, 0.1);
            border-left-color: #d4af37;
            color: #ffd700;
            padding-left: 1rem;
        }
        h1, h2, h3, h4 {
            font-family: 'Cinzel', serif;
            color: #e6d5a8;
            margin-top: 2.5rem;
            margin-bottom: 1.2rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffd700;
            text-align: center;
            border-bottom: 3px double #5d4a2a;
            padding-bottom: 1.5rem;
            margin-top: 0;
        }
        h2 {
            font-size: 2.2rem;
            color: #e6c068;
            border-left: 5px solid #d4af37;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #d4c097;
        }
        h4 {
            font-size: 1.4rem;
            color: #c0b283;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        strong {
            color: #ffd700;
            font-weight: 700;
        }
        em {
            color: #b8941f;
        }
        .lead {
            font-size: 1.3rem;
            color: #f0e6d2;
            background: rgba(93, 74, 42, 0.2);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid #d4af37;
            margin-bottom: 2.5rem;
        }
        .update-time {
            text-align: right;
            font-style: italic;
            color: #a09060;
            font-size: 0.95rem;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px dashed #5d4a2a;
        }
        .content-link {
            color: #d4af37;
            text-decoration: none;
            border-bottom: 1px dotted #b8941f;
            padding-bottom: 1px;
            transition: all 0.2s ease;
        }
        .content-link:hover {
            color: #ffefaa;
            border-bottom-style: solid;
            text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
        }
        .article-img {
            margin: 2.5rem auto;
            max-width: 800px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
            border: 2px solid #5d4a2a;
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: #b0a070;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .interactive-section {
            background: rgba(35, 30, 50, 0.9);
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid #665544;
        }
        .interactive-section h3 {
            margin-top: 0;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars label:hover,
        .rating-stars label:hover ~ label,
        .rating-stars input:checked ~ label {
            color: #ffd700;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #d4c097;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.9rem;
            border-radius: 6px;
            border: 1px solid #5d4a2a;
            background: #1e182c;
            color: #f0e6d2;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to bottom, #5d4a2a, #3d2e1a);
            color: #ffd700;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .submit-btn:hover {
            background: linear-gradient(to bottom, #6d5a3a, #4d3e2a);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
        }
        .site-footer {
            background: rgba(15, 12, 24, 0.95);
            margin-top: 4rem;
            padding: 3rem 2rem;
            border-top: 3px solid #5d4a2a;
            text-align: center;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .friend-links a {
            color: #c0b283;
            text-decoration: none;
            padding: 0.7rem 1.2rem;
            border: 1px solid #5d4a2a;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        .friend-links a:hover {
            background: rgba(212, 175, 55, 0.1);
            color: #ffd700;
            transform: translateY(-3px);
        }
        .copyright {
            color: #888;
            font-size: 0.9rem;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
        }
        @media (max-width: 768px) {
            .site-header {
                padding: 1rem;
                flex-direction: column;
                align-items: stretch;
            }
            .my-logo {
                align-self: flex-start;
                margin-bottom: 1rem;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.2rem;
                right: 1rem;
            }
            .main-nav {
                width: 100%;
                display: none;
            }
            .main-nav.active {
                display: block;
                margin-top: 1rem;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0.5rem;
            }
            .main-nav li {
                width: 100%;
            }
            .container {
                padding: 1rem;
                gap: 1.5rem;
            }
            main, .sidebar {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input[type="search"] {
                border-radius: 8px;
                margin-bottom: 0.5rem;
            }
            .search-form button {
                border-radius: 8px;
                padding: 0.9rem;
            }
            .sidebar {
                position: static;
            }
        }
