:root {
            --primary: #1a6dbb;
            --primary-dark: #145a9c;
            --secondary: #ffcc00;
            --dark: #222831;
            --light: #f8f9fa;
            --gray: #6c757d;
            --success: #28a745;
            --border-radius: 8px;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #fff;
            color: #333;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-dark);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark) 0%, #2d4059 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: white;
        }
        .breadcrumb {
            font-size: 0.9rem;
            color: #ccc;
            margin-top: 5px;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .breadcrumb a:hover {
            color: white;
        }
        .breadcrumb span {
            color: var(--secondary);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        nav a:hover {
            color: var(--secondary);
        }
        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: var(--secondary);
            left: 0;
            bottom: 0;
            transition: var(--transition);
        }
        nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid #eee;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            color: var(--gray);
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .article-meta i {
            margin-right: 5px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            font-size: 1.1rem;
        }
        .article-content h2 {
            font-size: 2rem;
            color: var(--dark);
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary);
        }
        .article-content h3 {
            font-size: 1.6rem;
            color: var(--primary-dark);
            margin: 2rem 0 1rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-content emoji {
            font-size: 1.2em;
            margin: 0 3px;
        }
        .highlight {
            background-color: #fff9e6;
            border-left: 4px solid var(--secondary);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .image-container {
            margin: 2rem 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .image-container img:hover {
            transform: scale(1.01);
        }
        .image-caption {
            font-style: italic;
            color: var(--gray);
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .sidebar {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            color: var(--dark);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #ddd;
        }
        .search-box {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-right: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
        }
        .search-box button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: var(--primary-dark);
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .stars {
            display: flex;
            gap: 5px;
            direction: rtl;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 1.5rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .stars input:checked ~ label,
        .stars label:hover,
        .stars label:hover ~ label {
            color: var(--secondary);
        }
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: var(--border-radius);
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }
        .btn-secondary {
            background: var(--gray);
        }
        .btn-secondary:hover {
            background: #5a6268;
        }
        .comment {
            background: white;
            padding: 1rem;
            border-radius: var(--border-radius);
            margin-bottom: 1rem;
            border: 1px solid #eee;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .footer-links {
            background: #2d4059;
            padding: 2.5rem 0;
            margin-top: 3rem;
        }
        .footer-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 1rem;
            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: #ddd;
            display: block;
            font-weight: 600;
        }
        .web-link a:hover {
            color: white;
        }
        footer {
            background: var(--dark);
            color: #aaa;
            text-align: center;
            padding: 2rem 0;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
        .social-links {
            display: flex;
            gap: 1rem;
            font-size: 1.5rem;
        }
        .social-links a {
            color: #aaa;
        }
        .social-links a:hover {
            color: var(--secondary);
        }
        .copyright {
            font-size: 0.9rem;
            margin-top: 1rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav {
                width: 100%;
                order: 3;
                margin-top: 1rem;
                display: none;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 0;
            }
            nav li {
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            nav a {
                display: block;
                padding: 0.8rem 0;
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .content-grid {
                gap: 2rem;
            }
            .sidebar {
                position: static;
            }
        }
