:root {
            --primary-color: #1e3a8a;
            --secondary-color: #dc2626;
            --accent-color: #fbbf24;
            --light-bg: #f8fafc;
            --dark-text: #0f172a;
            --light-text: #64748b;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --border-radius: 12px;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.7;
            color: var(--dark-text);
            background-color: #ffffff;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary-color), #1e40af);
            color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            padding: 15px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(to right, var(--accent-color), #f59e0b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent-color);
            font-size: 2.5rem;
        }
        .search-box {
            display: flex;
            max-width: 400px;
            width: 100%;
        }
        .search-box input {
            flex-grow: 1;
            padding: 12px 20px;
            border: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background-color: #b91c1c;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        nav {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 10px 0;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            list-style: none;
        }
        .nav-links a {
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-links a:hover, .nav-links a.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: var(--accent-color);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: var(--light-bg);
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: var(--light-text);
        }
        .breadcrumb a:hover {
            color: var(--secondary-color);
        }
        main {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .article-content h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--primary-color);
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid #e2e8f0;
            color: var(--light-text);
            font-size: 0.95rem;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--primary-color);
            background-color: #eff6ff;
            padding: 25px;
            border-radius: var(--border-radius);
            border-left: 5px solid var(--secondary-color);
            margin-bottom: 40px;
            line-height: 1.8;
        }
        .content-section {
            margin-bottom: 50px;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin: 30px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--accent-color);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--dark-text);
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight {
            background-color: #fef3c7;
            padding: 25px;
            border-radius: var(--border-radius);
            border: 2px dashed var(--accent-color);
            margin: 25px 0;
        }
        .highlight strong {
            color: var(--secondary-color);
        }
        .inline-link {
            color: var(--secondary-color);
            font-weight: 700;
            border-bottom: 2px dotted var(--secondary-color);
        }
        .inline-link:hover {
            color: #7f1d1d;
            border-bottom-style: solid;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin: 0 auto 15px;
            max-height: 500px;
            object-fit: cover;
        }
        .image-caption {
            font-style: italic;
            color: var(--light-text);
            font-size: 0.95rem;
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 25px;
        }
        li {
            margin-bottom: 10px;
        }
        blockquote {
            border-left: 5px solid var(--primary-color);
            padding-left: 25px;
            margin: 30px 0;
            font-style: italic;
            color: var(--primary-color);
            background-color: #f1f5f9;
            padding: 25px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        aside {
            background-color: var(--light-bg);
            padding: 25px;
            border-radius: var(--border-radius);
            align-self: start;
            position: sticky;
            top: 150px;
        }
        .widget {
            margin-bottom: 35px;
        }
        .widget-title {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-color);
        }
        .related-links a {
            display: block;
            padding: 12px 15px;
            margin-bottom: 10px;
            background-color: white;
            border-radius: 8px;
            border-left: 4px solid var(--primary-color);
            transition: var(--transition);
        }
        .related-links a:hover {
            background-color: #e0f2fe;
            border-left-color: var(--secondary-color);
            transform: translateX(5px);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #ddd;
            margin-bottom: 15px;
            cursor: pointer;
        }
        .stars .star {
            padding: 0 2px;
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--accent-color);
        }
        .interactive-section {
            background-color: white;
            border: 2px solid #e2e8f0;
            border-radius: var(--border-radius);
            padding: 30px;
            margin: 40px 0;
            box-shadow: var(--shadow);
        }
        .interactive-section h3 {
            color: var(--secondary-color);
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            margin-bottom: 8px;
            font-weight: 600;
        }
        input, textarea, select {
            padding: 15px;
            border: 1px solid #cbd5e1;
            border-radius: 8px;
            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, 58, 138, 0.2);
        }
        button[type="submit"] {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            padding: 16px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        button[type="submit"]:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        footer {
            background-color: #0f172a;
            color: #cbd5e1;
            padding: 60px 0 30px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 20px;
            background: linear-gradient(to right, var(--accent-color), #f59e0b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .footer-links h4 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #94a3b8;
        }
        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background-color: #1e293b;
            padding: 20px;
            border-radius: var(--border-radius);
            margin-top: 20px;
        }
        friend-link h4 {
            color: var(--accent-color);
            margin-bottom: 15px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #334155;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            .nav-links {
                gap: 15px;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
                gap: 15px;
            }
            .search-box {
                order: 3;
                flex-basis: 100%;
                max-width: 100%;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--primary-color);
                padding: 0;
            }
            nav.active {
                display: block;
            }
            .nav-links {
                flex-direction: column;
                gap: 0;
            }
            .nav-links a {
                padding: 15px 20px;
                border-radius: 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            .article-content h1 {
                font-size: 2.2rem;
            }
            .lead {
                font-size: 1.1rem;
                padding: 20px;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-content, aside {
            animation: fadeIn 0.8s ease-out;
        }
        .pulse {
            display: inline-block;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
