        * { 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%, #f0e6f5 100%);
            min-height: 100vh;
        }
        img { max-width: 100%; height: auto; display: block; }
        .site-header {
            background: linear-gradient(90deg, #2c003e, #4a1e5a);
            color: white;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-family: 'Palatino Linotype', 'Book Antiqua', serif;
            font-size: 2.2rem;
            font-weight: 700;
            background: linear-gradient(45deg, #ff9a9e, #fad0c4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            letter-spacing: 1px;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            color: #e0c7ff;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            transition: all 0.3s ease;
        }
        .nav-desktop a:hover, .nav-desktop a.active {
            background-color: #7b4397;
            color: white;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #3a004f;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem 2rem;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #e0c7ff;
            text-decoration: none;
            padding: 1rem 0;
            border-bottom: 1px solid #5a2a72;
            font-weight: 500;
        }
        .nav-mobile a:hover {
            color: white;
            padding-left: 10px;
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background-color: #f8f0ff;
            font-size: 0.9rem;
            border-bottom: 1px solid #e6d5f5;
        }
        .breadcrumb a {
            color: #7b4397;
            text-decoration: none;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb span { color: #555; }
        .main-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
        }
        @media (max-width: 1024px) {
            .main-container { grid-template-columns: 1fr; }
        }
        .article-content {
            background: white;
            border-radius: 16px;
            padding: 3rem;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        }
        .article-content h1 {
            color: #2c003e;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid #ff9a9e;
            padding-bottom: 0.5rem;
        }
        .article-content h2 {
            color: #4a1e5a;
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            padding-left: 10px;
            border-left: 5px solid #7b4397;
        }
        .article-content h3 {
            color: #5a2a72;
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        .article-content h4 {
            color: #7b4397;
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .article-content .lead {
            font-size: 1.3rem;
            color: #444;
            background-color: #f9f5ff;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid #ff9a9e;
            margin-bottom: 2.5rem;
        }
        .highlight-box {
            background: linear-gradient(120deg, #fff5f7, #f8f0ff);
            border: 2px dashed #d8b4fe;
            border-radius: 12px;
            padding: 2rem;
            margin: 2.5rem 0;
        }
        .highlight-box h3 { color: #c94f7c; margin-top: 0; }
        .article-content strong {
            color: #9d4edd;
            font-weight: 700;
        }
        .article-content em { color: #555; }
        .article-content a {
            color: #9d4edd;
            text-decoration: none;
            border-bottom: 1px dotted #9d4edd;
            transition: all 0.2s;
        }
        .article-content a:hover {
            color: #ff6b9d;
            border-bottom: 2px solid #ff6b9d;
        }
        .article-img {
            float: right;
            margin: 1rem 0 1.5rem 2.5rem;
            border-radius: 12px;
            border: 5px solid #f0e6f5;
            max-width: 450px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            shape-outside: margin-box;
        }
        @media (max-width: 768px) {
            .article-img { float: none; margin: 1.5rem auto; max-width: 100%; }
        }
        .update-time {
            font-size: 0.9rem;
            color: #777;
            text-align: right;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            border-radius: 12px;
            padding: 1.8rem;
            box-shadow: 0 6px 20px rgba(0,0,0,0.06);
        }
        .widget h3 {
            color: #4a1e5a;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e0c7ff;
        }
        .search-form input[type="text"] {
            width: 100%;
            padding: 0.9rem;
            border: 2px solid #d8b4fe;
            border-radius: 25px;
            font-size: 1rem;
            margin-bottom: 1rem;
        }
        .search-form button {
            width: 100%;
            padding: 0.9rem;
            background: linear-gradient(45deg, #7b4397, #dc2430);
            color: white;
            border: none;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .search-form button:hover {
            transform: translateY(-3px);
        }
        .rating-form .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1.5rem 0;
        }
        .rating-form .stars i {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-form .stars i:hover,
        .rating-form .stars i.active {
            color: #ffd700;
        }
        .rating-form button {
            width: 100%;
            padding: 0.8rem;
            background-color: #4a1e5a;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #d8b4fe;
            border-radius: 10px;
            resize: vertical;
            min-height: 120px;
            margin-bottom: 1rem;
            font-family: inherit;
        }
        .comment-form button {
            padding: 0.8rem 1.5rem;
            background-color: #ff9a9e;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
        }
        .site-footer {
            background: linear-gradient(90deg, #2c003e, #1a0024);
            color: #e0c7ff;
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(45deg, #ff9a9e, #fad0c4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .friend-links a {
            color: #d8b4fe;
            text-decoration: none;
            padding: 0.5rem 1rem;
            background-color: rgba(255,255,255,0.05);
            border-radius: 6px;
            transition: background 0.3s;
        }
        .friend-links a:hover {
            background-color: rgba(255,255,255,0.1);
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid #5a2a72;
            font-size: 0.9rem;
            color: #b39cd0;
        }
        .clearfix::after {
            content: "";
            clear: both;
            display: table;
        }
        .text-center { text-align: center; }
        .mb-2 { margin-bottom: 2rem; }
