*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f8f5f0;
            color: #2d2a24;
            line-height: 1.7;
            font-size: 1.0625rem;
        }
        a {
            color: #8b3a8f;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #5c2d5f;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #f3e7f5 0%, #e8d5ed 100%);
            border-bottom: 1px solid #dcc9e0;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #7c3a7f, #b56bb9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: opacity 0.2s;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #7c3a7f;
            margin-right: 6px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #7c3a7f;
            color: #7c3a7f;
            font-size: 1.5rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s, color 0.2s;
        }
        .nav-toggle:hover {
            background: #7c3a7f;
            color: #fff;
        }
        .primary-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .primary-nav a {
            padding: 8px 16px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            color: #3d2e3f;
            transition: background 0.2s, color 0.2s;
        }
        .primary-nav a:hover {
            background: #7c3a7f;
            color: #fff;
            text-decoration: none;
        }
        .primary-nav a.active {
            background: #7c3a7f;
            color: #fff;
        }
        .breadcrumb {
            padding: 12px 0 4px;
            font-size: 0.9rem;
            color: #6b5e6d;
        }
        .breadcrumb a {
            color: #7c3a7f;
        }
        .breadcrumb i {
            margin: 0 6px;
            font-size: 0.7rem;
            color: #b59cb8;
        }
        .hero {
            padding: 40px 0 20px;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            color: #3d2e3f;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }
        .hero h1 i {
            color: #b56bb9;
            margin-right: 10px;
        }
        .hero .subhead {
            font-size: 1.2rem;
            color: #5e4d61;
            margin-top: 12px;
            max-width: 720px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero .meta {
            margin-top: 16px;
            font-size: 0.95rem;
            color: #7a6b7d;
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .hero .meta i {
            margin-right: 6px;
            color: #8b3a8f;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0 50px;
        }
        .main-article h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #3d2e3f;
            margin-top: 48px;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 4px solid #e8d5ed;
        }
        .main-article h2:first-of-type {
            margin-top: 0;
        }
        .main-article h2 i {
            color: #b56bb9;
            margin-right: 10px;
        }
        .main-article h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #4d3a4f;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        .main-article h3 i {
            color: #8b3a8f;
            margin-right: 8px;
            font-size: 1.3rem;
        }
        .main-article h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #5c4a5e;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        .main-article p {
            margin-bottom: 18px;
            color: #3a343a;
        }
        .main-article p b,
        .main-article p strong {
            color: #3d2e3f;
        }
        .main-article ul,
        .main-article ol {
            margin: 12px 0 20px 28px;
            color: #3a343a;
        }
        .main-article li {
            margin-bottom: 8px;
        }
        .main-article blockquote {
            border-left: 5px solid #b56bb9;
            background: #f3eaf5;
            padding: 18px 24px;
            margin: 24px 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #4d3a4f;
        }
        .main-article blockquote strong {
            color: #7c3a7f;
        }
        .main-article .highlight-box {
            background: #f3eaf5;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 28px 0;
            border: 1px solid #e0cee4;
        }
        .main-article .highlight-box i {
            color: #b56bb9;
            margin-right: 8px;
        }
        .main-article table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: 0.98rem;
        }
        .main-article table th {
            background: #e8d5ed;
            color: #3d2e3f;
            padding: 12px 16px;
            text-align: left;
            font-weight: 700;
        }
        .main-article table td {
            padding: 10px 16px;
            border-bottom: 1px solid #e0cee4;
        }
        .main-article table tr:hover td {
            background: #f8f2fa;
        }
        .main-article .feature-img {
            margin: 32px 0;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .main-article .feature-img figcaption {
            text-align: center;
            font-size: 0.9rem;
            color: #6b5e6d;
            margin-top: 10px;
            font-style: italic;
        }
        .main-article hr {
            border: none;
            border-top: 2px dashed #e0cee4;
            margin: 40px 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #ede6f0;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #3d2e3f;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card h3 i {
            color: #b56bb9;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 8px 0;
            border-bottom: 1px solid #f0e8f2;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card ul li a i {
            color: #b56bb9;
            font-size: 0.85rem;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin-bottom: 6px;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 10px 16px;
            border: 2px solid #e0cee4;
            border-radius: 40px;
            font-size: 0.95rem;
            background: #fff;
            transition: border-color 0.2s;
            outline: none;
        }
        .search-form input[type="text"]:focus {
            border-color: #b56bb9;
        }
        .search-form button {
            padding: 10px 20px;
            background: #7c3a7f;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-form button:hover {
            background: #5c2d5f;
            transform: scale(0.97);
        }
        .comment-form textarea,
        .comment-form input[type="text"] {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0cee4;
            border-radius: 12px;
            font-size: 0.95rem;
            background: #fff;
            transition: border-color 0.2s;
            outline: none;
            font-family: inherit;
            margin-bottom: 12px;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form textarea:focus,
        .comment-form input[type="text"]:focus {
            border-color: #b56bb9;
        }
        .comment-form button,
        .score-form button {
            padding: 10px 28px;
            background: #7c3a7f;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            font-size: 0.95rem;
        }
        .comment-form button:hover,
        .score-form button:hover {
            background: #5c2d5f;
            transform: scale(0.97);
        }
        .score-form {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .score-form select {
            padding: 10px 16px;
            border: 2px solid #e0cee4;
            border-radius: 40px;
            font-size: 0.95rem;
            background: #fff;
            outline: none;
            cursor: pointer;
        }
        .score-form select:focus {
            border-color: #b56bb9;
        }
        .rating-stars {
            display: flex;
            gap: 4px;
            color: #e6c842;
            font-size: 1.3rem;
        }
        .site-footer {
            background: #2d2a24;
            color: #ddd8d0;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        .site-footer h3 {
            color: #f0e8f2;
            font-size: 1.2rem;
            margin-bottom: 16px;
        }
        .site-footer a {
            color: #d4b0d8;
        }
        .site-footer a:hover {
            color: #f0e8f2;
        }
        .site-footer .copyright {
            grid-column: 1 / -1;
            border-top: 1px solid #4a3f4a;
            padding-top: 20px;
            margin-top: 20px;
            text-align: center;
            font-size: 0.9rem;
            color: #a898a8;
        }
        friend-link {
            display: block;
            margin-top: 10px;
        }
        friend-link a {
            display: inline-block;
            margin-right: 24px;
            margin-bottom: 6px;
            font-weight: 600;
        }
        friend-link a i {
            margin-right: 6px;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .hero h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 700px) {
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #fff;
                padding: 16px;
                border-radius: 16px;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
                margin-top: 8px;
                border: 1px solid #e0cee4;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 12px 16px;
                border-radius: 8px;
                width: 100%;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .hero .meta {
                flex-direction: column;
                gap: 6px;
                align-items: center;
            }
            .main-article h2 {
                font-size: 1.6rem;
            }
            .main-article h3 {
                font-size: 1.25rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .wrapper {
                padding: 0 12px;
            }
            .hero h1 {
                font-size: 1.4rem;
            }
            .search-form {
                flex-direction: column;
            }
            .score-form {
                flex-direction: column;
                align-items: stretch;
            }
        }
        .text-sm {
            font-size: 0.9rem;
            color: #6b5e6d;
        }
        .mt-1 {
            margin-top: 12px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .gap-2 {
            gap: 16px;
        }
