:root {
            --primary: #7c3aed;
            --primary-dark: #5b21b6;
            --secondary: #f59e0b;
            --accent: #10b981;
            --text: #1f2937;
            --text-light: #6b7280;
            --bg: #f9fafb;
            --card: #ffffff;
            --border: #e5e7eb;
            --shadow: 0 4px 12px rgba(0,0,0,0.05);
            --radius: 12px;
            --transition: all 0.3s ease;
            --header-height: 70px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.7;
            font-size: 1.05rem;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-dark);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--card);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            height: var(--header-height);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo i {
            color: var(--secondary);
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 992px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary);
            transition: width 0.3s;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary);
        }
        @media (max-width: 992px) {
            .mobile-toggle {
                display: block;
            }
        }
        .mobile-nav {
            position: fixed;
            top: var(--header-height);
            left: -100%;
            width: 100%;
            background: var(--card);
            padding: 2rem;
            box-shadow: var(--shadow);
            transition: left 0.4s ease;
            z-index: 999;
        }
        .mobile-nav.active {
            left: 0;
        }
        .mobile-nav a {
            display: block;
            padding: 1rem 0;
            border-bottom: 1px solid var(--border);
            font-weight: 600;
            font-size: 1.1rem;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-light);
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        main {
            padding: 2rem 0 4rem;
        }
        .article-header {
            margin-bottom: 3rem;
            text-align: center;
            padding: 2rem;
            background: linear-gradient(135deg, var(--primary), #8b5cf6);
            border-radius: var(--radius);
            color: white;
        }
        .article-header h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        @media (max-width: 768px) {
            .article-header h1 {
                font-size: 2rem;
            }
        }
        .meta {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            font-size: 0.95rem;
            opacity: 0.9;
        }
        .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 {
            background: var(--card);
            padding: 2.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        article h2 {
            color: var(--primary);
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--secondary);
            font-size: 1.8rem;
        }
        article h3 {
            color: var(--primary-dark);
            margin: 2rem 0 1rem;
            font-size: 1.4rem;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        article strong {
            color: var(--primary-dark);
            font-weight: 700;
        }
        article ul, article ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        article li {
            margin-bottom: 0.8rem;
        }
        .highlight-box {
            background: linear-gradient(to right, #fef3c7, #fde68a);
            border-left: 5px solid var(--secondary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .image-container img {
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .image-caption {
            margin-top: 0.8rem;
            font-style: italic;
            color: var(--text-light);
            font-size: 0.95rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: var(--card);
            padding: 1.8rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .widget h3 {
            color: var(--primary);
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget h3 i {
            color: var(--secondary);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid var(--border);
            border-radius: var(--radius) 0 0 var(--radius);
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-form input:focus {
            border-color: var(--primary);
        }
        .search-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: var(--primary-dark);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #fbbf24;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars span {
            margin: 0 2px;
            transition: var(--transition);
        }
        .stars span:hover {
            transform: scale(1.2);
        }
        .rating-form button {
            background: var(--accent);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
            margin-top: 1rem;
        }
        .rating-form button:hover {
            background: #0da271;
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid var(--border);
            border-radius: var(--radius);
            font-size: 1rem;
            margin-bottom: 1rem;
            resize: vertical;
            min-height: 120px;
            transition: var(--transition);
        }
        .comment-form textarea:focus {
            border-color: var(--primary);
            outline: none;
        }
        .comment-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background: var(--primary-dark);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
        }
        .web-link {
            background: var(--card);
            padding: 1.2rem;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            transition: var(--transition);
        }
        .web-link:hover {
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .web-link a {
            display: block;
            font-weight: 600;
            color: var(--text);
        }
        .web-link a:hover {
            color: var(--primary);
        }
        footer {
            background: #1f2937;
            color: #f3f4f6;
            padding: 3rem 0 1.5rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-section h3 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--secondary);
        }
        .footer-links a {
            display: block;
            color: #d1d5db;
            margin-bottom: 0.8rem;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #374151;
            color: #9ca3af;
            font-size: 0.9rem;
        }
        .badge {
            display: inline-block;
            background: var(--secondary);
            color: #78350f;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-right: 10px;
        }
        .divider {
            height: 1px;
            background: var(--border);
            margin: 2rem 0;
        }
