        * { 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: #2c3e50;
            background: linear-gradient(135deg, #f9f7ff 0%, #f0edfd 100%);
            min-height: 100vh;
        }
        h1, h2, h3, h4 { font-family: 'Georgia', serif; color: #5d3fd3; margin-bottom: 1rem; }
        h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); border-bottom: 3px solid #ff6b8b; padding-bottom: 0.5rem; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); color: #7e5bef; margin-top: 2.5rem; }
        h3 { font-size: 1.5rem; color: #9b87f5; }
        p { margin-bottom: 1.5rem; text-align: justify; }
        a { color: #5d3fd3; text-decoration: none; transition: all 0.3s ease; }
        a:hover { color: #ff6b8b; text-decoration: underline; }
        strong { color: #ff4757; }
        em { color: #3742fa; font-style: italic; }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(90deg, #1e0b5f 0%, #5d3fd3 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 18px rgba(93, 63, 211, 0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            text-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
            letter-spacing: 1px;
        }
        .logo a:hover { text-decoration: none; color: #ffd166; }
        .nav-desktop { display: flex; gap: 2rem; }
        .nav-desktop a {
            color: #e0d6ff;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 25px;
        }
        .nav-desktop a:hover {
            background: rgba(255, 255, 255, 0.15);
            text-decoration: none;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #2a1a7c;
            padding: 1rem;
            border-radius: 10px;
            margin-top: 1rem;
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            color: white;
            padding: 0.8rem;
            border-bottom: 1px solid #4a3a9c;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            background: #f1eeff;
            border-bottom: 1px solid #ddd;
        }
        .breadcrumb a { color: #666; }
        .breadcrumb span { color: #999; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        .article-meta {
            color: #777;
            font-size: 0.95rem;
            margin-bottom: 2rem;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 15px;
            margin: 2rem 0;
            border: 5px solid #f0edfd;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s ease;
        }
        .featured-image:hover { transform: scale(1.01); }
        .highlight-box {
            background: linear-gradient(120deg, #ffe8f0, #f0f4ff);
            border-left: 5px solid #ff6b8b;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: 15px;
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
        }
        .sidebar-widget h3 {
            border-bottom: 2px dashed #7e5bef;
            padding-bottom: 0.7rem;
            margin-bottom: 1.2rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .search-form input, .comment-form input, .comment-form textarea, .rating-form select {
            padding: 0.9rem;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .search-form input:focus, .comment-form input:focus, .comment-form textarea:focus, .rating-form select:focus {
            border-color: #7e5bef;
            outline: none;
        }
        .form-group { display: flex; flex-direction: column; }
        label { font-weight: 600; margin-bottom: 0.3rem; color: #555; }
        button, .btn {
            background: linear-gradient(90deg, #5d3fd3, #7e5bef);
            color: white;
            border: none;
            padding: 1rem 1.8rem;
            border-radius: 10px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        button:hover, .btn:hover {
            background: linear-gradient(90deg, #ff6b8b, #ff8e9e);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(255, 107, 139, 0.3);
        }
        .star-rating { display: flex; gap: 0.3rem; font-size: 1.5rem; }
        .star-rating i { color: #ffd700; cursor: pointer; }
        .star-rating i:hover { transform: scale(1.2); }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
        }
        .web-link {
            background: white;
            padding: 1.2rem;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border-left: 4px solid #5d3fd3;
        }
        .web-link:hover { transform: translateX(5px); }
        .site-footer {
            background: #1e0b5f;
            color: #c0b3ff;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #4a3a9c;
            font-size: 0.9rem;
            color: #a99ce0;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-desktop { display: none; }
            .header-content { flex-wrap: wrap; }
            article { padding: 1.5rem; }
            .main-content { gap: 1.5rem; }
        }
