* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f9f7ff;
            color: #333;
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: #6a5acd;
        }
        a:hover {
            color: #9370db;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #8a2be2, #da70d6);
            color: white;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: bold;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            font-size: 2.5rem;
        }
        .my-logo:hover {
            color: #ffeb3b;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav ul li a {
            color: white;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 5px;
            transition: background 0.3s;
        }
        nav ul li a:hover {
            background: rgba(255,255,255,0.2);
            text-decoration: none;
        }
        .breadcrumb {
            margin-top: 10px;
            font-size: 0.9rem;
            color: #e0d6ff;
        }
        .breadcrumb a {
            color: #ffeb3b;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
        }
        h1 {
            font-size: 2.8rem;
            color: #8a2be2;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #6a5acd;
            margin: 25px 0 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #e6e6fa;
        }
        h3 {
            font-size: 1.6rem;
            color: #9370db;
            margin: 20px 0 10px;
        }
        h4 {
            font-size: 1.3rem;
            color: #ba55d3;
            margin: 15px 0 8px;
        }
        p {
            margin-bottom: 18px;
            text-align: justify;
        }
        .highlight {
            background: #fffacd;
            padding: 15px;
            border-left: 5px solid #ffd700;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }
        .image-container {
            text-align: center;
            margin: 25px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 5px;
        }
        aside {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
            height: fit-content;
        }
        .sidebar-widget {
            margin-bottom: 25px;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            color: #8a2be2;
            margin-bottom: 15px;
        }
        .search-form, .comment-form, .score-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        input, textarea, select {
            padding: 12px;
            border: 2px solid #e6e6fa;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #8a2be2;
            outline: none;
        }
        button {
            background: linear-gradient(135deg, #8a2be2, #9370db);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: bold;
            transition: background 0.3s, transform 0.2s;
        }
        button:hover {
            background: linear-gradient(135deg, #7b1fa2, #8a2be2);
            transform: translateY(-2px);
        }
        .stars {
            display: flex;
            gap: 5px;
            justify-content: center;
            margin: 10px 0;
        }
        .stars i {
            color: #ffd700;
            cursor: pointer;
            font-size: 1.5rem;
            transition: color 0.3s;
        }
        .stars i:hover {
            color: #ffa500;
        }
        .update-time {
            font-size: 0.9rem;
            color: #666;
            text-align: center;
            margin-top: 20px;
            font-style: italic;
        }
        footer {
            background: #2d0036;
            color: white;
            padding: 30px 0;
            margin-top: 40px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 25px;
        }
        friend-link {
            display: block;
            margin: 8px 0;
            color: #ffccff;
            font-size: 1rem;
        }
        friend-link:hover {
            color: #ffeb3b;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #ccc;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .header-top {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #8a2be2;
                position: absolute;
                top: 100px;
                left: 0;
                padding: 20px;
                z-index: 1000;
                border-radius: 0 0 15px 15px;
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
            }
            .content-grid {
                gap: 20px;
            }
            article, aside {
                padding: 20px;
            }
        }
