        * { 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.8;
            color: #333;
            background-color: #fefefe;
            background-image: linear-gradient(to bottom, #fff 0%, #f9f4ff 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #9c27b0; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #6a0080; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
        .site-header {
            background: linear-gradient(135deg, #7b1fa2 0%, #4a0072 100%);
            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;
        }
        .my-logo {
            font-family: Georgia, serif;
            font-size: 2.5rem;
            font-weight: bold;
            color: #ffeb3b;
            text-shadow: 2px 2px 0 #9c27b0;
        }
        .my-logo:hover { color: #fff; text-shadow: 2px 2px 0 #6a0080; }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-desktop { display: flex; }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        .nav-desktop a {
            color: white;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-desktop a:hover { background: rgba(255,255,255,0.2); }
        .breadcrumb {
            background: #e1bee7;
            padding: 0.8rem 20px;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #4a0072; }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb span { color: #666; }
        .main-content {
            flex: 1;
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 3px dashed #9c27b0;
        }
        .article-header h1 {
            font-size: 3.2rem;
            color: #4a0072;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-header .meta {
            color: #666;
            font-style: italic;
            font-size: 0.95rem;
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-area { grid-template-columns: 1fr; }
        }
        .article-body {
            font-size: 1.1rem;
        }
        .article-body h2 {
            font-size: 2.2rem;
            color: #7b1fa2;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e1bee7;
        }
        .article-body h3 {
            font-size: 1.8rem;
            color: #9c27b0;
            margin: 2rem 0 1rem;
        }
        .article-body h4 {
            font-size: 1.4rem;
            color: #ba68c8;
            margin: 1.5rem 0 0.8rem;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-body strong {
            color: #4a0072;
            font-weight: 700;
        }
        .article-body em { color: #666; }
        .highlight-box {
            background: #f3e5f5;
            border-left: 5px solid #9c27b0;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .inline-link-list {
            background: #fff;
            border: 1px solid #ce93d8;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .inline-link-list a {
            display: block;
            padding: 0.7rem;
            background: #f5f5f5;
            border-radius: 5px;
        }
        .inline-link-list a:hover { background: #e1bee7; }
        .featured-img {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 800px;
        }
        .featured-img img {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            border: 8px solid white;
        }
        .featured-img figcaption {
            font-style: italic;
            color: #666;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .sidebar {
            background: #f9f9f9;
            padding: 1.5rem;
            border-radius: 15px;
            border: 1px solid #e0e0e0;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            color: #7b1fa2;
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e1bee7;
        }
        .search-form input[type="search"] {
            width: 100%;
            padding: 12px;
            border: 2px solid #ba68c8;
            border-radius: 8px;
            font-size: 1rem;
        }
        .search-form button {
            width: 100%;
            margin-top: 10px;
            padding: 12px;
            background: linear-gradient(to right, #7b1fa2, #9c27b0);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover { background: linear-gradient(to right, #6a0080, #7b1fa2); }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            font-size: 2rem;
            color: #ffc107;
            margin: 1rem 0;
        }
        .rating-widget .stars i { cursor: pointer; }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 12px;
            border: 2px solid #ba68c8;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            resize: vertical;
        }
        .comment-form button {
            width: 100%;
            margin-top: 10px;
            padding: 12px;
            background: linear-gradient(to right, #4a0072, #7b1fa2);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
        }
        .update-time {
            background: #e8f5e9;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            font-weight: bold;
            color: #2e7d32;
            border: 1px dashed #4caf50;
        }
        .site-footer {
            background: #2d0036;
            color: #e1bee7;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-section h4 {
            color: #ffeb3b;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        .footer-section h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: #9c27b0;
        }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 0.8rem; }
        .footer-links a {
            color: #ce93d8;
            display: block;
            padding: 0.3rem 0;
        }
        .footer-links a:hover { color: #ffeb3b; padding-left: 10px; }
        friend-link {
            display: block;
            background: #4a0072;
            color: white;
            padding: 1rem;
            margin: 1rem 0;
            border-radius: 8px;
            text-align: center;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #4a0072;
            color: #ba68c8;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .mobile-toggle { display: block; }
            .nav-desktop {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #4a0072;
                flex-direction: column;
                padding: 1rem;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            .nav-desktop.active { display: flex; }
            .nav-desktop ul { flex-direction: column; gap: 0; }
            .nav-desktop a {
                display: block;
                padding: 1rem;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .article-header h1 { font-size: 2.5rem; }
            .article-body h2 { font-size: 2rem; }
            .article-body h3 { font-size: 1.6rem; }
            .header-container { padding: 0 15px; }
        }
        @media print {
            .site-header, .sidebar, .site-footer, .mobile-toggle { display: none; }
            .content-area { grid-template-columns: 1fr; }
            body { background: white; color: black; }
        }
