:root {
            --primary-dark: #1a1a2e;
            --secondary-dark: #16213e;
            --accent-gold: #d4af37;
            --accent-red: #8b0000;
            --text-light: #f0f0f0;
            --text-gray: #b0b0b0;
            --border-color: #333;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
            --transition: all 0.3s ease;
        }
        * {
            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.6;
            color: var(--text-light);
            background-color: var(--primary-dark);
            background-image: radial-gradient(circle at 20% 30%, rgba(22, 33, 62, 0.8) 0%, transparent 50%),
                              radial-gradient(circle at 80% 70%, rgba(139, 0, 0, 0.15) 0%, transparent 50%);
            min-height: 100vh;
        }
        .site-header {
            background-color: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--accent-gold);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 0.8rem 2rem;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--accent-gold);
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
            letter-spacing: 1px;
            transition: var(--transition);
        }
        .my-logo:hover {
            color: #fff;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
        }
        .main-nav {
            display: flex;
            gap: 1.8rem;
        }
        .nav-link {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            transition: var(--transition);
            position: relative;
        }
        .nav-link:hover {
            color: var(--accent-gold);
            background-color: rgba(212, 175, 55, 0.1);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 80%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--text-light);
            border-radius: 2px;
            transition: var(--transition);
        }
        .breadcrumb {
            background-color: rgba(22, 33, 62, 0.7);
            padding: 0.8rem 2rem;
            border-bottom: 1px solid var(--border-color);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--accent-gold);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: var(--text-gray);
            margin: 0 0.5rem;
        }
        .main-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 1024px) {
            .main-container {
                grid-template-columns: 1fr;
            }
        }
        .content-area {
            background-color: rgba(22, 33, 62, 0.7);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .widget {
            background-color: rgba(22, 33, 62, 0.7);
            border-radius: 8px;
            padding: 1.5rem;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow);
        }
        .widget h3 {
            color: var(--accent-gold);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
            font-size: 1.3rem;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        h2 {
            font-size: 2.1rem;
            color: var(--accent-gold);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(212, 175, 55, 0.3);
        }
        h3 {
            font-size: 1.7rem;
            color: #f0b040;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #e0c060;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.4rem;
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-light);
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: var(--text-gray);
            margin-bottom: 2rem;
        }
        em {
            color: #f0b040;
            font-style: italic;
        }
        strong {
            color: #fff;
            font-weight: 700;
        }
        .highlight {
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
            padding: 1rem 1.5rem;
            border-left: 4px solid var(--accent-gold);
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .content-link {
            color: #6ab0f3;
            text-decoration: none;
            border-bottom: 1px dotted #6ab0f3;
            transition: var(--transition);
        }
        .content-link:hover {
            color: #8cc8ff;
            border-bottom: 1px solid #8cc8ff;
        }
        ul, ol {
            margin-left: 1.8rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.6rem;
            color: var(--text-light);
        }
        .article-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 8px;
            margin: 2rem 0;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-gray);
            margin-top: -1.5rem;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }
        .search-form {
            display: flex;
            margin-bottom: 2rem;
        }
        .search-input {
            flex: 1;
            padding: 0.9rem 1.2rem;
            background-color: rgba(255, 255, 255, 0.08);
            border: 1px solid var(--border-color);
            border-radius: 6px 0 0 6px;
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-input:focus {
            outline: none;
            border-color: var(--accent-gold);
        }
        .search-button {
            background-color: var(--accent-gold);
            color: var(--primary-dark);
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-button:hover {
            background-color: #e6c158;
        }
        .comment-section, .rating-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #555;
        }
        .rating-stars .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: var(--accent-gold);
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 0.9rem;
            margin-bottom: 1rem;
            background-color: rgba(255, 255, 255, 0.08);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-light);
            font-size: 1rem;
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-button {
            background-color: var(--accent-red);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .submit-button:hover {
            background-color: #a00000;
        }
        .related-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .link-card {
            background-color: rgba(26, 26, 46, 0.6);
            border-radius: 8px;
            padding: 1.2rem;
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }
        .link-card:hover {
            border-color: var(--accent-gold);
            transform: translateY(-3px);
        }
        .link-card a {
            color: var(--text-light);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .link-card i {
            color: var(--accent-gold);
        }
        .site-footer {
            background-color: var(--secondary-dark);
            margin-top: 4rem;
            padding: 3rem 2rem;
            border-top: 2px solid var(--accent-gold);
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
        }
        .footer-section h3 {
            color: var(--accent-gold);
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
            margin-left: 0;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            padding: 1rem;
            background-color: rgba(212, 175, 55, 0.1);
            border: 1px dashed var(--accent-gold);
            border-radius: 6px;
            margin: 1rem 0;
            color: var(--text-light);
        }
        friend-link a {
            color: var(--accent-gold);
            font-weight: 600;
            text-decoration: none;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .site-header {
                padding: 0.8rem 1rem;
            }
            .main-nav {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                flex-direction: column;
                background-color: rgba(26, 26, 46, 0.98);
                padding: 1.5rem;
                transition: left 0.3s ease;
                gap: 1rem;
                box-shadow: var(--shadow);
            }
            .main-nav.active {
                left: 0;
            }
            .hamburger {
                display: flex;
            }
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
            .main-container {
                padding: 1rem;
            }
            .content-area {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
        }
        .update-time {
            color: var(--text-gray);
            font-style: italic;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            display: block;
        }
        .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
            margin: 2rem 0;
        }
