        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #1a237e;
            --secondary-color: #ff6f00;
            --accent-color: #4caf50;
            --text-color: #333;
            --light-bg: #f5f5f5;
            --dark-bg: #1a1a2e;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --border-radius: 8px;
            --container-width: 1200px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-color);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: var(--dark-bg);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2rem;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(to right, #ff6f00, #ffab00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .breadcrumb {
            padding: 10px 0;
            background: rgba(255, 255, 255, 0.1);
            margin-top: 5px;
            border-radius: var(--border-radius);
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: #aaa;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
        }
        .main-nav a:hover {
            background: var(--secondary-color);
            color: white;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            border-radius: 2px;
            transition: var(--transition);
        }
        .search-container {
            margin: 2rem auto;
            max-width: 600px;
            background: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex: 1;
            padding: 12px 20px;
            border: 2px solid #ddd;
            border-radius: 50px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-input:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.2);
        }
        .search-button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-button:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }
        .main-content {
            flex: 1;
            padding: 2rem 0;
        }
        .article-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        @media (max-width: 992px) {
            .article-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 3px solid var(--light-bg);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            color: #666;
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .last-updated {
            background: #e8f5e9;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: 600;
            color: #2e7d32;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--light-bg);
        }
        h3 {
            font-size: 1.5rem;
            color: #444;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #555;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.2rem;
            color: #555;
            background: #f0f7ff;
            padding: 1.5rem;
            border-left: 4px solid var(--primary-color);
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            margin: 2rem 0;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fff3e0, #ffecb3);
            border-left: 5px solid var(--secondary-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .data-point {
            display: inline-block;
            background: var(--accent-color);
            color: white;
            padding: 3px 10px;
            border-radius: 3px;
            font-weight: bold;
            margin: 0 3px;
        }
        .content-link {
            color: var(--primary-color);
            font-weight: 600;
            border-bottom: 2px dotted var(--secondary-color);
            padding-bottom: 1px;
        }
        .content-link:hover {
            border-bottom-style: solid;
        }
        .featured-image {
            margin: 2.5rem 0;
            text-align: center;
        }
        .image-container {
            position: relative;
            overflow: hidden;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .image-container img {
            transition: transform 0.5s ease;
            width: 100%;
        }
        .image-container:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.95rem;
            text-align: center;
        }
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-section {
            margin-bottom: 2rem;
        }
        .sidebar-title {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--light-bg);
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed #eee;
        }
        .related-links a {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .related-links i {
            color: var(--secondary-color);
        }
        .interaction-module {
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        .module-title {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .rating-system {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .star {
            color: #ddd;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #ffc107;
            transform: scale(1.2);
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-label {
            font-weight: 600;
            color: #555;
        }
        .form-input,
        .form-textarea {
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus,
        .form-textarea:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 14px 25px;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .submit-button:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(255, 111, 0, 0.3);
        }
        .site-footer {
            background: var(--dark-bg);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #ccc;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin: 1.5rem 0;
        }
        friend-link h4 {
            color: white;
            margin-top: 0;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1rem;
        }
        .friend-link-item {
            background: rgba(255, 255, 255, 0.15);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: var(--transition);
        }
        .friend-link-item:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .hamburger {
                display: flex;
                order: 1;
            }
            .main-nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
                order: 3;
                margin-top: 1rem;
            }
            .main-nav.active {
                max-height: 300px;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0.5rem;
            }
            .main-nav a {
                display: block;
                padding: 0.8rem;
                background: rgba(255, 255, 255, 0.1);
                border-radius: var(--border-radius);
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .sidebar {
                position: static;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        @media print {
            .site-header, .sidebar, .interaction-module, .site-footer {
                display: none;
            }
            body {
                background: white;
                color: black;
            }
            .container {
                max-width: 100%;
                padding: 0;
            }
            a {
                color: black;
                text-decoration: underline;
            }
        }
