* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --bg-dark: #0a0e17;
            --bg-card: #111827;
            --bg-section: #0f172a;
            --gold: #c8a84e;
            --gold-light: #e8d48b;
            --gold-dark: #8a6d2b;
            --accent-blue: #3b82f6;
            --accent-teal: #06b6d4;
            --text-primary: #f1f5f9;
            --text-secondary: #94a3b8;
            --text-muted: #64748b;
            --border-color: #1e293b;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            --radius: 12px;
            --radius-sm: 6px;
            --font-sans: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font-sans);
            background: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.75;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: var(--gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover,
        a:focus-visible {
            color: var(--gold-light);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .site-header {
            background: linear-gradient(180deg, #0f172a 0%, #0a0e17 100%);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: var(--gold) !important;
            text-decoration: none !important;
        }
        .my-logo i {
            font-size: 2rem;
            color: var(--gold-light);
        }
        .my-logo span {
            background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            color: var(--text-muted);
            -webkit-text-fill-color: var(--text-muted);
            background: none;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: var(--radius-sm);
            transition: var(--transition);
        }
        .nav-toggle:hover {
            color: var(--gold);
            background: rgba(200, 168, 78, 0.08);
        }
        .primary-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .primary-nav a {
            padding: 8px 16px;
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: var(--transition);
            position: relative;
        }
        .primary-nav a:hover,
        .primary-nav a:focus-visible {
            color: var(--gold);
            background: rgba(200, 168, 78, 0.08);
            text-decoration: none;
        }
        .primary-nav a.active {
            color: var(--gold);
            background: rgba(200, 168, 78, 0.12);
        }
        .breadcrumb-wrap {
            background: rgba(15, 23, 42, 0.7);
            border-bottom: 1px solid var(--border-color);
            padding: 8px 0;
            font-size: 0.85rem;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li {
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb li+li::before {
            content: '\f054';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 0.6rem;
            color: var(--text-muted);
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--gold);
        }
        .breadcrumb .current {
            color: var(--gold);
            font-weight: 600;
        }
        .hero {
            padding: 48px 0 32px;
            text-align: center;
            background: radial-gradient(ellipse at 50% 0%, rgba(200, 168, 78, 0.06) 0%, transparent 70%);
        }
        .hero h1 {
            font-size: clamp(2.2rem, 6vw, 4rem);
            font-weight: 900;
            line-height: 1.15;
            letter-spacing: -1px;
            background: linear-gradient(135deg, var(--gold-light), #fff, var(--gold-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto 24px;
        }
        .hero .meta-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(200, 168, 78, 0.12);
            border: 1px solid rgba(200, 168, 78, 0.2);
            padding: 6px 18px;
            border-radius: 100px;
            font-size: 0.85rem;
            color: var(--gold-light);
        }
        .hero .meta-badge i {
            font-size: 0.9rem;
        }
        .section {
            padding: 40px 0;
        }
        .section-title {
            font-size: clamp(1.6rem, 3vw, 2.4rem);
            font-weight: 800;
            color: var(--gold-light);
            margin-bottom: 24px;
            letter-spacing: -0.3px;
            border-bottom: 2px solid rgba(200, 168, 78, 0.15);
            padding-bottom: 12px;
        }
        .section-title i {
            margin-right: 12px;
            color: var(--gold);
        }
        .section-subtitle {
            font-size: clamp(1.15rem, 2vw, 1.6rem);
            font-weight: 700;
            color: var(--text-primary);
            margin: 28px 0 12px;
        }
        .section-subtitle i {
            margin-right: 10px;
            color: var(--accent-teal);
            font-size: 0.9em;
        }
        .section h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-secondary);
            margin: 20px 0 8px;
        }
        .section p {
            margin-bottom: 16px;
            color: var(--text-secondary);
            font-size: 1rem;
            max-width: 75ch;
        }
        .section p strong {
            color: var(--text-primary);
            font-weight: 600;
        }
        .section ul,
        .section ol {
            margin: 12px 0 20px 24px;
            color: var(--text-secondary);
        }
        .section li {
            margin-bottom: 6px;
        }
        .section .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 24px 0;
        }
        .section .card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            padding: 24px 20px;
            transition: var(--transition);
        }
        .section .card:hover {
            border-color: var(--gold-dark);
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }
        .section .card h4 {
            color: var(--gold-light);
            margin-top: 0;
        }
        .section .card p {
            font-size: 0.95rem;
        }
        .section .card i {
            font-size: 1.8rem;
            color: var(--gold);
            margin-bottom: 12px;
        }
        .img-wrapper {
            margin: 32px 0;
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border-color);
            position: relative;
        }
        .img-wrapper img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .img-wrapper .img-caption {
            background: rgba(0, 0, 0, 0.7);
            padding: 12px 20px;
            font-size: 0.85rem;
            color: var(--text-secondary);
            text-align: center;
            border-top: 1px solid var(--border-color);
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(200, 168, 78, 0.06), rgba(59, 130, 246, 0.06));
            border-left: 4px solid var(--gold);
            padding: 20px 24px;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            margin: 24px 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .search-section {
            background: var(--bg-section);
            border-radius: var(--radius);
            padding: 32px 28px;
            border: 1px solid var(--border-color);
            margin: 32px 0;
        }
        .search-section h3 {
            font-size: 1.3rem;
            color: var(--gold-light);
            margin-bottom: 16px;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-color);
            background: var(--bg-dark);
            color: var(--text-primary);
            font-size: 1rem;
            transition: var(--transition);
            outline: none;
        }
        .search-form input:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(200, 168, 78, 0.15);
        }
        .search-form button {
            padding: 14px 32px;
            border: none;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, var(--gold-dark), var(--gold));
            color: #0a0e17;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 20px rgba(200, 168, 78, 0.3);
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 32px 0;
        }
        @media (max-width: 768px) {
            .interact-grid {
                grid-template-columns: 1fr;
            }
        }
        .interact-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            padding: 24px 22px;
        }
        .interact-card h3 {
            font-size: 1.2rem;
            color: var(--gold-light);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .interact-card textarea,
        .interact-card input[type="text"],
        .interact-card input[type="number"] {
            width: 100%;
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-color);
            background: var(--bg-dark);
            color: var(--text-primary);
            font-size: 0.95rem;
            transition: var(--transition);
            outline: none;
            font-family: inherit;
            margin-bottom: 12px;
        }
        .interact-card textarea:focus,
        .interact-card input:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(200, 168, 78, 0.1);
        }
        .interact-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .interact-card .btn-submit {
            padding: 12px 28px;
            border: none;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, var(--gold-dark), var(--gold));
            color: #0a0e17;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .interact-card .btn-submit:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 16px rgba(200, 168, 78, 0.25);
        }
        .star-rating {
            display: flex;
            gap: 4px;
            font-size: 1.8rem;
            color: var(--text-muted);
            cursor: pointer;
            margin-bottom: 12px;
            transition: var(--transition);
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: var(--gold);
        }
        .star-rating i {
            transition: var(--transition);
        }
        .site-footer {
            background: linear-gradient(180deg, #0a0e17, #05080f);
            border-top: 1px solid var(--border-color);
            padding: 40px 0 24px;
            margin-top: 48px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        @media (max-width: 768px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .footer-brand p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-top: 8px;
        }
        .footer-links h4 {
            color: var(--gold-light);
            font-size: 1rem;
            margin-bottom: 12px;
        }
        .footer-links a {
            display: block;
            color: var(--text-muted);
            font-size: 0.9rem;
            padding: 3px 0;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--gold);
            padding-left: 4px;
        }
        friend-link {
            display: block;
            margin-top: 24px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            font-style: normal;
        }
        friend-link a {
            color: var(--text-muted);
            font-size: 0.9rem;
            display: inline-block;
            margin-right: 20px;
            margin-bottom: 6px;
        }
        friend-link a:hover {
            color: var(--gold);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            color: var(--text-muted);
            font-size: 0.85rem;
        }
        .copyright a {
            color: var(--text-secondary);
        }
        .copyright a:hover {
            color: var(--gold);
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--text-muted);
            font-size: 0.85rem;
            margin-top: 8px;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 12px 0 4px;
                gap: 4px;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 12px 16px;
                border-radius: var(--radius-sm);
                border-left: 3px solid transparent;
            }
            .primary-nav a:hover {
                border-left-color: var(--gold);
            }
            .header-inner {
                padding: 12px 0;
            }
            .container {
                padding: 0 16px;
            }
            .hero {
                padding: 32px 0 24px;
            }
            .section {
                padding: 24px 0;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                min-width: auto;
            }
            .search-form button {
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.15rem;
            }
            .my-logo i {
                font-size: 1.5rem;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .section .card-grid {
                grid-template-columns: 1fr;
            }
        }
        .text-gold {
            color: var(--gold-light);
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-1 {
            margin-top: 8px;
        }
        .mt-2 {
            margin-top: 16px;
        }
        .mt-3 {
            margin-top: 24px;
        }
        .gap-1 {
            gap: 8px;
        }
        .flex {
            display: flex;
        }
        .flex-wrap {
            flex-wrap: wrap;
        }
        .items-center {
            align-items: center;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        .btn-top {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 999;
            background: var(--gold-dark);
            color: #0a0e17;
            border: none;
            border-radius: 50%;
            width: 48px;
            height: 48px;
            font-size: 1.2rem;
            cursor: pointer;
            box-shadow: var(--shadow);
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.8;
        }
        .btn-top:hover {
            opacity: 1;
            transform: translateY(-3px);
        }
        @media (max-width: 480px) {
            .btn-top {
                bottom: 16px;
                right: 16px;
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }
