        * { 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: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #2c5282; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #1a365d; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .site-header {
            background: linear-gradient(to right, #1a202c, #2d3748);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #f6d365 0%, #fda085 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .logo a:hover { opacity: 0.9; }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            color: #cbd5e0;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #fda085;
            transition: width 0.3s;
        }
        .nav-desktop a:hover { color: white; }
        .nav-desktop a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #2d3748;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 10px 15px rgba(0,0,0,0.2);
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            color: #cbd5e0;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid #4a5568;
        }
        .nav-mobile a:hover { background: #4a5568; color: white; }
        .breadcrumb {
            background: #edf2f7;
            padding: 0.8rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #4a5568; }
        .breadcrumb a:hover { color: #2c5282; }
        .breadcrumb span { color: #718096; }
        .main-content {
            flex: 1;
            padding: 2rem 0;
        }
        .article-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .article-grid { grid-template-columns: 1fr; }
        }
        .article-body {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        .article-body h1 {
            font-size: 2.8rem;
            color: #1a202c;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .article-body h2 {
            font-size: 2rem;
            color: #2d3748;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e2e8f0;
        }
        .article-body h3 {
            font-size: 1.5rem;
            color: #4a5568;
            margin: 1.8rem 0 0.8rem;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-body strong {
            color: #2d3748;
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(120deg, #e0f7fa 0%, #bbdefb 100%);
            border-left: 5px solid #2196f3;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            margin: 2.5rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            color: #718096;
            padding: 0.8rem;
            background: #f7fafc;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .widget {
            background: white;
            border-radius: 12px;
            padding: 1.8rem;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
        }
        .widget h3 {
            color: #2d3748;
            margin-bottom: 1.2rem;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .widget h3 i { color: #fda085; }
        .search-form input, .comment-form input, .comment-form textarea, .rating-form select {
            width: 100%;
            padding: 0.9rem;
            border: 1px solid #cbd5e0;
            border-radius: 8px;
            margin-bottom: 1rem;
            font-size: 1rem;
        }
        .search-form button, .comment-form button, .rating-form button {
            background: linear-gradient(to right, #2c5282, #1a365d);
            color: white;
            border: none;
            padding: 0.9rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            width: 100%;
        }
        .search-form button:hover, .comment-form button:hover, .rating-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(42, 94, 158, 0.3);
        }
        .star-rating {
            display: flex;
            justify-content: space-between;
            font-size: 1.8rem;
            color: #e2e8f0;
            margin-bottom: 1rem;
        }
        .star-rating .active { color: #f6d365; }
        .web-links-section {
            background: #1a202c;
            padding: 2.5rem 0;
            margin-top: 3rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.2rem;
        }
        .web-link {
            background: #2d3748;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: #4a5568;
            transform: translateX(5px);
        }
        .web-link a {
            color: #cbd5e0;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }
        .web-link a::before {
            content: '▶';
            color: #fda085;
            font-size: 0.8rem;
        }
        .site-footer {
            background: #0f1419;
            color: #a0aec0;
            padding: 3rem 0 1.5rem;
            margin-top: auto;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .copyright {
            border-top: 1px solid #2d3748;
            padding-top: 1.5rem;
            margin-top: 2rem;
            width: 100%;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-desktop { display: none; }
            .article-body { padding: 1.8rem; }
            .article-body h1 { font-size: 2.2rem; }
            .article-body h2 { font-size: 1.7rem; }
        }
