        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, Roboto, 'Helvetica Neue', sans-serif;
            background: #0d0d1a;
            color: #e8e8f0;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f0c060;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1a2e;
        }
        ::-webkit-scrollbar-thumb {
            background: #f0c060;
            border-radius: 4px;
        }
        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #12121f 0%, #1c1c32 100%);
            border-bottom: 2px solid #f0c06033;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
            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.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f0c060, #f5d080);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px #f0c06022;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #f0c060;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f0c06055;
            color: #f0c060;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.25s;
        }
        .nav-toggle:hover {
            background: #f0c06022;
        }
        .nav-menu {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            padding: 6px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #cccce0;
            border: 1px solid transparent;
            transition: all 0.25s ease;
        }
        .nav-menu a:hover,
        .nav-menu a:focus-visible {
            color: #0d0d1a;
            background: #f0c060;
            border-color: #f0c060;
            text-decoration: none;
        }
        .nav-menu a.active {
            color: #0d0d1a;
            background: #f0c060dd;
            border-color: #f0c060;
        }
        .breadcrumb {
            padding: 14px 0 6px;
            font-size: 0.9rem;
            color: #9999b0;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            list-style: none;
        }
        .breadcrumb li {
            display: inline;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #f0c06088;
        }
        .breadcrumb a {
            color: #b0b0cc;
        }
        .breadcrumb a:hover {
            color: #f0c060;
        }
        .breadcrumb .current {
            color: #f0c060;
            font-weight: 600;
        }
        .hero {
            padding: 40px 0 30px;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, #f5d080, #e8b840);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 12px;
        }
        .hero .subhead {
            font-size: 1.2rem;
            color: #b0b0cc;
            max-width: 720px;
            margin: 0 auto 10px;
        }
        .hero .meta {
            font-size: 0.95rem;
            color: #8888aa;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .hero .meta i {
            color: #f0c060;
            margin-right: 6px;
        }
        section {
            padding: 36px 0;
            border-bottom: 1px solid #ffffff08;
        }
        section:last-of-type {
            border-bottom: none;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f5d080;
            margin: 0 0 18px 0;
            padding-bottom: 8px;
            border-bottom: 2px solid #f0c06033;
            display: inline-block;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #e8c870;
            margin: 28px 0 12px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #d0b060;
            margin: 20px 0 8px;
        }
        p {
            margin-bottom: 16px;
            color: #d0d0e0;
        }
        .highlight-box {
            background: #1a1a30;
            border-left: 4px solid #f0c060;
            padding: 18px 24px;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
        }
        .highlight-box strong {
            color: #f0c060;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 24px;
        }
        .card {
            background: #16162a;
            border-radius: 16px;
            padding: 24px;
            border: 1px solid #ffffff0a;
            transition: transform 0.25s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(240, 192, 96, 0.08);
        }
        .card h4 {
            margin-top: 0;
        }
        .card i {
            color: #f0c060;
            font-size: 1.8rem;
            margin-bottom: 8px;
        }
        .feature-img {
            margin: 28px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
            background: #1a1a30;
        }
        .feature-img img {
            width: 100%;
            height: auto;
            max-height: 480px;
            object-fit: cover;
        }
        .feature-img figcaption {
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #a0a0c0;
            background: #12122a;
            border-top: 1px solid #ffffff0a;
        }
        .search-box {
            background: #1a1a30;
            border-radius: 60px;
            padding: 4px 4px 4px 24px;
            display: flex;
            align-items: center;
            max-width: 520px;
            margin: 10px auto 0;
            border: 1px solid #ffffff15;
            transition: border-color 0.3s;
        }
        .search-box:focus-within {
            border-color: #f0c06088;
        }
        .search-box input {
            background: transparent;
            border: none;
            padding: 12px 0;
            flex: 1;
            color: #e8e8f0;
            font-size: 1rem;
            outline: none;
            min-width: 0;
        }
        .search-box input::placeholder {
            color: #7777aa;
        }
        .search-box button {
            background: #f0c060;
            border: none;
            border-radius: 50px;
            padding: 10px 26px;
            font-weight: 700;
            color: #0d0d1a;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }
        .search-box button:hover {
            background: #f5d080;
            transform: scale(1.02);
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        .comment-area textarea {
            width: 100%;
            background: #12122a;
            border: 1px solid #ffffff15;
            border-radius: 12px;
            padding: 16px;
            color: #e8e8f0;
            font-size: 1rem;
            resize: vertical;
            min-height: 120px;
            font-family: inherit;
            transition: border-color 0.3s;
        }
        .comment-area textarea:focus {
            border-color: #f0c06088;
            outline: none;
        }
        .comment-area .form-actions {
            display: flex;
            gap: 12px;
            margin-top: 12px;
            flex-wrap: wrap;
        }
        .btn {
            background: #f0c060;
            border: none;
            padding: 10px 28px;
            border-radius: 50px;
            font-weight: 700;
            color: #0d0d1a;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            background: #f5d080;
            transform: scale(1.02);
        }
        .btn-outline {
            background: transparent;
            border: 1px solid #f0c06088;
            color: #f0c060;
        }
        .btn-outline:hover {
            background: #f0c06022;
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #44446a;
            cursor: pointer;
            margin: 8px 0 12px;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f0c060;
            transform: scale(1.15);
        }
        .rating-display {
            font-size: 1.2rem;
            color: #f0c060;
            font-weight: 700;
        }
        friend-link {
            display: block;
            padding: 30px 0 10px;
        }
        friend-link .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            list-style: none;
            padding: 0;
        }
        friend-link .link-list li {
            margin: 0;
        }
        friend-link .link-list a {
            padding: 4px 0;
            border-bottom: 1px solid transparent;
            font-weight: 500;
        }
        friend-link .link-list a:hover {
            border-bottom-color: #f0c060;
        }
        .site-footer {
            background: #0a0a18;
            border-top: 1px solid #ffffff0a;
            padding: 36px 0 24px;
            margin-top: auto;
            text-align: center;
            font-size: 0.9rem;
            color: #8888aa;
        }
        .site-footer .copyright {
            margin-top: 12px;
            font-size: 0.85rem;
            color: #666688;
        }
        .site-footer a {
            color: #b0b0cc;
        }
        @media (max-width: 992px) {
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr 1fr;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: inline-block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #12121f;
                padding: 16px 0 12px;
                border-top: 1px solid #ffffff0a;
                margin-top: 12px;
                gap: 4px;
            }
            .nav-menu.show {
                display: flex;
            }
            .nav-menu a {
                padding: 10px 20px;
                border-radius: 8px;
                width: 100%;
            }
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .interact-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero .subhead {
                font-size: 1rem;
            }
            .search-box {
                flex-wrap: wrap;
                border-radius: 24px;
                padding: 8px 12px;
                background: #1a1a30;
            }
            .search-box input {
                width: 100%;
                padding: 8px 0;
            }
            .search-box button {
                width: 100%;
                justify-content: center;
                margin-top: 6px;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .card {
                padding: 16px;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        .badge {
            display: inline-block;
            background: #f0c06022;
            color: #f0c060;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid #f0c06044;
        }
