        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: #2563eb;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #1d4ed8;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
            color: #1e293b;
        }
        h1 { font-size: 2.8rem; margin-top: 2rem; }
        h2 { font-size: 2.2rem; margin-top: 2.5rem; padding-bottom: 0.5rem; border-bottom: 2px solid #e2e8f0; }
        h3 { font-size: 1.8rem; margin-top: 2rem; }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.125rem;
        }
        .lead {
            font-size: 1.4rem;
            font-weight: 300;
            color: #475569;
        }
        .highlight {
            background-color: #fef3c7;
            padding: 0.2rem 0.4rem;
            border-radius: 4px;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
            color: white;
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: white;
            text-decoration: none;
            font-family: 'Courier New', monospace;
            letter-spacing: -1px;
        }
        .logo span {
            color: #fbbf24;
        }
        .nav-desktop {
            display: flex;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #e2e8f0;
            font-weight: 600;
            font-size: 1.1rem;
        }
        .nav-desktop a:hover {
            color: #fbbf24;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 992px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #1e3a8a;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1.5rem 2rem;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            z-index: 999;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #e2e8f0;
            padding: 0.8rem 0;
            border-bottom: 1px solid #334155;
            font-size: 1.1rem;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            background-color: #f1f5f9;
            padding: 1rem 0;
            font-size: 0.95rem;
            color: #64748b;
        }
        .breadcrumb a {
            color: #475569;
        }
        .breadcrumb a:hover {
            color: #1e40af;
        }
        .search-section {
            background-color: #e0f2fe;
            padding: 2.5rem 0;
            text-align: center;
            margin: 2rem 0;
            border-radius: 12px;
        }
        .search-form {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            gap: 0;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 6px 15px rgba(30, 64, 175, 0.15);
        }
        .search-input {
            flex-grow: 1;
            padding: 1.2rem 1.8rem;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-button {
            background: #3b82f6;
            color: white;
            border: none;
            padding: 0 2.2rem;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-button:hover {
            background: #2563eb;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3.5rem;
            margin: 3rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            background-color: white;
            padding: 3rem;
            border-radius: 16px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
        }
        .article-meta {
            color: #64748b;
            margin-bottom: 2rem;
            font-style: italic;
            display: flex;
            gap: 1.5rem;
        }
        .featured-image {
            margin: 2.5rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .featured-image img {
            width: 100%;
            height: auto;
        }
        .internal-links {
            background-color: #f8fafc;
            border-left: 4px solid #3b82f6;
            padding: 1.5rem;
            margin: 2.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .internal-links h4 {
            margin-top: 0;
            color: #1e40af;
        }
        .internal-links ul {
            list-style: none;
        }
        .internal-links li {
            margin-bottom: 0.8rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }
        .widget {
            background-color: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-top: 0;
            color: #1e3a8a;
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }
        .widget h3 i {
            color: #f59e0b;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #d1d5db;
            cursor: pointer;
        }
        .stars .active {
            color: #fbbf24;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
            color: #4b5563;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 0.9rem 1.2rem;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }
        .submit-button {
            background: linear-gradient(to right, #3b82f6, #1d4ed8);
            color: white;
            border: none;
            padding: 1.1rem 2rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(59, 130, 246, 0.3);
        }
        .footer-links-section {
            background-color: #1e293b;
            padding: 3.5rem 0;
            margin-top: 4rem;
        }
        .footer-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
        }
        .web-link {
            background-color: #374151;
            padding: 1.5rem;
            border-radius: 8px;
            transition: transform 0.3s, background-color 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: #4b5563;
        }
        .web-link a {
            color: #e5e7eb;
            font-size: 1.05rem;
            display: block;
        }
        .site-footer {
            background-color: #0f172a;
            color: #cbd5e1;
            padding: 3rem 0;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .copyright {
            font-size: 0.95rem;
            color: #94a3b8;
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 1.2rem;
            }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .article-body {
                padding: 2rem 1.5rem;
            }
            .search-form {
                flex-direction: column;
                border-radius: 12px;
            }
            .search-input, .search-button {
                width: 100%;
                border-radius: 0;
                padding: 1.2rem;
            }
        }
