:root {
            --primary-color: #FF6B6B;
            --secondary-color: #4ECDC4;
            --accent-color: #FFD166;
            --dark-color: #2D3047;
            --light-color: #F7FFF7;
            --gray-color: #6C757D;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: var(--dark-color);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            text-decoration: none;
            color: var(--accent-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--primary-color);
        }
        .logo:hover {
            color: white;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        nav a:hover, nav a.active {
            background: var(--primary-color);
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent-color);
        }
        .breadcrumb {
            background: #e9ecef;
            padding: 1rem;
            border-radius: 8px;
            margin: 1.5rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--dark-color);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .search-box {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            margin: 2rem 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid var(--secondary-color);
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-form button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 0 2rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: #ff5252;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        h1 {
            color: var(--dark-color);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 15px;
        }
        h2 {
            color: var(--primary-color);
            font-size: 2rem;
            margin: 2.5rem 0 1.5rem;
            padding: 10px 0;
            border-left: 5px solid var(--secondary-color);
            padding-left: 15px;
        }
        h3 {
            color: var(--dark-color);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(120deg, var(--accent-color) 0%, var(--accent-color) 100%);
            background-repeat: no-repeat;
            background-size: 100% 40%;
            background-position: 0 90%;
            padding: 0 4px;
            font-weight: 700;
        }
        .important-note {
            background: #e3f2fd;
            border-left: 5px solid #2196F3;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .warning {
            background: #ffebee;
            border-left: 5px solid #f44336;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .tip-box {
            background: #e8f5e9;
            border-left: 5px solid #4CAF50;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-image {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 2rem 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray-color);
            margin-top: -1rem;
            margin-bottom: 2rem;
        }
        aside {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .author-box {
            text-align: center;
            padding: 1.5rem;
            border-bottom: 1px solid #eee;
            margin-bottom: 1.5rem;
        }
        .author-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1rem;
            border: 4px solid var(--secondary-color);
        }
        .rating-widget {
            background: #fff9e6;
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            margin-bottom: 1.5rem;
        }
        .stars {
            color: #FFD700;
            font-size: 1.8rem;
            margin: 1rem 0;
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comment-section {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            margin-top: 2rem;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            margin-bottom: 1rem;
            min-height: 150px;
            resize: vertical;
        }
        .comment-form button {
            background: var(--secondary-color);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background: #3dbeb6;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .web-link {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }
        .web-link a {
            color: var(--dark-color);
            text-decoration: none;
            font-weight: 600;
            display: block;
            line-height: 1.5;
        }
        .web-link a:hover {
            color: var(--primary-color);
        }
        footer {
            background: var(--dark-color);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            width: 100%;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
        }
        @media (max-width: 1024px) {
            .footer-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            main {
                grid-template-columns: 1fr;
            }
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--dark-color);
                flex-direction: column;
                padding: 1rem 0;
                box-shadow: var(--shadow);
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-container {
                flex-direction: column;
            }
        }
        @media (max-width: 480px) {
            .footer-links {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.8rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                border-radius: 8px;
                margin-bottom: 10px;
            }
            .search-form button {
                border-radius: 8px;
                padding: 15px;
            }
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-1 { margin-top: 1rem; }
        .mt-2 { margin-top: 2rem; }
        .py-1 { padding-top: 1rem; padding-bottom: 1rem; }
        .px-1 { padding-left: 1rem; padding-right: 1rem; }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.02); }
            100% { transform: scale(1); }
        }
        .pulse {
            animation: pulse 2s infinite;
        }
