        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #2c3e50;
            --secondary: #3498db;
            --accent: #e74c3c;
            --light: #ecf0f1;
            --dark: #2c3e50;
            --gray: #95a5a6;
            --success: #27ae60;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
            --border-radius: 8px;
            --max-width: 1200px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background-color: #f9f9f9;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-weight: 700;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            margin-top: 1.5rem;
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--secondary);
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--dark);
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #555;
            margin-top: 1.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent);
            text-decoration: underline;
        }
        strong {
            color: var(--primary);
            font-weight: 700;
        }
        em {
            font-style: italic;
            color: #555;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .my-logo span {
            color: var(--secondary);
        }
        .my-logo:hover {
            text-decoration: none;
            transform: scale(1.02);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: var(--transition);
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
            padding: 0.5rem;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--primary);
            border-radius: 2px;
            transition: var(--transition);
        }
        .breadcrumb {
            background-color: var(--light);
            padding: 1rem 0;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child):after {
            content: '›';
            margin-left: 0.5rem;
            color: var(--gray);
        }
        main {
            background-color: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin: 2rem auto;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid #eee;
            margin-bottom: 2rem;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .update-time {
            color: var(--accent);
            font-weight: 600;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .featured-image:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .content-section {
            margin-bottom: 3rem;
        }
        .highlight-box {
            background-color: #f8f9fa;
            border-left: 4px solid var(--secondary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .tip {
            background-color: #e8f4fc;
            border-left: 4px solid var(--secondary);
            padding: 1rem;
            margin: 1.5rem 0;
        }
        .warning {
            background-color: #fdeaea;
            border-left: 4px solid var(--accent);
            padding: 1rem;
            margin: 1.5rem 0;
        }
        .interactive-section {
            background-color: var(--light);
            padding: 2rem;
            border-radius: var(--border-radius);
            margin: 3rem 0;
        }
        .search-box, .comment-form, .rating-form {
            margin-bottom: 2rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--primary);
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #ddd;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }
        button, .btn {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: var(--border-radius);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-block;
        }
        button:hover, .btn:hover {
            background-color: #2980b9;
            transform: translateY(-2px);
            box-shadow: var(--shadow);
            text-decoration: none;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #f39c12;
        }
        footer {
            background-color: var(--primary);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #ddd;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background-color: rgba(255,255,255,0.1);
            padding: 1rem;
            border-radius: var(--border-radius);
            margin-bottom: 1rem;
        }
        friend-link a {
            color: #ddd;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #bbb;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .container {
                padding: 0 1rem;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                align-items: center;
                padding: 2rem;
                box-shadow: var(--shadow);
                transform: translateY(-150%);
                transition: var(--transition);
                z-index: 999;
            }
            .nav-links.active {
                transform: translateY(0);
            }
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(6px, 6px);
            }
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(6px, -6px);
            }
            .header-container {
                padding: 0.8rem 0;
            }
            main {
                padding: 1.5rem;
                margin: 1rem auto;
            }
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
        }
        @media (max-width: 576px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .content-section {
            animation: fadeIn 0.6s ease-out;
        }
        .text-center {
            text-align: center;
        }
        .mb-3 {
            margin-bottom: 3rem;
        }
        .mt-3 {
            margin-top: 3rem;
        }
        .py-2 {
            padding-top: 2rem;
            padding-bottom: 2rem;
        }
