        * { 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%, #e4edf5 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #d35400; text-decoration: none; transition: color 0.3s, transform 0.2s; }
        a:hover { color: #a84300; transform: translateY(-1px); }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(90deg, #2c3e50, #4a6491);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(to right, #f39c12, #e74c3c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover { transform: scale(1.05); }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            color: #ecf0f1;
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover { border-bottom-color: #f39c12; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            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);
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            color: #ecf0f1;
            padding: 0.8rem;
            border-bottom: 1px solid #34495e;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: #f8f9fa;
            border-bottom: 1px solid #dee2e6;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #6c757d; }
        .breadcrumb a:hover { color: #d35400; }
        .search-box {
            max-width: 500px;
            margin: 2rem auto;
            padding: 0 1rem;
        }
        .search-form {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1rem;
            outline: none;
        }
        .search-btn {
            background: linear-gradient(to right, #e74c3c, #f39c12);
            color: white;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-weight: bold;
        }
        .search-btn:hover { opacity: 0.9; }
        main { flex-grow: 1; }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-wrapper { grid-template-columns: 1fr; }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        h1 {
            font-size: 2.8rem;
            color: #2c3e50;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid #f39c12;
            padding-left: 1rem;
        }
        @media (max-width: 768px) { h1 { font-size: 2.2rem; } }
        h2 {
            font-size: 2rem;
            color: #34495e;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #ecf0f1;
        }
        h3 { font-size: 1.5rem; color: #2c3e50; margin: 2rem 0 1rem; }
        h4 { font-size: 1.2rem; color: #7f8c8d; margin: 1.5rem 0 0.8rem; }
        p { margin-bottom: 1.5rem; text-align: justify; }
        .lead {
            font-size: 1.2rem;
            color: #5a6268;
            font-weight: 500;
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid #3498db;
        }
        .highlight {
            background: linear-gradient(120deg, #ffeaa7 0%, #ffeaa7 100%);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .feature-img {
            width: 100%;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: transform 0.5s;
        }
        .feature-img:hover { transform: scale(1.008); }
        .link-list {
            background: #f1f8ff;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .link-list li { margin-bottom: 0.8rem; list-style: none; }
        .link-list li:before { content: "➤"; color: #e74c3c; margin-right: 10px; }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget { margin-bottom: 2.5rem; }
        .widget-title {
            font-size: 1.3rem;
            color: #2c3e50;
            padding-bottom: 0.7rem;
            margin-bottom: 1.2rem;
            border-bottom: 3px solid #f39c12;
        }
        .rating-widget form, .comment-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .star-rating .star:hover,
        .star-rating .star:hover ~ .star { color: #ddd; }
        .star-rating .active { color: #f39c12; }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            width: 100%;
        }
        .submit-btn {
            background: linear-gradient(to right, #27ae60, #2ecc71);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .submit-btn:hover { opacity: 0.9; }
        .update-time {
            font-size: 0.9rem;
            color: #7f8c8d;
            text-align: center;
            padding: 1rem;
            background: #f8f9fa;
            border-radius: 8px;
        }
        .site-footer {
            background: #2c3e50;
            color: #ecf0f1;
            padding: 3rem 0 2rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-title {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: #f39c12;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
            color: #bdc3c7;
            padding: 0.5rem 0;
            border-bottom: 1px dotted #4a5a6d;
        }
        friend-link a { color: #bdc3c7; }
        friend-link a:hover { color: #f39c12; }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #4a5a6d;
            color: #95a5a6;
            font-size: 0.9rem;
        }
