        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-color: #1e3a8a;
            --secondary-color: #dc2626;
            --accent-color: #fbbf24;
            --dark-bg: #0f172a;
            --light-bg: #f8fafc;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --card-bg: #ffffff;
            --border-color: #e2e8f0;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--light-bg);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul {
            list-style: none;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--primary-color);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 900;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent-color);
        }
        .nav-desktop ul {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            color: var(--accent-color);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--dark-bg);
            flex-direction: column;
            padding: 1rem 0;
            box-shadow: var(--shadow);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile ul {
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
        .nav-mobile a {
            display: block;
            padding: 0.75rem 2rem;
            width: 100%;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background-color: var(--light-bg);
            padding: 1rem 0;
            border-bottom: 1px solid var(--border-color);
            font-size: 0.9rem;
        }
        .breadcrumb .container {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: var(--primary-color);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: var(--text-secondary);
        }
        .search-section {
            padding: 2rem 0;
            background: linear-gradient(135deg, var(--primary-color), #2d4ba3);
            color: white;
            text-align: center;
        }
        .search-section h2 {
            margin-bottom: 1.5rem;
            font-size: 2.2rem;
        }
        .search-form {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-form input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-form button {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #b91c1c;
        }
        main {
            padding: 3rem 0;
        }
        .article-header {
            margin-bottom: 3rem;
            text-align: center;
            padding-bottom: 2rem;
            border-bottom: 3px solid var(--border-color);
        }
        .article-header h1 {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .meta-info {
            display: flex;
            justify-content: center;
            gap: 2rem;
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }
        .meta-info span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .article-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .article-content {
                grid-template-columns: 1fr;
            }
        }
        .content-body {
            background-color: var(--card-bg);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .content-body p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .content-body h2 {
            color: var(--primary-color);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--accent-color);
            font-size: 2rem;
        }
        .content-body h3 {
            color: var(--secondary-color);
            margin: 2rem 0 1rem;
            font-size: 1.6rem;
        }
        .content-body strong {
            color: var(--primary-color);
            font-weight: 800;
        }
        .content-body em {
            background: linear-gradient(90deg, var(--accent-color), transparent);
            padding: 0 5px;
            font-style: normal;
            font-weight: 600;
        }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            margin: 2rem 0 3rem;
            box-shadow: var(--shadow);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-secondary);
            padding: 0.75rem;
            background-color: #f1f5f9;
            border-radius: 0 0 10px 10px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: var(--card-bg);
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .widget h3 {
            color: var(--primary-color);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
            font-size: 1.4rem;
        }
        .related-links ul {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .related-links a {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem;
            border-radius: 6px;
            border: 1px solid transparent;
        }
        .related-links a:hover {
            border-color: var(--primary-color);
            background-color: #eff6ff;
            color: var(--primary-color);
        }
        .related-links i {
            color: var(--secondary-color);
        }
        .user-interaction {
            margin-top: 4rem;
            background-color: var(--card-bg);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .interaction-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        .interaction-header h2 {
            color: var(--primary-color);
            font-size: 2.2rem;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .comment-section textarea,
        .score-section select {
            width: 100%;
            padding: 1rem;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 1rem;
            margin-bottom: 1rem;
            resize: vertical;
            min-height: 150px;
        }
        .score-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            color: #d1d5db;
            margin-bottom: 1.5rem;
            cursor: pointer;
        }
        .score-stars .star.active {
            color: var(--accent-color);
        }
        .submit-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
        }
        .submit-btn:hover {
            background-color: #1e40af;
        }
        .footer-links-section {
            background-color: var(--dark-bg);
            color: white;
            padding: 3rem 0;
        }
        .footer-links-section h3 {
            text-align: center;
            margin-bottom: 2rem;
            font-size: 1.8rem;
            color: var(--accent-color);
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 4px solid var(--accent-color);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        .web-link a {
            color: #cbd5e1;
            display: block;
        }
        .web-link a:hover {
            color: white;
            text-decoration: underline;
        }
        footer {
            background-color: #0a0e1a;
            color: #94a3b8;
            padding: 2.5rem 0;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .copyright {
            font-size: 0.95rem;
            line-height: 1.7;
        }
        .social-links {
            display: flex;
            gap: 1.5rem;
            font-size: 1.5rem;
        }
        .social-links a {
            color: #94a3b8;
            transition: var(--transition);
        }
        .social-links a:hover {
            color: var(--accent-color);
            transform: translateY(-3px);
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-desktop {
                display: none;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .content-body {
                padding: 1.5rem;
            }
            .search-form {
                flex-direction: column;
                border-radius: 12px;
            }
            .search-form input,
            .search-form button {
                width: 100%;
                border-radius: 0;
                padding: 1.2rem;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .content-body,
        .widget,
        .user-interaction {
            animation: fadeIn 0.8s ease-out;
        }
