:root {
            --primary-color: #1e40af;
            --secondary-color: #dc2626;
            --accent-color: #f59e0b;
            --light-color: #f8fafc;
            --dark-color: #0f172a;
            --text-color: #334155;
            --gray-light: #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;
            --border-radius: 8px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: var(--light-color);
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
            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;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 0.5px;
        }
        .logo i {
            color: var(--accent-color);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
            transition: var(--transition);
        }
        .nav-links a:hover {
            color: var(--accent-color);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--accent-color);
            transition: var(--transition);
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .search-box {
            display: flex;
            margin-left: 2rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            padding: 0.5rem 1rem;
            backdrop-filter: blur(5px);
        }
        .search-box input {
            background: transparent;
            border: none;
            color: white;
            outline: none;
            width: 200px;
        }
        .search-box input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        .search-box button {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: var(--gray-light);
            padding: 0.8rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: var(--text-color);
        }
        main {
            padding: 2rem 0;
        }
        .article-header {
            margin-bottom: 3rem;
            text-align: center;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--dark-color);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            color: #64748b;
            font-size: 0.95rem;
            margin-top: 1rem;
            flex-wrap: wrap;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        article {
            background: white;
            border-radius: var(--border-radius);
            padding: 2.5rem;
            box-shadow: var(--shadow);
        }
        h2, h3, h4 {
            color: var(--dark-color);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
        }
        h2 {
            font-size: 2rem;
            border-left: 5px solid var(--secondary-color);
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.6rem;
            color: var(--primary-color);
        }
        h4 {
            font-size: 1.3rem;
            color: #475569;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--primary-color);
            border-left: 4px solid var(--accent-color);
            padding-left: 1rem;
            margin: 2rem 0;
        }
        .highlight-box {
            background: linear-gradient(to right, #dbeafe, #f0f9ff);
            border-left: 4px solid var(--primary-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 1.5rem;
            box-shadow: var(--shadow);
            text-align: center;
            border-top: 5px solid var(--secondary-color);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        .stat-card h3 {
            font-size: 2rem;
            color: var(--dark-color);
            margin: 0.5rem 0;
        }
        .image-container {
            margin: 3rem 0;
            text-align: center;
        }
        .article-img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        .article-img:hover {
            transform: scale(1.01);
        }
        .caption {
            font-style: italic;
            color: #64748b;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.7rem;
        }
        strong {
            color: var(--dark-color);
            font-weight: 700;
        }
        em {
            color: var(--secondary-color);
            font-style: italic;
        }
        .key-term {
            background-color: #fef3c7;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .internal-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px dotted var(--primary-color);
            transition: var(--transition);
        }
        .internal-link:hover {
            color: var(--secondary-color);
            border-bottom-style: solid;
        }
        aside {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .sidebar-widget {
            background: white;
            border-radius: var(--border-radius);
            padding: 1.8rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .sidebar-title {
            font-size: 1.3rem;
            color: var(--dark-color);
            margin-bottom: 1.2rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--gray-light);
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }
        .sidebar-title i {
            color: var(--secondary-color);
        }
        .related-links {
            list-style: none;
            margin: 0;
        }
        .related-links li {
            margin-bottom: 0.9rem;
            padding-bottom: 0.9rem;
            border-bottom: 1px dashed var(--gray-light);
        }
        .related-links a {
            color: var(--text-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.7rem;
            transition: var(--transition);
        }
        .related-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        .interactive-section {
            background: linear-gradient(135deg, #1e3a8a, #1e40af);
            color: white;
            border-radius: var(--border-radius);
            padding: 2.5rem;
            margin: 3rem 0;
        }
        .interactive-section h2 {
            color: white;
            border-left-color: var(--accent-color);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.9rem;
            border: 2px solid var(--gray-light);
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.2);
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .rating {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            direction: rtl;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: var(--gray-light);
            cursor: pointer;
            transition: var(--transition);
        }
        .rating input:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: var(--accent-color);
        }
        .btn {
            display: inline-block;
            background: var(--secondary-color);
            color: white;
            padding: 0.9rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            text-align: center;
            font-size: 1rem;
        }
        .btn:hover {
            background: #b91c1c;
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(220, 38, 38, 0.3);
        }
        .btn-secondary {
            background: var(--primary-color);
        }
        .btn-secondary:hover {
            background: #1e3a8a;
        }
        .long-tail-links {
            background: var(--dark-color);
            color: white;
            padding: 3rem 0;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.2rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        .web-link a {
            color: #e2e8f0;
            text-decoration: none;
            font-size: 1rem;
            display: block;
            transition: var(--transition);
        }
        .web-link a:hover {
            color: var(--accent-color);
        }
        footer {
            background: #0a0e17;
            color: #94a3b8;
            padding: 3rem 0 2rem;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }
        .copyright {
            font-size: 0.9rem;
            border-top: 1px solid #334155;
            padding-top: 2rem;
            width: 100%;
        }
        .copyright a {
            color: var(--accent-color);
            text-decoration: none;
        }
        .copyright a:hover {
            text-decoration: underline;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            h1 {
                font-size: 2.4rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--dark-color);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem 0;
                box-shadow: var(--shadow);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                width: 100%;
                text-align: center;
            }
            .nav-links a {
                display: block;
                padding: 1rem;
            }
            .search-box {
                margin: 1rem 0 0 0;
                width: 100%;
                order: 3;
            }
            .search-box input {
                width: 100%;
            }
            h1 {
                font-size: 2rem;
            }
            article {
                padding: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            html {
                font-size: 14px;
            }
            .interactive-section {
                padding: 1.5rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease-out;
        }
