        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #4361ee;
            --secondary-color: #3a0ca3;
            --accent-color: #f72585;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --gray-color: #6c757d;
            --border-radius: 12px;
            --box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --max-width: 1200px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark-color);
            background-color: #fff;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }
        .my-logo:hover {
            color: var(--secondary-color);
            transform: translateY(-2px);
        }
        .my-logo i {
            color: var(--accent-color);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            text-decoration: none;
            color: var(--dark-color);
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 4px;
            position: relative;
            transition: var(--transition);
        }
        .desktop-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--accent-color);
            transition: var(--transition);
        }
        .desktop-nav a:hover {
            color: var(--primary-color);
        }
        .desktop-nav a:hover:after {
            width: 100%;
        }
        .hamburger-menu {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--dark-color);
            cursor: pointer;
            padding: 5px;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: white;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            z-index: 999;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav a {
            text-decoration: none;
            color: var(--dark-color);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 10px 0;
            display: block;
            border-bottom: 1px solid #eee;
            transition: var(--transition);
        }
        .mobile-nav a:hover {
            color: var(--primary-color);
            padding-left: 10px;
        }
        .breadcrumb {
            background-color: #f8f9fa;
            padding: 15px 0;
            margin-bottom: 30px;
            border-bottom: 1px solid #e9ecef;
        }
        .breadcrumb .container {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: var(--gray-color);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }
        .breadcrumb span {
            color: var(--gray-color);
        }
        .breadcrumb i {
            font-size: 0.8rem;
        }
        .search-section {
            background-color: var(--primary-color);
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            padding: 40px 0;
            border-radius: var(--border-radius);
            margin: 40px 0;
            color: white;
            text-align: center;
        }
        .search-section h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        .search-section p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--box-shadow);
        }
        .search-form input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-form button {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 0 35px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #d63384;
        }
        main {
            padding: 30px 0 60px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: white;
            padding: 0;
        }
        .article-header {
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 2px solid #f0f0f0;
        }
        .article-header h1 {
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--dark-color);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            color: var(--gray-color);
            font-size: 0.95rem;
        }
        .last-updated {
            display: flex;
            align-items: center;
            gap: 8px;
            background-color: #e9f7fe;
            padding: 8px 15px;
            border-radius: 50px;
            color: var(--primary-color);
        }
        h2 {
            font-size: 2rem;
            margin: 50px 0 20px;
            color: var(--secondary-color);
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
        }
        h3 {
            font-size: 1.6rem;
            margin: 40px 0 15px;
            color: var(--primary-color);
        }
        h4 {
            font-size: 1.3rem;
            margin: 30px 0 12px;
            color: var(--dark-color);
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--dark-color);
            background-color: #f8f9fa;
            padding: 25px;
            border-left: 5px solid var(--accent-color);
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            margin-bottom: 35px;
        }
        .highlight-box {
            background-color: #f0f7ff;
            border: 1px solid #cfe2ff;
            border-radius: var(--border-radius);
            padding: 25px;
            margin: 30px 0;
        }
        .highlight-box h3 {
            margin-top: 0;
            color: var(--primary-color);
        }
        strong {
            color: var(--secondary-color);
            font-weight: 700;
        }
        em {
            color: var(--accent-color);
            font-style: italic;
        }
        a.content-link {
            color: var(--primary-color);
            text-decoration: none;
            border-bottom: 1px dotted var(--primary-color);
            transition: var(--transition);
        }
        a.content-link:hover {
            color: var(--accent-color);
            border-bottom: 1px solid var(--accent-color);
        }
        ul, ol {
            margin: 20px 0 20px 30px;
        }
        li {
            margin-bottom: 12px;
            line-height: 1.7;
        }
        blockquote {
            border-left: 4px solid var(--accent-color);
            padding: 20px 30px;
            margin: 30px 0;
            background-color: #f8f9fa;
            font-style: italic;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .article-image {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }
        .article-image:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .image-caption {
            margin-top: 15px;
            font-size: 0.95rem;
            color: var(--gray-color);
            font-style: italic;
        }
        aside {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: var(--border-radius);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-section {
            margin-bottom: 40px;
        }
        .sidebar-section h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e9ecef;
            color: var(--secondary-color);
        }
        .related-links ul {
            list-style: none;
            margin: 0;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid #e9ecef;
        }
        .related-links a {
            text-decoration: none;
            color: var(--dark-color);
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }
        .related-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        .related-links i {
            color: var(--accent-color);
            font-size: 0.9rem;
        }
        .interaction-section {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 30px;
            margin: 50px 0;
            box-shadow: var(--box-shadow);
            border: 1px solid #e9ecef;
        }
        .interaction-section h2 {
            margin-top: 0;
        }
        .rating-container {
            display: flex;
            align-items: center;
            gap: 20px;
            margin: 25px 0;
            flex-wrap: wrap;
        }
        .stars {
            display: flex;
            gap: 5px;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #ffc107;
        }
        .rating-form,
        .comment-form {
            margin-top: 30px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark-color);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-size: 1rem;
            font-family: inherit;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 16px 40px;
            border-radius: var(--border-radius);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }
        .comments-container {
            margin-top: 40px;
        }
        .comment {
            background-color: #f8f9fa;
            border-radius: var(--border-radius);
            padding: 25px;
            margin-bottom: 25px;
            border-left: 4px solid var(--primary-color);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            flex-wrap: wrap;
            gap: 10px;
        }
        .comment-author {
            font-weight: 700;
            color: var(--secondary-color);
        }
        .comment-date {
            color: var(--gray-color);
            font-size: 0.9rem;
        }
        .comment-rating {
            color: #ffc107;
        }
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 60px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-section h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent-color);
        }
        .footer-links ul {
            list-style: none;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .footer-links i {
            font-size: 0.8rem;
            color: var(--accent-color);
        }
        friend-link {
            display: block;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: var(--border-radius);
            margin: 20px 0;
            border-left: 4px solid var(--accent-color);
        }
        friend-link a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }
        friend-link a:hover {
            color: var(--accent-color);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #adb5bd;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .header-container {
                padding: 15px 0;
            }
            .desktop-nav {
                display: none;
            }
            .hamburger-menu {
                display: block;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .search-section h2 {
                font-size: 1.8rem;
            }
            .search-form {
                flex-direction: column;
                border-radius: var(--border-radius);
            }
            .search-form input,
            .search-form button {
                width: 100%;
                border-radius: 0;
                padding: 16px;
            }
            .search-form button {
                border-radius: 0 0 var(--border-radius) var(--border-radius);
            }
            .rating-container {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        @media (max-width: 576px) {
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
            }
            .content-wrapper {
                gap: 30px;
            }
            .interaction-section {
                padding: 20px;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-40 {
            margin-top: 40px;
        }
        .mb-40 {
            margin-bottom: 40px;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
