        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #1e3a8a; 
            --secondary: #dc2626; 
            --accent: #f59e0b; 
            --light: #f8fafc;
            --dark: #0f172a;
            --gray: #64748b;
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: var(--dark);
            color: white;
            padding: 1rem 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 {
            color: white;
            font-size: 1.8rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--secondary);
        }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-desktop a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--secondary);
            transition: var(--transition);
        }
        .nav-desktop a:hover:after {
            width: 100%;
        }
        .nav-mobile {
            display: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: white;
            border-radius: 2px;
            transition: var(--transition);
        }
        #menu-toggle {
            display: none;
        }
        .breadcrumb {
            background-color: #e2e8f0;
            padding: 1rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child):after {
            content: '/';
            margin: 0 10px;
            color: var(--gray);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.05);
        }
        .article-header {
            margin-bottom: 40px;
            border-bottom: 2px solid var(--primary);
            padding-bottom: 20px;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            color: var(--gray);
            font-size: 0.95rem;
            display: flex;
            gap: 20px;
        }
        .article-meta i {
            margin-right: 5px;
        }
        .article-body h2 {
            color: var(--primary);
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #e2e8f0;
        }
        .article-body h3 {
            color: var(--dark);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        .article-body h4 {
            color: var(--gray);
            font-size: 1.2rem;
            margin: 1.5rem 0 0.8rem;
            font-weight: 600;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-body strong {
            color: var(--secondary);
            font-weight: 700;
        }
        .article-body em {
            color: var(--gray);
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 10px;
            color: var(--gray);
            background-color: #f1f5f9;
        }
        .highlight-box {
            background-color: #fef3c7;
            border-left: 5px solid var(--accent);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: linear-gradient(135deg, var(--primary), #1e40af);
            color: white;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 8px 16px rgba(30, 58, 138, 0.2);
        }
        .stat-card h3 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 {
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #cbd5e1;
            border-right: none;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: var(--secondary);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #e2e8f0;
            margin-bottom: 15px;
            cursor: pointer;
        }
        .stars .active {
            color: var(--accent);
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #cbd5e1;
            border-radius: 6px;
            resize: vertical;
            min-height: 120px;
            margin-bottom: 15px;
            font-size: 1rem;
        }
        .comment-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            width: 100%;
        }
        .comment-form button:hover {
            background-color: var(--secondary);
        }
        site-footer {
            background-color: var(--dark);
            color: white;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 20px;
        }
        .footer-logo span {
            color: var(--secondary);
        }
        .footer-links h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #cbd5e1;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid #334155;
        }
        friend-link h4 {
            color: white;
            margin-bottom: 20px;
        }
        friend-link ul {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            list-style: none;
        }
        friend-link a {
            background-color: #1e293b;
            color: white;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            background-color: var(--primary);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            #menu-toggle:checked ~ .nav-mobile {
                transform: translateX(0);
            }
            #menu-toggle:checked + .hamburger span:nth-child(1) {
                transform: rotate(45deg) translate(6px, 6px);
            }
            #menu-toggle:checked + .hamburger span:nth-child(2) {
                opacity: 0;
            }
            #menu-toggle:checked + .hamburger span:nth-child(3) {
                transform: rotate(-45deg) translate(6px, -6px);
            }
            .nav-mobile {
                display: block;
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--dark);
                padding: 20px;
                transform: translateX(-100%);
                transition: transform 0.4s ease;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
                z-index: 999;
            }
            .nav-mobile ul {
                list-style: none;
                display: flex;
                flex-direction: column;
                gap: 1rem;
            }
            .nav-mobile a {
                color: white;
                display: block;
                padding: 12px 15px;
                border-radius: 6px;
                font-weight: 600;
            }
            .nav-mobile a:hover {
                background-color: var(--primary);
            }
            .article-content {
                padding: 25px;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .article-body h2 {
                font-size: 1.8rem;
            }
            .article-body h3 {
                font-size: 1.4rem;
            }
        }
