        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #4a6fa5;
            --secondary: #ff6b6b;
            --accent: #51cf66;
            --dark: #2d3436;
            --light: #f8f9fa;
            --gray: #adb5bd;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #f1f3f5;
            color: #333;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        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(--dark) 0%, #1a1a2e 100%);
            color: white;
            padding: 1.5rem 0;
            box-shadow: var(--shadow);
            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, var(--secondary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: var(--accent);
            background-clip: unset;
            -webkit-background-clip: unset;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--secondary);
            transition: width 0.3s;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: var(--dark);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .mobile-nav a:hover {
            background: rgba(255, 255, 255, 0.05);
        }
        .breadcrumb {
            padding: 1rem 0;
            background: #e9ecef;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--primary);
        }
        .breadcrumb span {
            color: var(--gray);
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid var(--secondary);
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--dark);
            margin: 2.5rem 0 1.2rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary);
        }
        h3 {
            font-size: 1.6rem;
            color: #444;
            margin: 2rem 0 1rem 0;
        }
        h4 {
            font-size: 1.3rem;
            color: #555;
            margin: 1.5rem 0 0.8rem 0;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 2rem;
            padding: 1rem;
            background: #e7f5ff;
            border-radius: 8px;
        }
        .highlight {
            background: linear-gradient(120deg, #ffec99 0%, #ffec99 100%);
            padding: 0.2rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .featured-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 5px solid white;
            outline: 1px solid #eee;
        }
        .stats-box {
            background: linear-gradient(to bottom right, #d0ebff, #a5d8ff);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
            border-left: 5px solid var(--primary);
        }
        .stats-box h4 {
            color: var(--dark);
        }
        .quote {
            font-style: italic;
            font-size: 1.2rem;
            color: #555;
            border-left: 4px solid var(--accent);
            padding: 1.5rem;
            margin: 2rem 0;
            background: #f8f9fa;
        }
        .author {
            font-weight: bold;
            color: var(--dark);
            margin-top: 0.5rem;
            display: block;
        }
        .link-list {
            list-style: none;
            padding: 1.5rem;
            background: #f8f9fa;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .link-list li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .link-list li::before {
            content: '🎯';
            position: absolute;
            left: 0;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            color: var(--primary);
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #eee;
        }
        .search-box input {
            width: 100%;
            padding: 0.9rem 1rem;
            border: 2px solid #ddd;
            border-radius: 50px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-box input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.2);
        }
        .search-box button {
            width: 100%;
            margin-top: 0.8rem;
            padding: 0.9rem;
            background: linear-gradient(to right, var(--primary), #3a5a8a);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: linear-gradient(to right, #3a5a8a, #2d4568);
            transform: translateY(-2px);
        }
        .rating-widget .stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .rating-widget .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-widget .star:hover,
        .rating-widget .star.active {
            color: #ffc107;
        }
        .rating-form textarea,
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            margin-bottom: 1rem;
            resize: vertical;
            min-height: 120px;
        }
        .rating-form button,
        .comment-form button {
            padding: 0.9rem 1.8rem;
            background: linear-gradient(to right, var(--secondary), #ff5252);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background: linear-gradient(to right, #ff5252, #e53935);
            transform: translateY(-2px);
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            color: var(--accent);
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
        }
        friend-link h4 {
            color: var(--accent);
            margin-bottom: 1rem;
        }
        friend-link a {
            color: #a5d8ff;
            display: inline-block;
            margin-right: 1rem;
            margin-bottom: 0.5rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        .update-time {
            background: #fff3bf;
            padding: 0.8rem;
            border-radius: 8px;
            text-align: center;
            margin: 2rem 0;
            font-weight: 600;
            color: #5c3c00;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            article { padding: 1.8rem; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .header-container {
                flex-wrap: wrap;
            }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            article { padding: 1.5rem; }
            .sidebar-widget { padding: 1.5rem; }
        }
