        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            background: #0d0b15;
            color: #e8e2f0;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #d4aaff;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.4rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f5eaff;
            letter-spacing: 0.01em;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 1.2rem;
            border-bottom: 3px solid #b073ff;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 2.8rem;
            margin-bottom: 1rem;
            border-left: 5px solid #b073ff;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 2rem;
            margin-bottom: 0.7rem;
            color: #dcc8ff;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.4rem;
            margin-bottom: 0.4rem;
            color: #cbb2ff;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1330 0%, #2a1f4a 100%);
            padding: 0.8rem 0;
            border-bottom: 2px solid #4a2f7a;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5d742, #d4aaff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-shadow: 0 0 20px rgba(180, 100, 255, 0.3);
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f5d742;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.88;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #7a4fbf;
            color: #e8e2f0;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #3a2a5a;
            border-color: #b073ff;
        }
        .nav-menu {
            display: flex;
            gap: 0.3rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            padding: 0.5rem 1.2rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #d4c2f0;
            transition: 0.25s;
            border: 1px solid transparent;
        }
        .nav-menu a:hover,
        .nav-menu a:focus {
            background: #3a2a5a;
            border-color: #8a5fd4;
            color: #ffd966;
            text-decoration: none;
        }
        .nav-menu a i {
            margin-right: 0.35rem;
            font-size: 0.9rem;
        }
        .breadcrumb {
            background: #1e1735;
            padding: 0.7rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #332855;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 0.3rem 0.8rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #8a7aaa;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #b69fdf;
        }
        .breadcrumb .current {
            color: #ffd966;
            font-weight: 600;
        }
        .main-content {
            flex: 1;
            padding: 2rem 0 3rem;
        }
        .featured-figure {
            margin: 1.8rem 0 2.4rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(100, 50, 200, 0.25);
            background: #1a1330;
            padding: 6px;
        }
        .featured-figure img {
            border-radius: 10px;
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .featured-figure figcaption {
            text-align: center;
            padding: 0.8rem 1rem 0.4rem;
            font-style: italic;
            color: #b8a8d8;
            font-size: 0.95rem;
        }
        .inline-link-list {
            background: #1e1735;
            padding: 1.2rem 1.8rem;
            border-radius: 14px;
            margin: 1.6rem 0;
            border-left: 5px solid #b073ff;
        }
        .inline-link-list ul {
            list-style: none;
            padding: 0;
            columns: 2 240px;
            column-gap: 2rem;
        }
        .inline-link-list li {
            margin-bottom: 0.6rem;
            break-inside: avoid;
        }
        .inline-link-list li::before {
            content: "✦ ";
            color: #d4aaff;
            font-weight: 700;
        }
        .interactive-section {
            background: linear-gradient(145deg, #1a1330, #241d3a);
            border-radius: 18px;
            padding: 1.8rem 2rem;
            margin: 2.8rem 0;
            border: 1px solid #3f2d62;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
        }
        .interactive-section h2 {
            margin-top: 0;
            border-left-color: #ffd966;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #dcc8ff;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 10px;
            border: 2px solid #3f2d62;
            background: #0f0b1a;
            color: #f0eaff;
            font-size: 1rem;
            transition: 0.25s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #b073ff;
            outline: none;
            box-shadow: 0 0 0 3px rgba(176, 115, 255, 0.25);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: linear-gradient(135deg, #7a4fbf, #a06aff);
            border: none;
            color: #fff;
            font-weight: 700;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            border: 1px solid #b073ff;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(160, 106, 255, 0.4);
            background: linear-gradient(135deg, #8a5fd4, #b47cff);
        }
        .btn-secondary {
            background: #2a1f4a;
            border-color: #6a4f9a;
        }
        .btn-secondary:hover {
            background: #3a2a5a;
        }
        .star-rating {
            display: flex;
            gap: 0.4rem;
            font-size: 1.8rem;
            color: #4a3a5a;
            cursor: pointer;
            flex-wrap: wrap;
        }
        .star-rating i {
            transition: 0.2s;
        }
        .star-rating i.active,
        .star-rating i:hover {
            color: #ffd966;
            transform: scale(1.1);
        }
        .comment-list {
            margin-top: 1.4rem;
            border-top: 1px solid #3f2d62;
            padding-top: 1.2rem;
        }
        .comment-item {
            background: #151021;
            padding: 0.8rem 1.2rem;
            border-radius: 12px;
            margin-bottom: 0.8rem;
            border-left: 3px solid #6a4f9a;
        }
        .comment-item strong {
            color: #ffd966;
        }
        .comment-item .date {
            font-size: 0.8rem;
            color: #8a7aaa;
            margin-left: 0.8rem;
        }
        .site-footer {
            background: #110d1f;
            border-top: 2px solid #2a1f4a;
            padding: 2rem 0 1.2rem;
            margin-top: 2rem;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-col {
            flex: 1 1 200px;
        }
        .footer-col h4 {
            color: #d4aaff;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
            border-bottom: 1px solid #2a1f4a;
            padding-bottom: 0.4rem;
        }
        friend-link {
            display: block;
            margin-top: 0.6rem;
        }
        friend-link a {
            display: block;
            padding: 0.25rem 0;
            color: #b8a8d8;
            font-size: 0.95rem;
        }
        friend-link a::before {
            content: "🔗 ";
            font-size: 0.8rem;
        }
        friend-link a:hover {
            color: #ffd966;
        }
        .copyright {
            text-align: center;
            padding-top: 1.6rem;
            margin-top: 1.6rem;
            border-top: 1px solid #1e1735;
            color: #7a6a9a;
            font-size: 0.9rem;
        }
        .copyright strong {
            color: #b8a8d8;
        }
        @media (max-width: 768px) {
            html {
                font-size: 15px;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                padding-top: 1rem;
                gap: 0.2rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                width: 100%;
                text-align: center;
                padding: 0.7rem;
                border-radius: 10px;
            }
            .inline-link-list ul {
                columns: 1;
            }
            .interactive-section {
                padding: 1.2rem 1rem;
            }
            .footer-inner {
                flex-direction: column;
                gap: 1.2rem;
            }
            .featured-figure img {
                max-height: 260px;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.2rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            .star-rating {
                font-size: 1.4rem;
            }
        }
        @media (min-width: 769px) {
            .nav-menu {
                display: flex !important;
            }
        }
        .text-muted {
            color: #8a7aaa;
        }
        .mt-1 {
            margin-top: 0.8rem;
        }
        .mb-1 {
            margin-bottom: 0.8rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.6rem;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #8a7aaa;
            background: #1a1330;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            display: inline-block;
            border: 1px solid #3f2d62;
        }
        .last-updated i {
            margin-right: 0.4rem;
        }
        .schema-hidden {
            display: none;
        }
