* {
            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;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        body {
            background-color: #ffffff;
            color: #333;
            line-height: 1.7;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        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: 1.2rem 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: 2.2rem;
            font-weight: 900;
            letter-spacing: -1px;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: var(--accent);
        }
        .my-logo span {
            background: linear-gradient(90deg, #fbbf24, #dc2626);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .nav-links a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-links a:hover {
            color: var(--accent);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: width 0.3s;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background-color: #e2e8f0;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-top: 5px;
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb span {
            color: var(--dark);
        }
        .hero {
            background: linear-gradient(rgba(30, 58, 138, 0.85), rgba(30, 58, 138, 0.9)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            padding: 4rem 2rem;
            text-align: center;
            border-radius: 0 0 20px 20px;
            margin-bottom: 2.5rem;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1.2rem;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }
        .search-box {
            max-width: 700px;
            margin: 2rem auto 0;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        .search-box input {
            flex: 1;
            padding: 1.2rem 1.8rem;
            border: none;
            font-size: 1.1rem;
        }
        .search-box button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0 2.5rem;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #b91c1c;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0 4rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        .update-time {
            background: #f0f9ff;
            padding: 1rem;
            border-left: 5px solid var(--primary);
            margin-bottom: 2.5rem;
            font-style: italic;
            color: var(--gray);
        }
        .article-content h2 {
            color: var(--primary);
            font-size: 2.2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--accent);
        }
        .article-content h3 {
            color: var(--dark);
            font-size: 1.7rem;
            margin: 2rem 0 1rem;
        }
        .article-content h4 {
            color: var(--gray);
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content strong {
            color: var(--primary);
            font-weight: 800;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            border-left: 6px solid var(--accent);
            padding: 1.8rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .img-float {
            float: right;
            margin: 0 0 1.5rem 2rem;
            max-width: 50%;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        @media (max-width: 768px) {
            .img-float {
                float: none;
                max-width: 100%;
                margin: 1.5rem 0;
            }
        }
        .link-list {
            background: #f1f5f9;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2.5rem 0;
        }
        .link-list ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .link-list li {
            padding: 0.5rem 0;
            border-bottom: 1px dashed #cbd5e1;
        }
        .link-list li:last-child {
            border-bottom: none;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            padding: 1.8rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        .widget h3 {
            color: var(--primary);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e2e8f0;
        }
        .rating-form label, .comment-form label {
            display: block;
            margin: 1rem 0 0.5rem;
            font-weight: 600;
        }
        .rating-form input, .rating-form textarea, .comment-form input, .comment-form textarea {
            width: 100%;
            padding: 0.9rem;
            border: 1px solid #cbd5e1;
            border-radius: 8px;
            font-size: 1rem;
        }
        .rating-form button, .comment-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            margin-top: 1rem;
            width: 100%;
            transition: background 0.3s;
        }
        .rating-form button:hover, .comment-form button:hover {
            background: #1e40af;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .stars i {
            color: #d1d5db;
            cursor: pointer;
            font-size: 1.8rem;
            transition: color 0.2s;
        }
        .stars i:hover, .stars i.active {
            color: #fbbf24;
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2.5rem;
        }
        .footer-section h3 {
            color: var(--accent);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            margin-bottom: 0.8rem;
            border-radius: 8px;
            transition: all 0.3s;
        }
        friend-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 20px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
                gap: 0;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                width: 100%;
                padding: 0.8rem 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .search-box {
                flex-direction: column;
                border-radius: 15px;
            }
            .search-box input, .search-box button {
                width: 100%;
                border-radius: 0;
                padding: 1rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .article-content h2 {
                font-size: 1.9rem;
            }
        }
