:root {
            --primary: #1e3a8a;
            --secondary: #dc2626;
            --accent: #fbbf24;
            --light: #f8fafc;
            --dark: #0f172a;
            --gray: #64748b;
            --transition: all 0.3s ease;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --radius: 8px;
        }
        * {
            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: var(--dark);
            background-color: #ffffff;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
            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;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
            transition: var(--transition);
        }
        nav a:hover {
            color: var(--accent);
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: var(--transition);
        }
        nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #e2e8f0;
            padding: 0.8rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 0.5rem;
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 0.5rem;
            color: var(--gray);
        }
        main {
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        article {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
        }
        .article-header {
            margin-bottom: 2rem;
        }
        .article-header h1 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .meta {
            display: flex;
            gap: 1.5rem;
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }
        .meta i {
            margin-right: 0.5rem;
            color: var(--primary);
        }
        .featured-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: var(--radius);
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .content-section {
            margin-bottom: 3rem;
        }
        h2 {
            font-size: 1.8rem;
            color: var(--primary);
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--accent);
        }
        h3 {
            font-size: 1.4rem;
            color: var(--dark);
            margin: 1.5rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fef3c7;
            border-left: 4px solid var(--accent);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .related-links {
            background-color: #f1f5f9;
            padding: 1.5rem;
            border-radius: var(--radius);
            margin: 2rem 0;
        }
        .related-links h3 {
            margin-top: 0;
        }
        .related-links ul {
            list-style-position: inside;
            color: var(--primary);
        }
        .related-links a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }
        .related-links a:hover {
            text-decoration: underline;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: white;
            border-radius: var(--radius);
            padding: 1.5rem;
            box-shadow: var(--shadow);
            text-align: center;
            border-top: 4px solid var(--primary);
        }
        .stat-card h4 {
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        .stat-card p {
            font-size: 2rem;
            font-weight: 900;
            color: var(--secondary);
            margin-bottom: 0;
        }
        .search-box {
            background-color: var(--light);
            padding: 2rem;
            border-radius: var(--radius);
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .search-box form {
            display: flex;
            gap: 10px;
        }
        .search-box input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #cbd5e1;
            border-radius: var(--radius);
            font-size: 1rem;
        }
        .search-box button {
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: var(--radius);
            padding: 0 1.5rem;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
        }
        .search-box button:hover {
            background-color: var(--secondary);
        }
        .rating-section {
            background-color: white;
            padding: 2rem;
            border-radius: var(--radius);
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
        }
        .stars i {
            color: #e2e8f0;
            cursor: pointer;
            font-size: 1.5rem;
            transition: var(--transition);
        }
        .stars i.active,
        .stars i:hover {
            color: var(--accent);
        }
        .comment-section {
            background-color: white;
            padding: 2rem;
            border-radius: var(--radius);
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #cbd5e1;
            border-radius: var(--radius);
            margin: 1rem 0;
            font-family: inherit;
            resize: vertical;
            min-height: 120px;
        }
        .comment-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: var(--radius);
            padding: 0.8rem 2rem;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: var(--secondary);
        }
        aside {
            position: sticky;
            top: 120px;
            height: fit-content;
        }
        .sidebar-widget {
            background: white;
            border-radius: var(--radius);
            padding: 1.5rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary);
            margin-top: 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent);
        }
        .quick-links ul {
            list-style: none;
        }
        .quick-links li {
            margin-bottom: 0.8rem;
        }
        .quick-links a {
            color: var(--dark);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }
        .quick-links a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }
        .quick-links i {
            color: var(--primary);
        }
        footer {
            background-color: var(--dark);
            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;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            color: #cbd5e1;
            text-decoration: none;
            transition: var(--transition);
        }
        friend-link a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            nav {
                display: none;
                width: 100%;
                order: 3;
                margin-top: 1rem;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 0;
            }
            nav li {
                width: 100%;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            nav a {
                display: block;
                padding: 1rem 0;
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .search-box form {
                flex-direction: column;
            }
        }
        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: var(--radius);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
        }
        .tag {
            display: inline-block;
            background: #dbeafe;
            color: var(--primary);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }
        .quote {
            font-style: italic;
            font-size: 1.2rem;
            color: var(--primary);
            text-align: center;
            margin: 2rem 0;
            padding: 2rem;
            background: #f8fafc;
            border-radius: var(--radius);
            position: relative;
        }
        .quote::before, .quote::after {
            content: '"';
            font-size: 3rem;
            color: var(--accent);
            opacity: 0.3;
            position: absolute;
        }
        .quote::before {
            top: 10px;
            left: 20px;
        }
        .quote::after {
            bottom: 10px;
            right: 20px;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 2px;
        }
