        * { 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%, #f0e6d6 100%);
            min-height: 100vh;
            padding-bottom: 20px;
        }
        a { color: #9c2e2e; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #6a1a1a; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        .site-header {
            background: linear-gradient(to right, #1a1a2e, #16213e);
            color: #fff;
            padding: 1rem 5%;
            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;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffcc00;
            text-decoration: none;
            font-family: 'Georgia', serif;
            letter-spacing: 1px;
            background: linear-gradient(45deg, #ffcc00, #ff9900);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .my-logo:hover { text-decoration: none; }
        .nav-desktop { display: flex; gap: 2rem; }
        .nav-desktop a {
            color: #e6e6e6;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: #ffcc00;
            bottom: 0;
            left: 0;
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #16213e;
            width: 100%;
            padding: 1rem;
            margin-top: 1rem;
            border-radius: 8px;
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            color: #e6e6e6;
            padding: 0.8rem;
            border-bottom: 1px solid #2a3b5c;
        }
        .nav-mobile a:last-child { border-bottom: none; }
        .breadcrumb {
            padding: 1rem 5%;
            background: #f8f5f0;
            font-size: 0.9rem;
            border-bottom: 1px solid #e0d6c9;
        }
        .breadcrumb a { color: #666; }
        .breadcrumb span { color: #9c2e2e; }
        .container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 5%;
        }
        .main-article {
            background: #fff;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        .article-header { margin-bottom: 2.5rem; border-bottom: 3px solid #ffcc00; padding-bottom: 1.5rem; }
        .article-header h1 {
            font-size: 2.8rem;
            color: #1a1a2e;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .meta-info {
            display: flex;
            gap: 2rem;
            color: #666;
            font-size: 0.95rem;
        }
        .meta-info i { margin-right: 0.5rem; color: #9c2e2e; }
        .article-content h2 {
            font-size: 2rem;
            color: #2a3b5c;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #e0d6c9;
        }
        .article-content h3 {
            font-size: 1.6rem;
            color: #444;
            margin: 2rem 0 1rem;
        }
        .article-content h4 {
            font-size: 1.3rem;
            color: #666;
            margin: 1.5rem 0 0.8rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
            color: #444;
        }
        .article-content .highlight {
            background: #fff9e6;
            border-left: 5px solid #ffcc00;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .article-content .highlight p:last-child { margin-bottom: 0; }
        .article-content strong { color: #9c2e2e; }
        .article-content em { color: #666; }
        .featured-img {
            margin: 2.5rem 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .featured-img img { width: 100%; transition: transform 0.5s; }
        .featured-img img:hover { transform: scale(1.02); }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: #fff;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.06);
        }
        .sidebar-widget h3 {
            color: #1a1a2e;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffcc00;
        }
        .search-form { display: flex; }
        .search-form input {
            flex-grow: 1;
            padding: 0.9rem;
            border: 2px solid #e0d6c9;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-form button {
            background: #9c2e2e;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover { background: #6a1a1a; }
        .comment-form, .rating-form { display: flex; flex-direction: column; gap: 1rem; }
        .comment-form textarea, .rating-form select, .comment-form input {
            width: 100%;
            padding: 0.9rem;
            border: 2px solid #e0d6c9;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
        }
        .comment-form button, .rating-form button {
            background: #2a3b5c;
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .comment-form button:hover, .rating-form button:hover { background: #1a1a2e; }
        .star-rating { display: flex; gap: 0.5rem; font-size: 1.8rem; color: #ffcc00; }
        .related-links ul { list-style: none; }
        .related-links li { margin-bottom: 0.8rem; padding-left: 1.2rem; position: relative; }
        .related-links li::before { content: '🔗'; position: absolute; left: 0; }
        .site-footer {
            background: #1a1a2e;
            color: #e6e6e6;
            padding: 3rem 5% 2rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: #ffcc00;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-section ul { list-style: none; }
        .footer-section ul li { margin-bottom: 0.8rem; }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            padding: 1.5rem;
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
            margin: 2rem 0;
        }
        friend-link a {
            color: #ffcc00;
            padding: 0.5rem 1rem;
            background: rgba(255,204,0,0.1);
            border-radius: 4px;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #2a3b5c;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            .container { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .main-article { padding: 2rem; }
            .article-header h1 { font-size: 2.2rem; }
            .meta-info { flex-direction: column; gap: 0.5rem; }
            .article-content h2 { font-size: 1.8rem; }
            .article-content h3 { font-size: 1.5rem; }
        }
        @media (max-width: 480px) {
            .main-article { padding: 1.5rem; }
            .article-header h1 { font-size: 1.8rem; }
            .sidebar-widget { padding: 1.5rem; }
        }
