        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            background: #0c0b0f;
            color: #e6e0eb;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        a {
            color: #f5a623;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffc857;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f0eaf5;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.4rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #f5a623;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #f5d9a0;
        }
        h4 {
            font-size: 1.15rem;
            color: #d4c8e0;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1625 0%, #2a1f3a 100%);
            padding: 0.6rem 0;
            border-bottom: 2px solid #f5a62333;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.6rem 1rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5a623, #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px #f5a62322;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #f5a623;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-desktop {
            display: flex;
            align-items: center;
            gap: 1.6rem;
            flex-wrap: wrap;
        }
        .nav-desktop a {
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .nav-desktop a:hover {
            border-bottom-color: #f5a623;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f5a623;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            transition: transform 0.2s;
        }
        .hamburger:hover {
            transform: scale(1.1);
        }
        .nav-mobile {
            display: none;
            width: 100%;
            flex-direction: column;
            background: #1f1a2b;
            padding: 1rem 1.2rem;
            border-radius: 0 0 12px 12px;
            margin-top: 0.4rem;
            gap: 0.6rem;
            border-top: 1px solid #f5a62333;
        }
        .nav-mobile a {
            font-weight: 600;
            padding: 0.4rem 0;
            border-bottom: 1px solid #2f2a3f;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .nav-mobile.open {
            display: flex;
        }
        .breadcrumb {
            background: #141118;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #2a2435;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #6a5f7a;
        }
        .breadcrumb a {
            color: #b0a0c0;
        }
        .breadcrumb .current {
            color: #f5a623;
            font-weight: 600;
        }
        .hero-section {
            padding: 2.5rem 0 1.8rem;
            text-align: center;
            background: radial-gradient(ellipse at 30% 40%, #2a1f3a22 0%, transparent 70%);
        }
        .hero-section h1 {
            font-size: 2.8rem;
            background: linear-gradient(135deg, #f5d9a0, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.6rem;
        }
        .hero-section .subhead {
            font-size: 1.15rem;
            color: #c0b0d0;
            max-width: 720px;
            margin: 0 auto 1.2rem;
        }
        .hero-image-wrap {
            max-width: 800px;
            margin: 1.6rem auto 0;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
            border: 1px solid #3a2f4a;
        }
        .hero-image-wrap img {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
            background: #1a1625;
            transition: transform 0.4s ease;
        }
        .hero-image-wrap:hover img {
            transform: scale(1.02);
        }
        .content-area {
            padding: 0.8rem 0 3rem;
        }
        .content-area .container {
            max-width: 880px;
        }
        .update-badge {
            display: inline-block;
            background: #2a1f3a;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #c0b0d0;
            border: 1px solid #3a2f4a;
            margin-bottom: 1.4rem;
        }
        .update-badge i {
            color: #f5a623;
            margin-right: 0.4rem;
        }
        .section-card {
            background: #141118;
            border-radius: 18px;
            padding: 1.8rem 2rem;
            margin-bottom: 2.2rem;
            border: 1px solid #2a2435;
            transition: box-shadow 0.3s, border-color 0.3s;
        }
        .section-card:hover {
            border-color: #3a2f4a;
            box-shadow: 0 8px 30px rgba(245, 166, 35, 0.04);
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            padding: 0.6rem 0 0.2rem;
            list-style: none;
        }
        .link-list-inline li::before {
            content: "⚡";
            margin-right: 0.3rem;
            color: #f5a623;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin: 1.2rem 0;
        }
        .stat-item {
            background: #1f1a2b;
            border-radius: 14px;
            padding: 1rem 0.8rem;
            text-align: center;
            border: 1px solid #2a2435;
        }
        .stat-item .num {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f5a623;
        }
        .stat-item .label {
            font-size: 0.85rem;
            color: #b0a0c0;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1f1a2b, #2a1f3a);
            border-left: 6px solid #f5a623;
            border-radius: 0 14px 14px 0;
            padding: 1.2rem 1.6rem;
            margin: 1.4rem 0;
            font-style: normal;
        }
        .search-form,
        .comment-form,
        .rating-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin: 1.2rem 0 0.6rem;
        }
        .search-form input,
        .comment-form input,
        .comment-form textarea {
            flex: 1 1 200px;
            padding: 0.7rem 1rem;
            border-radius: 40px;
            border: 1px solid #3a2f4a;
            background: #1a1625;
            color: #e6e0eb;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.25s, box-shadow 0.25s;
        }
        .search-form input:focus,
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: #f5a623;
            box-shadow: 0 0 0 3px #f5a62322;
        }
        .search-form button,
        .comment-form button,
        .rating-form button {
            padding: 0.7rem 1.6rem;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #f5a623, #e07e1f);
            color: #0c0b0f;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover,
        .comment-form button:hover,
        .rating-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(245, 166, 35, 0.3);
        }
        .rating-stars {
            display: flex;
            gap: 0.4rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 2rem;
            color: #3a2f4a;
            cursor: pointer;
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label {
            color: #f5a623;
            transform: scale(1.1);
        }
        .rating-stars input:checked~label {
            color: #f5a623;
        }
        .rating-stars input:checked+label {
            color: #f5a623;
        }
        .rating-stars {
            direction: rtl;
            justify-content: flex-end;
        }
        .rating-stars label {
            direction: ltr;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label {
            color: #f5a623 !important;
            transform: scale(1.1);
        }
        .rating-stars input:checked~label {
            color: #f5a623;
        }
        .comment-list {
            margin-top: 1.2rem;
            max-height: 320px;
            overflow-y: auto;
            padding-right: 0.4rem;
        }
        .comment-list::-webkit-scrollbar {
            width: 4px;
        }
        .comment-list::-webkit-scrollbar-track {
            background: #1a1625;
        }
        .comment-list::-webkit-scrollbar-thumb {
            background: #f5a62366;
            border-radius: 10px;
        }
        .comment-item {
            background: #1a1625;
            padding: 0.8rem 1rem;
            border-radius: 12px;
            margin-bottom: 0.6rem;
            border-left: 3px solid #f5a62344;
        }
        .comment-item .name {
            font-weight: 700;
            color: #f5d9a0;
        }
        .comment-item .time {
            font-size: 0.75rem;
            color: #7a6a8a;
            margin-left: 0.8rem;
        }
        .site-footer {
            background: #0e0c13;
            border-top: 2px solid #1f1a2b;
            padding: 2rem 0 1.4rem;
            margin-top: 2.5rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
        }
        .footer-inner .col h4 {
            margin-top: 0;
            color: #f5d9a0;
            font-size: 1.1rem;
        }
        friend-link {
            display: block;
            background: #141118;
            border-radius: 14px;
            padding: 1.2rem 1.4rem;
            border: 1px solid #2a2435;
            margin: 0.8rem 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 0.8rem 0.3rem 0;
            font-weight: 500;
        }
        .copyright {
            text-align: center;
            padding-top: 1.4rem;
            margin-top: 1.4rem;
            border-top: 1px solid #1f1a2b;
            font-size: 0.85rem;
            color: #6a5f7a;
        }
        .copyright i {
            color: #f5a62344;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-desktop {
                display: none;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .hero-section h1 {
                font-size: 1.9rem;
            }
            .section-card {
                padding: 1.2rem 1rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .rating-stars label {
                font-size: 1.6rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            .hero-section h1 {
                font-size: 1.6rem;
            }
            .search-form input,
            .comment-form input,
            .comment-form textarea {
                flex: 1 1 100%;
            }
            .search-form button,
            .comment-form button,
            .rating-form button {
                width: 100%;
                justify-content: center;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.6rem;
            }
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.2rem;
            align-items: center;
        }
        .tag {
            display: inline-block;
            background: #2a1f3a;
            padding: 0.15rem 0.8rem;
            border-radius: 30px;
            font-size: 0.75rem;
            color: #b0a0c0;
            border: 1px solid #3a2f4a;
        }
        .text-muted {
            color: #7a6a8a;
        }
        .text-accent {
            color: #f5a623;
        }
        .divider {
            border: none;
            border-top: 1px solid #2a2435;
            margin: 1.8rem 0;
        }
        .scroll-offset {
            scroll-margin-top: 80px;
        }
