        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f9f7ff;
            background-image: linear-gradient(to bottom right, #f0edff, #ffffff);
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a { color: #7c4dff; text-decoration: none; transition: color 0.3s ease, transform 0.2s ease; }
        a:hover { color: #5a1ee6; transform: translateY(-2px); }
        img { max-width: 100%; height: auto; display: block; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
        ul, ol { padding-left: 1.5em; margin-bottom: 1.5em; }
        li { margin-bottom: 0.5em; }
        .site-header {
            padding: 2rem 0 1rem;
            border-bottom: 2px solid #e6e1ff;
            margin-bottom: 2rem;
            position: relative;
        }
        .my-logo {
            font-family: 'Arial Rounded MT Bold', sans-serif;
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(90deg, #7c4dff, #ff6b8b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: center;
            display: block;
            margin-bottom: 1rem;
            letter-spacing: -1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
        }
        .my-logo:hover { transform: scale(1.02); }
        .main-nav {
            background: linear-gradient(135deg, #6a40ff 0%, #8a5cf5 100%);
            border-radius: 12px;
            padding: 1rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 8px 25px rgba(106, 64, 255, 0.2);
        }
        .nav-list {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
        }
        .nav-list a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-list a:hover { background-color: rgba(255, 255, 255, 0.15); transform: none; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            position: absolute;
            top: 1rem;
            right: 1rem;
            z-index: 1000;
        }
        .breadcrumb {
            padding: 0.8rem 1rem;
            background-color: #f0edff;
            border-radius: 8px;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #5a1ee6; }
        .breadcrumb i { margin: 0 0.5rem; color: #999; }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-wrapper { grid-template-columns: 1fr; }
        }
        article { background: white; padding: 2.5rem; border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.06); }
        h1 { color: #3a2c6d; font-size: 2.8rem; margin-bottom: 1.5rem; line-height: 1.2; border-bottom: 3px solid #7c4dff; padding-bottom: 1rem; }
        h2 { color: #5a1ee6; font-size: 2rem; margin: 2.5rem 0 1.2rem; padding-top: 1rem; border-top: 1px dashed #e6e1ff; }
        h3 { color: #7c4dff; font-size: 1.6rem; margin: 2rem 0 1rem; }
        h4 { color: #8a5cf5; font-size: 1.3rem; margin: 1.5rem 0 0.8rem; }
        p { margin-bottom: 1.5em; font-size: 1.1rem; color: #444; }
        .lead { font-size: 1.3rem; color: #5a1ee6; font-weight: 500; padding: 1rem; background: #f8f5ff; border-left: 4px solid #7c4dff; border-radius: 4px; }
        .highlight { background: linear-gradient(120deg, #fffbcc 0%, #fffbcc 100%); padding: 0.2em 0.4em; border-radius: 3px; font-weight: 600; }
        .emoji { font-size: 1.2em; margin-right: 0.3em; }
        aside { background: white; padding: 2rem; border-radius: 16px; box-shadow: 0 8px 30px rgba(0,0,0,0.06); align-self: start; position: sticky; top: 2rem; }
        .sidebar-widget { margin-bottom: 2.5rem; }
        .sidebar-widget h3 { font-size: 1.4rem; margin-top: 0; border-bottom: 2px solid #f0edff; padding-bottom: 0.7rem; }
        .search-form { display: flex; margin-bottom: 1rem; }
        .search-input { flex: 1; padding: 0.9rem 1rem; border: 2px solid #7c4dff; border-radius: 8px 0 0 8px; font-size: 1rem; }
        .search-btn { background: #7c4dff; color: white; border: none; padding: 0 1.5rem; border-radius: 0 8px 8px 0; cursor: pointer; font-size: 1.1rem; transition: background 0.3s; }
        .search-btn:hover { background: #5a1ee6; }
        .comment-form textarea, .rating-form select {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            border: 2px solid #e6e1ff;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .comment-form textarea:focus, .rating-form select:focus { border-color: #7c4dff; outline: none; }
        .submit-btn { background: linear-gradient(90deg, #7c4dff, #ff6b8b); color: white; border: none; padding: 1rem 2rem; border-radius: 8px; font-weight: bold; cursor: pointer; width: 100%; transition: transform 0.3s, box-shadow 0.3s; }
        .submit-btn:hover { transform: translateY(-3px); box-shadow: 0 7px 15px rgba(124, 77, 255, 0.4); }
        .star-rating { display: flex; justify-content: space-between; margin-bottom: 1rem; font-size: 1.8rem; color: #ffd700; }
        .related-links { list-style: none; padding-left: 0; }
        .related-links li { margin-bottom: 0.8rem; padding: 0.8rem 1rem; background: #f9f7ff; border-radius: 8px; border-left: 4px solid #8a5cf5; transition: transform 0.2s; }
        .related-links li:hover { transform: translateX(5px); background: #f0edff; }
        .related-links a { color: #3a2c6d; font-weight: 500; display: block; }
        .featured-image { margin: 2.5rem 0; text-align: center; }
        .featured-image figcaption { margin-top: 0.8rem; font-style: italic; color: #666; font-size: 0.95rem; }
        .site-footer {
            margin-top: 4rem;
            padding: 3rem 0;
            background: linear-gradient(135deg, #3a2c6d 0%, #5a1ee6 100%);
            color: white;
            border-radius: 20px 20px 0 0;
            text-align: center;
        }
        .friend-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 2rem 0;
        }
        friend-link {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem 2rem;
            border-radius: 10px;
            transition: all 0.3s;
        }
        friend-link a { color: #ffcc00; font-weight: bold; }
        friend-link:hover { background: rgba(255, 255, 255, 0.2); transform: scale(1.05); }
        .copyright { margin-top: 2rem; font-size: 0.9rem; color: #ccc; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 2rem; }
        .last-updated { text-align: right; font-size: 0.9rem; color: #888; margin-bottom: 2rem; font-style: italic; }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-list {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #6a40ff;
                border-radius: 12px;
                padding: 1rem;
                z-index: 999;
                box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            }
            .nav-list.active { display: flex; }
            .nav-list li { width: 100%; text-align: center; }
            .nav-list a { justify-content: center; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.4rem; }
            .content-wrapper, article, aside { padding: 1.5rem; }
        }
