* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0e0f14;
            color: #e8e6e3;
            line-height: 1.7;
            scroll-behavior: smooth;
        }
        a {
            color: #b8a9d4;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #dfd3f5;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .site-header {
            background: linear-gradient(145deg, #1a1c25 0%, #0f1119 100%);
            border-bottom: 2px solid #3c2e5c;
            padding: 0.8rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #f3e7b0, #c9a84c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 18px rgba(201, 168, 76, 0.25);
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #5a4a7a;
            color: #dfd3f5;
            font-size: 1.6rem;
            padding: 0.3rem 0.9rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #2a1f3e;
        }
        .main-nav {
            display: flex;
            gap: 2rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .main-nav a {
            font-weight: 500;
            font-size: 1.05rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.25s, color 0.25s;
        }
        .main-nav a:hover {
            border-bottom-color: #b8a9d4;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 0.9rem 2rem;
            background: #191b24;
            font-size: 0.95rem;
            border-bottom: 1px solid #2c263a;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.8rem;
            color: #6a5e7e;
        }
        .breadcrumb a {
            color: #9b8ab5;
        }
        .breadcrumb .active {
            color: #d4c9e8;
            font-weight: 500;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 2rem 2rem 3rem;
        }
        h1 {
            font-size: 2.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f7edc8, #dbbf6e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 0.5rem 0 1.8rem;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #e2d5b6;
            border-left: 6px solid #7a62a8;
            padding-left: 1.2rem;
            margin: 3rem 0 1.5rem;
            line-height: 1.3;
        }
        h3 {
            font-size: 1.7rem;
            font-weight: 600;
            color: #d4c5a8;
            margin: 2.2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #c7b894;
            margin: 1.8rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            color: #ddd8d0;
        }
        .highlight {
            background: #2f2642;
            padding: 0.1rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
            color: #ebddb0;
        }
        hr {
            border: none;
            border-top: 2px dashed #3a3150;
            margin: 2.8rem 0;
        }
        .feature-img {
            border-radius: 16px;
            margin: 2rem 0 2.5rem;
            box-shadow: 0 18px 40px -12px rgba(0, 0, 0, 0.8);
            border: 1px solid #3f3557;
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .char-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .char-card {
            background: #1b1d28;
            border-radius: 16px;
            padding: 1.8rem 1.5rem;
            border: 1px solid #332d45;
            transition: transform 0.3s ease, box-shadow 0.4s ease;
        }
        .char-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px -12px #00000080;
            border-color: #6a528a;
        }
        .char-card i {
            font-size: 2.2rem;
            color: #c9b074;
            margin-bottom: 0.8rem;
        }
        .char-card h3 {
            margin-top: 0.2rem;
            color: #e8dcbe;
        }
        .form-section {
            background: #181a25;
            border-radius: 20px;
            padding: 2rem 2rem 2.2rem;
            margin: 2.5rem 0;
            border: 1px solid #332d48;
        }
        .form-section h2 i {
            color: #c9b074;
            margin-right: 0.7rem;
        }
        .form-group {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1.2rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            flex: 1 1 200px;
            padding: 0.9rem 1.2rem;
            border-radius: 10px;
            border: 1px solid #3f3557;
            background: #0f111b;
            color: #e8e6e3;
            font-size: 1rem;
            transition: border 0.25s, box-shadow 0.25s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #8f73c4;
            box-shadow: 0 0 0 3px rgba(143, 115, 196, 0.25);
        }
        .form-group textarea {
            min-height: 100px;
            flex-basis: 100%;
            resize: vertical;
        }
        .btn {
            background: #5a447a;
            border: none;
            color: #fff;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }
        .btn:hover {
            background: #7a62a8;
            transform: scale(1.02);
        }
        .btn:active {
            transform: scale(0.97);
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4d4266;
            transition: color 0.2s;
        }
        .star-rating i.active {
            color: #f5c842;
        }
        .star-rating i:hover,
        .star-rating i.hover {
            color: #e8b830;
        }
        .comment-list {
            list-style: none;
            margin-top: 1.5rem;
        }
        .comment-list li {
            background: #11131e;
            border-radius: 12px;
            padding: 1.2rem 1.5rem;
            margin-bottom: 1rem;
            border-left: 4px solid #5a447a;
        }
        .comment-list li strong {
            color: #e2d5b6;
        }
        .comment-list li small {
            color: #8a7e9e;
            display: block;
            margin-top: 0.3rem;
        }
        friend-link {
            display: block;
            background: #13151f;
            border-radius: 16px;
            padding: 2rem 2rem 1.8rem;
            margin: 3rem 0 2rem;
            border: 1px solid #2d263f;
        }
        friend-link h3 {
            color: #e2d5b6;
            font-size: 1.6rem;
            margin-bottom: 1.2rem;
            border-left: 4px solid #7a62a8;
            padding-left: 1rem;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.6rem;
        }
        friend-link li a {
            color: #b0a0ca;
            font-weight: 500;
        }
        friend-link li a:hover {
            color: #dfd3f5;
        }
        .site-footer {
            background: #0b0d14;
            border-top: 2px solid #2c2440;
            padding: 2rem 2rem 1.5rem;
            text-align: center;
            color: #8e829e;
            font-size: 0.95rem;
        }
        .site-footer .copyright {
            margin-top: 0.6rem;
            letter-spacing: 0.3px;
        }
        @media (max-width: 860px) {
            .site-header {
                padding: 0.7rem 1.2rem;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.8rem;
                padding: 1.2rem 0 0.6rem;
                border-top: 1px solid #2f2642;
                margin-top: 0.6rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                font-size: 1.1rem;
                padding: 0.4rem 0;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .container {
                padding: 1.2rem 1rem 2rem;
            }
            .breadcrumb {
                padding: 0.6rem 1.2rem;
                font-size: 0.85rem;
            }
            .form-section {
                padding: 1.5rem 1rem;
            }
            .char-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.3rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            .btn {
                padding: 0.6rem 1.4rem;
                font-size: 0.9rem;
            }
            .star-rating {
                font-size: 1.4rem;
            }
        }
        section[id] {
            scroll-margin-top: 100px;
        }
        .tag {
            display: inline-block;
            background: #2a1f3e;
            padding: 0.2rem 0.9rem;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #c9b89e;
            margin-right: 0.4rem;
        }
