:root {
            --primary-dark: #1a1a2e;
            --secondary-accent: #b91c1c;
            --accent-gold: #d4af37;
            --text-light: #f8f9fa;
            --text-dim: #adb5bd;
            --bg-card: #2d3047;
            --border-color: #495057;
            --spacing-unit: 1rem;
            --max-content-width: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.75;
            color: var(--text-light);
            background: linear-gradient(135deg, var(--primary-dark) 0%, #16213e 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffdd59;
            text-shadow: 0 0 8px rgba(255, 221, 89, 0.5);
        }
        .container {
            width: 100%;
            max-width: var(--max-content-width);
            margin: 0 auto;
            padding: 0 var(--spacing-unit);
        }
        .site-header {
            background-color: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--secondary-accent);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Trebuchet MS', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo:hover {
            color: #fff;
        }
        .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(--secondary-accent);
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
        }
        .breadcrumb {
            background-color: rgba(45, 48, 71, 0.7);
            padding: 0.8rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 0.5rem;
            color: var(--text-dim);
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid var(--accent-gold);
        }
        h1 {
            font-size: clamp(2.5rem, 5vw, 3.8rem);
            margin-bottom: 1rem;
            color: var(--accent-gold);
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            color: var(--text-dim);
            font-size: 0.95rem;
        }
        .update-time {
            color: var(--secondary-accent);
            font-weight: bold;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        article {
            background: rgba(45, 48, 71, 0.7);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            border: 1px solid var(--border-color);
        }
        article h2 {
            font-size: 2.2rem;
            color: var(--secondary-accent);
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed var(--border-color);
        }
        article h3 {
            font-size: 1.7rem;
            color: var(--accent-gold);
            margin: 2rem 0 1rem;
        }
        article h4 {
            font-size: 1.3rem;
            color: var(--text-light);
            margin: 1.5rem 0 0.8rem;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        article emoji {
            font-style: normal;
            margin-right: 0.3rem;
        }
        .highlight {
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            border-left: 4px solid var(--accent-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
        }
        .image-wrapper {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 800px;
        }
        .image-wrapper img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            border: 2px solid var(--border-color);
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            transition: transform 0.5s ease;
        }
        .image-wrapper img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            font-size: 0.9rem;
            color: var(--text-dim);
            margin-top: 0.5rem;
            font-style: italic;
        }
        .link-list {
            background: var(--primary-dark);
            border-radius: 8px;
            padding: 1.5rem;
            margin: 2rem 0;
        }
        .link-list h4 {
            color: var(--accent-gold);
            margin-top: 0;
        }
        .link-list ul {
            list-style-position: inside;
            columns: 2;
        }
        .link-list li {
            margin-bottom: 0.5rem;
            break-inside: avoid;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: var(--bg-card);
            border-radius: 12px;
            padding: 1.8rem;
            border: 1px solid var(--border-color);
        }
        .sidebar-widget h3 {
            color: var(--secondary-accent);
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        label {
            font-weight: 600;
            font-size: 0.95rem;
        }
        input, select, textarea {
            padding: 0.8rem 1rem;
            border-radius: 6px;
            border: 1px solid var(--border-color);
            background: rgba(255,255,255,0.05);
            color: var(--text-light);
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
        }
        button, .btn {
            background: linear-gradient(to right, var(--secondary-accent), #c53030);
            color: white;
            border: none;
            padding: 0.9rem 1.5rem;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, #c53030, var(--secondary-accent));
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(185, 28, 28, 0.4);
        }
        .stars {
            display: flex;
            justify-content: space-between;
            font-size: 1.8rem;
            color: var(--text-dim);
            margin: 0.5rem 0;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars i:hover,
        .stars i.active {
            color: var(--accent-gold);
        }
        footer {
            background-color: var(--primary-dark);
            border-top: 2px solid var(--secondary-accent);
            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;
            background: var(--bg-card);
            padding: 1rem;
            border-radius: 6px;
            margin-bottom: 0.5rem;
            border-left: 3px solid transparent;
            transition: all 0.3s ease;
        }
        friend-link:hover {
            border-left-color: var(--accent-gold);
            background: rgba(212, 175, 55, 0.05);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-dim);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .link-list ul {
                columns: 1;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background: var(--primary-dark);
                width: 100%;
                padding: 2rem;
                gap: 1rem;
                transition: left 0.4s ease;
                box-shadow: 0 10px 15px rgba(0,0,0,0.5);
                z-index: 999;
            }
            .main-nav.active ul {
                left: 0;
            }
            .header-container {
                flex-wrap: wrap;
            }
            h1 {
                font-size: 2.5rem;
            }
            article {
                padding: 1.5rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 480px) {
            .article-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
            .stars {
                font-size: 1.5rem;
            }
        }
