        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #1a365d; 
            --secondary-color: #e53e3e; 
            --accent-color: #f6e05e; 
            --light-bg: #f7fafc;
            --dark-text: #2d3748;
            --light-text: #718096;
            --border-color: #e2e8f0;
            --shadow: 0 4px 6px -1px 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.7;
            color: var(--dark-text);
            background-color: #fff;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: var(--primary-color);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo span {
            color: var(--accent-color);
        }
        .my-logo:hover {
            text-decoration: none;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover {
            text-decoration: none;
            color: var(--accent-color);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: var(--transition);
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            background-color: var(--light-bg);
            padding: 0.8rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin: 0 10px;
            color: var(--light-text);
        }
        .hero {
            background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.8)), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 4rem 0;
            text-align: center;
            margin-bottom: 3rem;
            border-radius: 0 0 10px 10px;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .search-form {
            max-width: 600px;
            margin: 2rem auto 0;
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 1rem;
            border: none;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #c53030;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        h1, h2, h3, h4 {
            color: var(--primary-color);
            margin-top: 2rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.2rem;
            padding-left: 0.5rem;
            border-left: 5px solid var(--secondary-color);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--secondary-color);
        }
        h4 {
            font-size: 1.4rem;
            color: var(--dark-text);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-color);
            background-color: var(--light-bg);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            border-left: 4px solid var(--accent-color);
        }
        .highlight {
            background-color: #fff9e6;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
            border: 1px dashed var(--accent-color);
        }
        .highlight strong {
            color: var(--secondary-color);
        }
        .stats-box {
            background: linear-gradient(135deg, var(--primary-color), #2d3748);
            color: white;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
        }
        .stats-box h3 {
            color: var(--accent-color);
        }
        blockquote {
            font-style: italic;
            color: var(--light-text);
            border-left: 4px solid var(--border-color);
            padding-left: 1.5rem;
            margin: 2rem 0;
        }
        .featured-image {
            margin: 2.5rem 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin: 0 auto;
            border: 5px solid white;
            outline: 1px solid var(--border-color);
        }
        .image-caption {
            font-size: 0.9rem;
            color: var(--light-text);
            margin-top: 0.5rem;
            font-style: italic;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .sidebar {
            background-color: var(--light-bg);
            padding: 2rem;
            border-radius: 10px;
            height: fit-content;
            box-shadow: var(--shadow);
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
        }
        .link-list {
            list-style: none;
            margin-left: 0;
        }
        .link-list li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dotted var(--border-color);
        }
        .link-list a {
            display: block;
            padding: 0.5rem;
            border-radius: 5px;
            transition: var(--transition);
        }
        .link-list a:hover {
            background-color: white;
            text-decoration: none;
            padding-left: 1rem;
        }
        .user-interaction {
            background-color: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin: 3rem 0;
        }
        .interaction-title {
            text-align: center;
            margin-bottom: 2rem;
        }
        .rating-widget {
            text-align: center;
            margin-bottom: 2rem;
        }
        .stars {
            font-size: 2rem;
            color: #e2e8f0;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars .star {
            margin: 0 0.2rem;
            transition: var(--transition);
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--accent-color);
        }
        .comment-form, .rating-form {
            display: grid;
            gap: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 0.8rem;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            justify-self: start;
        }
        .submit-btn:hover {
            background-color: var(--secondary-color);
        }
        .site-footer {
            background-color: var(--primary-color);
            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-widget h3 {
            color: var(--accent-color);
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #cbd5e0;
        }
        .footer-links a:hover {
            color: white;
            text-decoration: none;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 5px;
            margin-bottom: 1rem;
            text-align: center;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #cbd5e0;
        }
        .update-time {
            font-size: 0.9rem;
            color: var(--light-text);
            text-align: right;
            margin-top: 2rem;
            font-style: italic;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--primary-color);
                padding: 1rem;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
                box-shadow: var(--shadow);
            }
            .main-nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            .main-nav a {
                display: block;
                padding: 1rem;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .article-content, .sidebar {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media print {
            .site-header, .hero, .sidebar, .user-interaction, .site-footer {
                display: none;
            }
            .main-content {
                grid-template-columns: 1fr;
            }
            .article-content {
                box-shadow: none;
                padding: 0;
            }
            a {
                color: black;
                text-decoration: underline;
            }
        }
