        * { 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: #333;
            background-color: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        a { text-decoration: none; color: inherit; transition: color 0.3s; }
        :root {
            --primary: #4a6bff;
            --primary-dark: #3a56d4;
            --secondary: #ff6b8b;
            --accent: #00d4aa;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --gray: #6c757d;
            --border: #dee2e6;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --radius: 8px;
            --transition: all 0.3s ease;
        }
        .header {
            background: linear-gradient(135deg, var(--dark) 0%, #16213e 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i { color: var(--accent); }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-desktop a {
            color: #ddd;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a:hover { color: white; }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            width: 100%;
            background: var(--dark);
            padding: 1rem;
            border-top: 1px solid #333;
        }
        .nav-mobile.active { display: block; }
        .nav-mobile ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .nav-mobile a {
            color: #ddd;
            display: block;
            padding: 0.8rem;
            border-radius: var(--radius);
        }
        .nav-mobile a:hover { background: rgba(255,255,255,0.1); }
        .breadcrumb {
            max-width: 1200px;
            margin: 1rem auto;
            padding: 0 1.5rem;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: var(--primary); }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb i { margin: 0 0.5rem; color: var(--gray); }
        .search-container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1.5rem;
        }
        .search-box {
            display: flex;
            background: white;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 2px solid var(--border);
        }
        .search-box input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            outline: none;
            font-size: 1rem;
        }
        .search-box button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-box button:hover { background: var(--primary-dark); }
        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .main-container { grid-template-columns: 1fr; }
        }
        .article {
            background: white;
            padding: 2.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        .article h1 {
            color: var(--dark);
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .article h2 {
            color: var(--primary-dark);
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--accent);
        }
        .article h3 {
            color: var(--secondary);
            font-size: 1.4rem;
            margin: 2rem 0 1rem;
        }
        .article p {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
            text-align: justify;
        }
        .article emoji { font-size: 1.2rem; margin-right: 0.5rem; }
        .article strong {
            color: var(--primary-dark);
            font-weight: 700;
        }
        .article blockquote {
            background: #f1f8ff;
            border-left: 5px solid var(--primary);
            padding: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .article-image {
            margin: 2.5rem auto;
            text-align: center;
        }
        .article-image img {
            border-radius: var(--radius);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            border: 5px solid white;
        }
        .article-image figcaption {
            margin-top: 0.8rem;
            font-size: 0.9rem;
            color: var(--gray);
            font-style: italic;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            color: var(--dark);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border);
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1.5rem 0;
            font-size: 2rem;
            color: #ffc107;
        }
        .rating-stars .star { cursor: pointer; transition: transform 0.2s; }
        .rating-stars .star:hover { transform: scale(1.2); }
        .rating-form button {
            width: 100%;
            padding: 0.8rem;
            background: var(--secondary);
            color: white;
            border: none;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .rating-form button:hover { background: #e55a74; }
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            font-family: inherit;
        }
        .comment-form button {
            width: 100%;
            padding: 0.8rem;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .comment-form button:hover { background: var(--primary-dark); }
        .footer-links {
            max-width: 1200px;
            margin: 3rem auto 2rem;
            padding: 0 1.5rem;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: white;
            padding: 1.2rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border-left: 4px solid var(--accent);
        }
        .web-link a {
            color: var(--primary);
            font-weight: 600;
            display: block;
        }
        .web-link a:hover { color: var(--primary-dark); text-decoration: underline; }
        .footer {
            background: var(--dark);
            color: #ccc;
            padding: 3rem 0 2rem;
            text-align: center;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .header-container { padding: 0 1rem; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .article { padding: 1.8rem; }
            .article h1 { font-size: 2rem; }
            .article h2 { font-size: 1.6rem; }
            .footer-links { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            .article { padding: 1.5rem; }
            .sidebar-widget { padding: 1.5rem; }
        }
