* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #1e3a8a;
            --secondary: #dc2626;
            --accent: #f59e0b;
            --light: #f8fafc;
            --dark: #0f172a;
            --gray: #64748b;
            --transition: all 0.3s ease;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --radius: 8px;
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary), #1e40af);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: var(--accent);
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: var(--radius);
        }
        nav a:hover, nav a.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: var(--accent);
        }
        .breadcrumb {
            background-color: #e2e8f0;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-top: 0.5rem;
            border-radius: 4px;
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb span {
            color: var(--dark);
            margin: 0 5px;
        }
        main {
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        h1 {
            color: var(--primary);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--accent);
            padding-bottom: 0.5rem;
        }
        h2 {
            color: var(--secondary);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-top: 1rem;
            border-top: 1px dashed var(--gray);
        }
        h3 {
            color: var(--primary);
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: var(--dark);
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary);
            background-color: #eff6ff;
            padding: 1.2rem;
            border-left: 4px solid var(--accent);
            border-radius: 0 var(--radius) var(--radius) 0;
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: #fef3c7;
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: 600;
        }
        b, strong {
            color: var(--primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 2rem auto;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border: 5px solid white;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            margin-top: -1.5rem;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }
        ul, ol {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .content-link {
            background-color: #f1f5f9;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            border: 1px solid #cbd5e1;
        }
        .content-link:hover {
            background-color: #e2e8f0;
            border-color: var(--primary);
        }
        .quote {
            border-left: 4px solid var(--secondary);
            padding: 1.5rem;
            background-color: #fef2f2;
            font-style: italic;
            margin: 2rem 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .update-time {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-top: 0;
            color: var(--secondary);
            border-bottom: 2px solid var(--accent);
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid #cbd5e1;
            border-radius: var(--radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.2);
        }
        button, .btn {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        button:hover, .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 0.5rem 0;
            justify-content: center;
        }
        .stars i {
            color: #e2e8f0;
            cursor: pointer;
            font-size: 1.5rem;
            transition: var(--transition);
        }
        .stars i:hover, .stars i.active {
            color: var(--accent);
        }
        .related-links ul {
            list-style: none;
            margin-left: 0;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dotted #e2e8f0;
        }
        .related-links a {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .related-links i {
            color: var(--secondary);
        }
        footer {
            background-color: var(--dark);
            color: #cbd5e1;
            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;
        }
        .footer-section h3 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent);
            display: inline-block;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.6rem;
        }
        .footer-links a {
            color: #94a3b8;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: inline-block;
            background-color: #334155;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            margin-right: 0.8rem;
            margin-bottom: 0.8rem;
            transition: var(--transition);
        }
        friend-link:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #334155;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            article {
                padding: 1.8rem;
            }
            h1 {
                font-size: 2.4rem;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .mobile-toggle {
                display: block;
                position: absolute;
                top: 1.2rem;
                right: 20px;
            }
            nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            nav.active {
                max-height: 500px;
                margin-top: 1rem;
            }
            nav ul {
                flex-direction: column;
                gap: 0.5rem;
            }
            nav a {
                display: block;
                padding: 0.8rem;
                background-color: rgba(255, 255, 255, 0.05);
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
        }
