:root {
            --primary-color: #1a365d;
            --secondary-color: #e53e3e;
            --accent-color: #d69e2e;
            --text-color: #2d3748;
            --light-bg: #f7fafc;
            --border-color: #e2e8f0;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            color: var(--text-color);
            background-color: var(--light-bg);
            line-height: 1.6;
            max-width: 100%;
            overflow-x: hidden;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, #2d3748 100%);
            color: white;
            padding: 1rem 2rem;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo span {
            color: var(--accent-color);
        }
        .my-logo:hover {
            transform: scale(1.02);
            transition: transform 0.3s ease;
        }
        .main-nav {
            display: flex;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .main-nav a:hover, .main-nav a:focus {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #edf2f7;
            padding: 0.75rem 2rem;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .container {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 1.5rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        main {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .widget {
            background-color: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        h1 {
            color: var(--primary-color);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 0.5rem;
        }
        h2 {
            color: var(--secondary-color);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-top: 1rem;
        }
        h3 {
            color: var(--primary-color);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: #4a5568;
            font-size: 1.2rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        strong {
            color: var(--primary-color);
            font-weight: 700;
        }
        em {
            color: var(--secondary-color);
            font-style: italic;
        }
        a.content-link {
            color: var(--secondary-color);
            text-decoration: none;
            border-bottom: 1px dotted var(--secondary-color);
            font-weight: 600;
        }
        a.content-link:hover {
            border-bottom-style: solid;
            background-color: #fff5f5;
        }
        .highlight {
            background: linear-gradient(120deg, #fed7d7 0%, #fed7d7 100%);
            padding: 0.2rem 0.4rem;
            border-radius: 3px;
        }
        .update-time {
            background-color: #e6fffa;
            padding: 1rem;
            border-left: 4px solid #38b2ac;
            margin: 2rem 0;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .article-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 1.5rem 0;
            border: 5px solid var(--border-color);
            transition: transform 0.5s ease;
        }
        .article-img:hover {
            transform: scale(1.005);
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .search-form input, .comment-form input, .comment-form textarea, .rating-form select {
            padding: 0.8rem;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        button, .btn {
            background: linear-gradient(to right, var(--secondary-color), #c53030);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
            display: inline-block;
        }
        button:hover, .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(229, 62, 62, 0.2);
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: #d69e2e;
            margin: 0.5rem 0;
        }
        .star {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .star:hover {
            transform: scale(1.2);
        }
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 3rem 2rem 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-section h3 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid var(--accent-color);
            padding-bottom: 0.5rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            color: #cbd5e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        friend-link a:hover {
            color: white;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #4a5568;
            font-size: 0.9rem;
            color: #a0aec0;
        }
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 0;
            }
            .main-nav.active {
                display: flex;
            }
            .main-nav a {
                padding: 0.8rem;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 2rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            main, .widget {
                padding: 1.5rem;
            }
        }
