:root {
            --primary-dark: #0c0c14;
            --primary-red: #8b0000;
            --primary-gold: #d4af37;
            --primary-stone: #c0c0c0;
            --secondary-forest: #1a472a;
            --secondary-sand: #e6d3a7;
            --text-light: #f5f5f5;
            --text-dim: #b8b8b8;
            --bg-card: rgba(28, 28, 40, 0.85);
            --border-subtle: rgba(212, 175, 55, 0.3);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            background-image: linear-gradient(rgba(12, 12, 20, 0.97), rgba(12, 12, 20, 0.97)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="%231a472a" opacity="0.03"/></svg>');
            background-attachment: fixed;
        }
        a {
            color: var(--primary-gold);
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffdd40;
            text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to bottom, var(--primary-dark) 70%, transparent);
            padding: 1.5rem 0;
            border-bottom: 1px solid var(--border-subtle);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(90deg, var(--primary-gold), var(--primary-stone));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }
        .my-logo:hover {
            background: linear-gradient(90deg, #ffdd40, #ffffff);
            -webkit-background-clip: text;
            background-clip: text;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-red);
            transition: width 0.3s ease;
        }
        .main-nav a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--primary-gold);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-dim);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .breadcrumb a {
            color: var(--text-dim);
        }
        .breadcrumb a:hover {
            color: var(--primary-gold);
        }
        .main-content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        @media (max-width: 992px) {
            .main-content-area {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: var(--bg-card);
            border-radius: 10px;
            padding: 2.5rem;
            border: 1px solid var(--border-subtle);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1, h2, h3, h4 {
            font-family: Georgia, 'Times New Roman', Times, serif;
            color: var(--primary-gold);
            margin-top: 2rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid var(--primary-red);
            padding-bottom: 1rem;
            text-align: center;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--secondary-forest);
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--primary-stone);
        }
        h4 {
            font-size: 1.4rem;
            color: var(--text-dim);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .intro {
            font-size: 1.2rem;
            color: var(--text-light);
            background: rgba(26, 71, 42, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
            border-left: 4px solid var(--primary-gold);
        }
        .highlight {
            background: rgba(139, 0, 0, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
            border: 1px dashed var(--primary-red);
        }
        .map-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border: 3px solid var(--primary-gold);
            border-radius: 5px;
            margin: 2rem auto;
            display: block;
            box-shadow: 0 5px 20px rgba(0,0,0,0.7);
            transition: transform 0.5s ease;
        }
        .map-image:hover {
            transform: scale(1.01);
        }
        figcaption {
            text-align: center;
            font-style: italic;
            color: var(--text-dim);
            margin-top: 0.5rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: var(--bg-card);
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px solid var(--border-subtle);
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            border-bottom: 1px solid var(--border-subtle);
            padding-bottom: 0.8rem;
            margin-bottom: 1.2rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            background: rgba(255,255,255,0.07);
            border: 1px solid var(--border-subtle);
            border-right: none;
            border-radius: 5px 0 0 5px;
            color: var(--text-light);
        }
        .search-form button {
            background: var(--primary-red);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #a30000;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: var(--primary-gold);
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars span {
            margin: 0 2px;
            transition: color 0.2s, transform 0.2s;
        }
        .stars span:hover,
        .stars span.active {
            color: #ffdd40;
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 1rem;
            background: rgba(255,255,255,0.07);
            border: 1px solid var(--border-subtle);
            border-radius: 5px;
            color: var(--text-light);
            resize: vertical;
            margin-bottom: 1rem;
        }
        .comment-form button {
            background: var(--secondary-forest);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: #2e7d32;
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            padding: 0.7rem 0;
            border-bottom: 1px dotted rgba(255,255,255,0.1);
        }
        .link-list li:last-child {
            border-bottom: none;
        }
        .site-footer {
            background: rgba(10, 10, 18, 0.95);
            border-top: 1px solid var(--border-subtle);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        friend-link {
            display: block;
            padding: 0.5rem 0;
            color: var(--text-dim);
        }
        friend-link a {
            color: var(--text-dim);
        }
        friend-link a:hover {
            color: var(--primary-gold);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.05);
            color: var(--text-dim);
            font-size: 0.9rem;
        }
        .update-time {
            color: var(--primary-gold);
            font-weight: bold;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: var(--primary-dark);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                gap: 1.5rem;
                border-bottom: 2px solid var(--primary-red);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.4s ease;
                z-index: 999;
            }
            .main-nav.active ul {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article, .widget {
                padding: 1.5rem;
            }
        }
