        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #0a0a1a;
            color: #e8e8f0;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #ffd700;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #ffb300;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.25rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0d0d2b 0%, #1a1a3e 100%);
            border-bottom: 2px solid #ffd700;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 0.75rem 0;
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.08);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ffd700, #ff8c00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
            transition: transform 0.25s ease;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.75rem;
            font-weight: 400;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            background: none;
            display: block;
            letter-spacing: 0.5px;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #ddd;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: rgba(255, 215, 0, 0.12);
            color: #ffd700;
            text-decoration: none;
        }
        .main-nav a.active {
            background: rgba(255, 215, 0, 0.18);
            color: #ffd700;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffd700;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 215, 0, 0.1);
        }
        #nav-toggle {
            display: none;
        }
        .nav-overlay {
            display: none;
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.03);
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid rgba(255, 215, 0, 0.08);
        }
        .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: #666;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffd700;
        }
        .breadcrumb .current {
            color: #ffd700;
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(145deg, #0f0f2a 0%, #1b1b45 50%, #0a0a1a 100%);
            padding: 3rem 0 2.5rem;
            text-align: center;
            border-bottom: 1px solid rgba(255, 215, 0, 0.15);
            position: relative;
        }
        .hero::after {
            content: "✦";
            font-size: 8rem;
            color: rgba(255, 215, 0, 0.03);
            position: absolute;
            right: 5%;
            bottom: 0;
            pointer-events: none;
            font-family: serif;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ffd700, #ff8c00, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.75rem;
            letter-spacing: 1px;
        }
        .hero p {
            font-size: 1.15rem;
            color: #bbb;
            max-width: 750px;
            margin: 0 auto 1.25rem;
        }
        .hero .meta-info {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            font-size: 0.9rem;
            color: #888;
        }
        .hero .meta-info i {
            margin-right: 0.4rem;
            color: #ffd700;
        }
        .search-section {
            padding: 1.5rem 0;
            background: rgba(255, 255, 255, 0.02);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            border-radius: 40px;
            overflow: hidden;
            border: 1px solid rgba(255, 215, 0, 0.2);
            background: #12122a;
            transition: border-color 0.3s;
        }
        .search-form:focus-within {
            border-color: #ffd700;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.06);
        }
        .search-form input {
            flex: 1;
            padding: 0.85rem 1.5rem;
            border: none;
            background: transparent;
            color: #fff;
            font-size: 1rem;
            outline: none;
        }
        .search-form input::placeholder {
            color: #666;
        }
        .search-form button {
            padding: 0.85rem 1.8rem;
            background: linear-gradient(135deg, #ffd700, #e6a800);
            border: none;
            color: #0a0a1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: opacity 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            opacity: 0.9;
        }
        .content-wrap {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .main-content h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(255, 215, 0, 0.15);
            color: #ffd700;
            letter-spacing: 0.5px;
        }
        .main-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 1.8rem 0 0.75rem;
            color: #f0c040;
        }
        .main-content h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 1.2rem 0 0.5rem;
            color: #e0b020;
        }
        .main-content p {
            margin-bottom: 1rem;
            color: #d0d0e0;
        }
        .main-content strong {
            color: #fff;
            font-weight: 600;
        }
        .main-content em {
            color: #ffd700;
            font-style: italic;
        }
        .main-content ul,
        .main-content ol {
            margin-bottom: 1rem;
            color: #c8c8d8;
        }
        .main-content li {
            margin-bottom: 0.4rem;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255, 215, 0, 0.12);
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
            background: #111;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .featured-image:hover img {
            transform: scale(1.01);
        }
        .featured-image figcaption {
            padding: 0.75rem 1rem;
            font-size: 0.85rem;
            color: #888;
            background: rgba(0, 0, 0, 0.5);
            font-style: italic;
        }
        .info-box {
            background: rgba(255, 215, 0, 0.04);
            border-left: 4px solid #ffd700;
            padding: 1.25rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .info-box strong {
            color: #ffd700;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        .table-wrap table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 8px;
            overflow: hidden;
        }
        .table-wrap th {
            background: rgba(255, 215, 0, 0.1);
            color: #ffd700;
            padding: 0.75rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .table-wrap td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            color: #ccc;
        }
        .table-wrap tr:hover td {
            background: rgba(255, 215, 0, 0.02);
        }
        .sidebar-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 215, 0, 0.08);
            border-radius: 10px;
            padding: 1.25rem;
            margin-bottom: 1.5rem;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #ffd700;
            margin-bottom: 0.75rem;
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
            padding-bottom: 0.5rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card li {
            margin-bottom: 0.5rem;
        }
        .sidebar-card a {
            color: #bbb;
            font-size: 0.9rem;
            display: block;
            padding: 0.3rem 0;
            transition: color 0.2s, padding-left 0.2s;
        }
        .sidebar-card a:hover {
            color: #ffd700;
            padding-left: 4px;
            text-decoration: none;
        }
        .interaction-section {
            padding: 2.5rem 0;
            border-top: 1px solid rgba(255, 215, 0, 0.08);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .form-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 215, 0, 0.06);
            border-radius: 10px;
            padding: 1.5rem;
        }
        .form-card h3 {
            font-size: 1.3rem;
            color: #ffd700;
            margin-bottom: 1rem;
        }
        .form-card label {
            display: block;
            font-size: 0.9rem;
            color: #aaa;
            margin-bottom: 0.3rem;
            font-weight: 500;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 6px;
            background: rgba(0, 0, 0, 0.3);
            color: #fff;
            font-size: 0.95rem;
            transition: border-color 0.25s;
            margin-bottom: 1rem;
            font-family: inherit;
        }
        .form-card input:focus,
        .form-card textarea:focus,
        .form-card select:focus {
            border-color: #ffd700;
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.05);
        }
        .form-card textarea {
            min-height: 110px;
            resize: vertical;
        }
        .form-card .btn-submit {
            padding: 0.7rem 2rem;
            background: linear-gradient(135deg, #ffd700, #e6a800);
            border: none;
            border-radius: 6px;
            color: #0a0a1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: opacity 0.2s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .form-card .btn-submit:hover {
            opacity: 0.9;
            transform: translateY(-1px);
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            margin-bottom: 1rem;
            font-size: 1.5rem;
            color: #444;
            cursor: pointer;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating i.active,
        .star-rating i:hover {
            color: #ffd700;
        }
        .star-rating i:hover {
            transform: scale(1.15);
        }
        .site-footer {
            background: #070714;
            border-top: 2px solid rgba(255, 215, 0, 0.1);
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-col h4 {
            color: #ffd700;
            font-size: 1.1rem;
            margin-bottom: 0.75rem;
        }
        .footer-col p,
        .footer-col a {
            font-size: 0.9rem;
            color: #999;
        }
        .footer-col a:hover {
            color: #ffd700;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        .footer-col li {
            margin-bottom: 0.35rem;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            padding-top: 1.5rem;
            text-align: center;
            font-size: 0.85rem;
            color: #666;
        }
        .footer-bottom a {
            color: #888;
        }
        .footer-bottom a:hover {
            color: #ffd700;
        }
        friend-link {
            display: block;
            margin-top: 0.5rem;
        }
        friend-link a {
            color: #aaa;
            font-size: 0.9rem;
            margin-right: 1rem;
        }
        friend-link a:hover {
            color: #ffd700;
        }
        @media (max-width: 1024px) {
            .content-wrap {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
            .sidebar-card {
                margin-bottom: 0;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: nowrap;
            }
            .hamburger {
                display: block;
                z-index: 1001;
            }
            .main-nav {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(10, 10, 26, 0.98);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 1rem;
                z-index: 1000;
                backdrop-filter: blur(8px);
            }
            .main-nav a {
                font-size: 1.4rem;
                padding: 0.75rem 2rem;
            }
            #nav-toggle:checked~.main-nav {
                display: flex;
            }
            #nav-toggle:checked~.hamburger {
                position: fixed;
                right: 1rem;
                top: 1rem;
                z-index: 1002;
            }
            .nav-overlay {
                display: none;
            }
            #nav-toggle:checked~.nav-overlay {
                display: block;
                position: fixed;
                inset: 0;
                z-index: 999;
                background: transparent;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .main-content h2 {
                font-size: 1.6rem;
            }
            .main-content h3 {
                font-size: 1.25rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-form input {
                padding: 0.7rem 1rem;
                font-size: 0.9rem;
            }
            .search-form button {
                padding: 0.7rem 1.2rem;
                font-size: 0.9rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .container {
                padding: 0 0.75rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .main-content h2 {
                font-size: 1.35rem;
            }
            .main-content h3 {
                font-size: 1.1rem;
            }
            .form-card {
                padding: 1rem;
            }
        }
        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #0a0a1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #ffd70033;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #ffd70055;
        }
        .highlight {
            color: #ffd700;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: rgba(255, 215, 0, 0.12);
            color: #ffd700;
            padding: 0.15rem 0.7rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .divider {
            border: none;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(255, 215, 0, 0.15), transparent);
            margin: 2rem 0;
        }
        .btn-top {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            background: rgba(255, 215, 0, 0.12);
            border: 1px solid rgba(255, 215, 0, 0.2);
            color: #ffd700;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
            backdrop-filter: blur(4px);
            z-index: 500;
        }
        .btn-top:hover {
            background: rgba(255, 215, 0, 0.25);
            transform: translateY(-3px);
        }
        @media (max-width: 768px) {
            .btn-top {
                bottom: 1rem;
                right: 1rem;
                width: 38px;
                height: 38px;
                font-size: 1rem;
            }
        }
