        * { 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: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #4a6fa5; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #ff6b6b; }
        img { max-width: 100%; height: auto; display: block; }
        .site-header {
            background: linear-gradient(to right, #2c3e50, #4a6fa5);
            color: white;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffd166;
            font-family: 'Comic Sans MS', cursive, sans-serif;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .logo a:hover { color: #fff; }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-desktop a {
            color: #ecf0f1;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            color: #ffd166;
        }
        .nav-mobile { display: none; }
        .hamburger {
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .mobile-menu {
            display: none;
            flex-direction: column;
            background: #2c3e50;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .mobile-menu.active { display: flex; }
        .mobile-menu a {
            color: white;
            padding: 1rem;
            border-bottom: 1px solid #4a6fa5;
        }
        .mobile-menu a:hover { background-color: #4a6fa5; }
        .breadcrumb {
            background: #e8eeff;
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }
        .breadcrumb a { color: #4a6fa5; }
        .breadcrumb span { color: #7b8a8b; }
        .main-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            width: 100%;
            flex: 1;
        }
        @media (max-width: 992px) {
            .main-container { grid-template-columns: 1fr; }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        h1 {
            color: #2c3e50;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            border-bottom: 4px solid #ffd166;
            padding-bottom: 0.5rem;
        }
        h2 {
            color: #4a6fa5;
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            padding-left: 10px;
            border-left: 5px solid #ff6b6b;
        }
        h3 {
            color: #2c3e50;
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: #555;
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: #fff9e6;
            border-left: 4px solid #ffd166;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-img {
            width: 100%;
            border-radius: 10px;
            margin: 2rem auto;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border: 3px solid #4a6fa5;
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .link-list a {
            display: block;
            background: #f8f9fa;
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid #dee2e6;
        }
        .link-list a:hover {
            background: #e9ecef;
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            font-size: 1.4rem;
            color: #4a6fa5;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #ffd166;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
        }
        button {
            background: linear-gradient(to right, #4a6fa5, #2c3e50);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(74, 111, 165, 0.4);
        }
        .stars {
            display: flex;
            justify-content: space-around;
            font-size: 1.8rem;
            color: #ffd166;
            cursor: pointer;
        }
        .update-time {
            font-size: 0.9rem;
            color: #7b8a8b;
            text-align: center;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }
        .site-footer {
            background: #2c3e50;
            color: #ecf0f1;
            padding: 3rem 2rem 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-section h4 {
            color: #ffd166;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            color: #bdc3c7;
        }
        friend-link a:hover {
            color: #ffd166;
            padding-left: 5px;
            transition: all 0.3s;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid #4a6fa5;
            font-size: 0.9rem;
            color: #95a5a6;
        }
        @media (max-width: 768px) {
            .header-container { flex-direction: column; gap: 1rem; }
            .nav-desktop { display: none; }
            .nav-mobile { display: block; }
            .main-container { padding: 0 1rem; }
            article, .sidebar { padding: 1.5rem; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
        }
