        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: #f8f7f4;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #5b3e8d;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #3f2a6b;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4 {
            line-height: 1.3;
            color: #1a1a2e;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 1rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #7c5cbf;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.35rem;
            color: #2d2d44;
        }
        h4 {
            font-size: 1.1rem;
            color: #3d3d5c;
        }
        p {
            margin-bottom: 1.2rem;
        }
        blockquote {
            margin: 1.5rem 0;
            padding: 1rem 1.5rem;
            background: #edeaf5;
            border-left: 6px solid #7c5cbf;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #2e2e42;
        }
        hr {
            border: 0;
            height: 2px;
            background: linear-gradient(90deg, #7c5cbf, #d4c9f0, #7c5cbf);
            margin: 2.5rem 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
            border-radius: 24px;
            padding: 1.5rem 2rem 2rem;
        }
        @media (max-width: 768px) {
            .container {
                padding: 1rem 1.2rem 1.5rem;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            body {
                padding: 0 0.5rem;
            }
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0 0.8rem;
            border-bottom: 2px solid #e8e2f5;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #5b3e8d, #9a7cd1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: #6b5b83;
            color: #6b5b83;
            display: block;
            letter-spacing: 0.4px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #5b3e8d;
            color: #5b3e8d;
            font-size: 1.6rem;
            padding: 0.2rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s, color 0.2s;
        }
        .nav-toggle:hover,
        .nav-toggle:focus {
            background: #5b3e8d;
            color: #fff;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 1.2rem;
            align-items: center;
        }
        .main-nav a {
            font-weight: 500;
            padding: 0.3rem 0;
            position: relative;
            color: #2d2d44;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #7c5cbf;
            transition: width 0.25s;
        }
        .main-nav a:hover::after,
        .main-nav a:focus::after {
            width: 100%;
        }
        .main-nav a.active {
            color: #5b3e8d;
            font-weight: 600;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                flex-basis: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 1rem 0 0.5rem;
                gap: 0.6rem;
            }
            .main-nav.open {
                display: flex;
            }
        }
        .breadcrumbs {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.8rem 0 0.2rem;
            margin: 0;
            font-size: 0.9rem;
            color: #6f6f82;
        }
        .breadcrumbs li {
            margin-right: 0.5rem;
            margin-bottom: 0.2rem;
        }
        .breadcrumbs li+li::before {
            content: '›';
            margin-right: 0.5rem;
            color: #9a8bb8;
        }
        .breadcrumbs a {
            color: #5b3e8d;
        }
        .breadcrumbs .current {
            color: #2d2d44;
            font-weight: 500;
        }
        .search-box {
            display: flex;
            max-width: 500px;
            margin: 1.5rem 0 2rem;
            border-radius: 60px;
            overflow: hidden;
            border: 2px solid #d4c9f0;
            background: #fff;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .search-box:focus-within {
            border-color: #7c5cbf;
            box-shadow: 0 0 0 4px rgba(124, 92, 191, 0.15);
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 0.8rem 1.2rem;
            font-size: 1rem;
            background: transparent;
            outline: none;
            color: #1e1e2a;
        }
        .search-box button {
            background: #7c5cbf;
            color: #fff;
            border: none;
            padding: 0 1.5rem;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-box button:hover {
            background: #5b3e8d;
        }
        .rating-area {
            background: #f4f1fb;
            border-radius: 16px;
            padding: 1.6rem 2rem;
            margin: 2rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.5rem 2.5rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.2rem;
            font-size: 1.8rem;
            color: #d4c9f0;
            cursor: pointer;
        }
        .rating-stars .star {
            transition: color 0.15s, transform 0.15s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.hover {
            color: #f5b342;
            transform: scale(1.15);
        }
        .rating-stars .star.selected {
            color: #f5b342;
        }
        .rating-form {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.8rem 1.2rem;
        }
        .rating-form input[type="number"] {
            width: 80px;
            padding: 0.5rem 0.8rem;
            border: 2px solid #d4c9f0;
            border-radius: 8px;
            font-size: 1rem;
            background: #fff;
            outline: none;
        }
        .rating-form input[type="number"]:focus {
            border-color: #7c5cbf;
        }
        .rating-form button {
            background: #7c5cbf;
            color: #fff;
            border: none;
            padding: 0.5rem 1.6rem;
            border-radius: 60px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-form button:hover {
            background: #5b3e8d;
        }
        .rating-average {
            font-weight: 600;
            color: #2d2d44;
        }
        .rating-average span {
            color: #f5b342;
            font-size: 1.4rem;
        }
        .comments-section {
            margin: 2.5rem 0;
        }
        .comments-section h3 {
            margin-top: 0;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            max-width: 650px;
            margin: 1.2rem 0 2rem;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 0.8rem 1.2rem;
            border: 2px solid #d4c9f0;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            background: #fff;
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: #7c5cbf;
            box-shadow: 0 0 0 4px rgba(124, 92, 191, 0.1);
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-form button {
            align-self: flex-start;
            background: #7c5cbf;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 60px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .comment-form button:hover {
            background: #5b3e8d;
        }
        .comment-list {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            margin-top: 1.5rem;
        }
        .comment-item {
            background: #f8f6fe;
            padding: 1.2rem 1.5rem;
            border-radius: 14px;
            border-left: 4px solid #d4c9f0;
        }
        .comment-item strong {
            color: #3f2a6b;
        }
        .comment-item .date {
            font-size: 0.8rem;
            color: #7f7f9a;
        }
        .feature-img {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        }
        .feature-img img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .feature-img figcaption {
            padding: 0.8rem 1.2rem;
            background: #f4f1fb;
            font-size: 0.9rem;
            color: #4a4a62;
            font-style: italic;
        }
        .related-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 0.8rem 1.2rem;
            margin: 1.5rem 0;
            padding: 1.2rem 1.5rem;
            background: #f4f1fb;
            border-radius: 16px;
        }
        .related-links a {
            display: block;
            padding: 0.5rem 0.8rem;
            background: #fff;
            border-radius: 10px;
            font-weight: 500;
            border: 1px solid #e0d8f0;
            transition: background 0.2s, border-color 0.2s, transform 0.15s;
        }
        .related-links a:hover {
            background: #edeaf5;
            border-color: #7c5cbf;
            transform: translateY(-2px);
            text-decoration: none;
        }
        .site-footer {
            margin-top: 3rem;
            padding-top: 1.8rem;
            border-top: 2px solid #e8e2f5;
            font-size: 0.95rem;
            color: #4a4a62;
        }
        .site-footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.5rem;
        }
        .site-footer .copyright {
            font-size: 0.85rem;
            color: #7f7f9a;
            margin-top: 1.2rem;
            text-align: center;
            width: 100%;
        }
        friend-link {
            display: block;
            padding: 0.8rem 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.6rem 0.2rem 0;
            padding: 0.3rem 1rem;
            background: #edeaf5;
            border-radius: 60px;
            font-size: 0.9rem;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #d4c9f0;
            text-decoration: none;
        }
        .last-updated {
            display: inline-block;
            background: #f4f1fb;
            padding: 0.3rem 1.2rem;
            border-radius: 60px;
            font-size: 0.85rem;
            color: #5b4b7a;
            margin: 0.5rem 0 1rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #faf9fe;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e0d8f0;
        }
        th {
            background: #edeaf5;
            font-weight: 600;
            color: #2d2d44;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .highlight {
            background: #f0ebff;
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
            font-weight: 500;
        }
        .tag {
            display: inline-block;
            background: #e0d8f0;
            padding: 0.1rem 0.8rem;
            border-radius: 60px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #3f2a6b;
            margin-right: 0.3rem;
        }
        @media (max-width: 480px) {
            .rating-area {
                flex-direction: column;
                align-items: flex-start;
                padding: 1.2rem;
            }
            .related-links {
                grid-template-columns: 1fr;
            }
            .site-footer .footer-inner {
                flex-direction: column;
            }
        }
