        * { 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: #e6e6e6;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        img { max-width: 100%; height: auto; display: block; }
        a { color: #f0b42d; text-decoration: none; transition: color 0.3s ease, text-shadow 0.3s ease; }
        a:hover { color: #ffd700; text-shadow: 0 0 8px rgba(240, 180, 45, 0.7); }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #f0b42d;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(to right, #f0b42d, #b8860b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .my-logo:hover { transform: scale(1.02); }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .main-nav a:hover { background: rgba(240, 180, 45, 0.1); }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0b42d;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a { color: #ccc; }
        .breadcrumb span { color: #f0b42d; }
        .search-section {
            background: rgba(30, 30, 40, 0.8);
            padding: 25px 0;
            margin: 20px 0;
            border-radius: 10px;
            text-align: center;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid #444;
            border-right: none;
            border-radius: 50px 0 0 50px;
            background: #222;
            color: #fff;
            font-size: 1rem;
        }
        .search-button {
            padding: 0 25px;
            background: linear-gradient(to right, #f0b42d, #b8860b);
            color: #000;
            border: none;
            border-radius: 0 50px 50px 0;
            font-weight: bold;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .search-button:hover { opacity: 0.9; }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        @media (max-width: 992px) {
            .content-area { grid-template-columns: 1fr; }
        }
        .article-main {
            background: rgba(20, 20, 30, 0.8);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 2.8rem;
            color: #f0b42d;
            margin-bottom: 25px;
            line-height: 1.2;
            border-left: 5px solid #f0b42d;
            padding-left: 20px;
        }
        h2 {
            font-size: 2rem;
            color: #e6e6e6;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #333;
        }
        h3 {
            font-size: 1.6rem;
            color: #d4d4d4;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: #ccc;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: #bbb;
            background: rgba(240, 180, 45, 0.05);
            padding: 20px;
            border-left: 4px solid #f0b42d;
            margin-bottom: 30px;
        }
        strong { color: #f0b42d; font-weight: 700; }
        em { color: #aaa; }
        blockquote {
            border-left: 4px solid #b8860b;
            padding-left: 20px;
            margin: 25px 0;
            font-style: italic;
            color: #ccc;
            background: rgba(184, 134, 11, 0.05);
            padding: 20px;
        }
        .article-image {
            margin: 30px auto;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid #444;
            max-width: 800px;
        }
        .article-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .article-image img:hover { transform: scale(1.03); }
        .caption {
            text-align: center;
            font-size: 0.9rem;
            color: #888;
            padding: 10px;
            background: rgba(0,0,0,0.3);
        }
        .sidebar {
            background: rgba(25, 25, 35, 0.8);
            border-radius: 15px;
            padding: 25px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget-title {
            font-size: 1.4rem;
            color: #f0b42d;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #444;
        }
        .comment-form, .rating-form {
            background: rgba(40, 40, 50, 0.8);
            padding: 25px;
            border-radius: 10px;
            margin-top: 40px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            color: #ccc;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            background: #222;
            border: 1px solid #555;
            border-radius: 6px;
            color: #fff;
            font-size: 1rem;
        }
        textarea { min-height: 150px; resize: vertical; }
        .submit-button {
            background: linear-gradient(to right, #f0b42d, #b8860b);
            color: #000;
            border: none;
            padding: 15px 30px;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            font-size: 1.1rem;
            transition: transform 0.2s;
        }
        .submit-button:hover { transform: translateY(-2px); }
        .stars {
            display: flex;
            gap: 10px;
            margin: 10px 0;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active { color: #ffd700; }
        .site-footer {
            background: rgba(10, 10, 15, 0.95);
            border-top: 2px solid #333;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-logo {
            font-size: 2rem;
            margin-bottom: 15px;
        }
        .footer-nav ul {
            list-style: none;
            line-height: 2.5;
        }
        friend-link {
            display: block;
            padding: 8px 0;
            border-bottom: 1px dotted #444;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #444;
            color: #888;
            font-size: 0.9rem;
        }
        .update-time {
            color: #f0b42d;
            font-weight: bold;
            margin: 20px 0;
            padding: 10px;
            background: rgba(240, 180, 45, 0.05);
            border-radius: 6px;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background: rgba(10, 10, 15, 0.98);
                padding: 20px;
                transition: left 0.3s ease;
                border-top: 1px solid #333;
            }
            .main-nav.active { left: 0; }
            .main-nav ul {
                flex-direction: column;
                gap: 15px;
            }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .article-main { padding: 25px; }
            .content-area { gap: 25px; }
        }
