* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --sand: #C4A882;
            --sand-light: #E8D5B5;
            --sand-dark: #A68B6E;
            --deep-dark: #0D0D1A;
            --dark-bg: #14142A;
            --card-bg: #1C1C3A;
            --gold: #D4A843;
            --gold-light: #F0D68A;
            --text-light: #F5F0E8;
            --text-muted: #B8B0A0;
            --border-glow: rgba(212, 168, 67, 0.25);
            --radius: 12px;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font);
            background: var(--deep-dark);
            color: var(--text-light);
            line-height: 1.7;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: var(--gold);
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: var(--gold-light);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0D0D1A 0%, #1A1A3A 100%);
            border-bottom: 2px solid var(--border-glow);
            padding: 16px 0;
            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;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(135deg, var(--gold), var(--sand-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            text-decoration: none !important;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .my-logo i {
            -webkit-text-fill-color: var(--gold);
            margin-right: 6px;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 20px;
        }
        .nav-list li a {
            color: var(--text-light);
            font-weight: 500;
            font-size: 15px;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-list li a:hover {
            border-bottom-color: var(--gold);
            color: var(--gold);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 28px;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
            padding: 4px 8px;
        }
        .breadcrumb {
            padding: 16px 0 8px;
            font-size: 14px;
            color: var(--text-muted);
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 8px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: var(--text-muted);
        }
        .breadcrumb a {
            color: var(--sand);
        }
        .breadcrumb .active {
            color: var(--gold);
        }
        .hero {
            padding: 40px 0 24px;
            text-align: center;
        }
        .hero h1 {
            font-size: clamp(32px, 6vw, 56px);
            font-weight: 800;
            background: linear-gradient(135deg, #F5F0E8 0%, var(--gold) 80%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 18px;
            color: var(--text-muted);
            max-width: 800px;
            margin: 0 auto 12px;
        }
        .hero .meta {
            font-size: 14px;
            color: var(--sand-dark);
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .hero .meta i {
            margin-right: 6px;
        }
        .content {
            padding: 24px 0 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .main-article {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        h2 {
            font-size: clamp(26px, 3.5vw, 36px);
            font-weight: 700;
            color: var(--gold);
            margin: 48px 0 16px;
            border-bottom: 2px solid var(--border-glow);
            padding-bottom: 10px;
        }
        h3 {
            font-size: clamp(20px, 2.5vw, 26px);
            font-weight: 600;
            color: var(--sand-light);
            margin: 32px 0 12px;
        }
        h4 {
            font-size: clamp(17px, 1.8vw, 20px);
            font-weight: 600;
            color: var(--text-light);
            margin: 24px 0 8px;
        }
        p {
            margin-bottom: 16px;
            color: var(--text-muted);
        }
        .content strong {
            color: var(--text-light);
        }
        .content ul,
        .content ol {
            margin: 12px 0 20px 24px;
            color: var(--text-muted);
        }
        .content li {
            margin-bottom: 8px;
        }
        blockquote {
            border-left: 4px solid var(--gold);
            padding: 16px 24px;
            margin: 24px 0;
            background: rgba(212, 168, 67, 0.06);
            border-radius: 0 var(--radius) var(--radius) 0;
            font-style: italic;
            color: var(--sand-light);
        }
        .featured-image {
            margin: 32px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: var(--card-bg);
            padding: 8px;
        }
        .featured-image img {
            border-radius: calc(var(--radius) - 4px);
        }
        .featured-image figcaption {
            text-align: center;
            font-size: 14px;
            color: var(--text-muted);
            padding: 12px 8px 4px;
        }
        .sidebar-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 24px;
            margin-bottom: 24px;
            border: 1px solid var(--border-glow);
        }
        .sidebar-card h3 {
            font-size: 18px;
            margin-top: 0;
            margin-bottom: 16px;
            color: var(--gold);
            border-bottom: 1px solid var(--border-glow);
            padding-bottom: 8px;
        }
        .sidebar-link-list {
            list-style: none;
            margin: 0;
        }
        .sidebar-link-list li {
            margin-bottom: 10px;
        }
        .sidebar-link-list a {
            display: block;
            padding: 6px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 14px;
        }
        .sidebar-link-list a i {
            margin-right: 8px;
            width: 16px;
            color: var(--gold);
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin: 16px 0;
        }
        .search-form input {
            flex: 1;
            padding: 10px 16px;
            border-radius: 8px;
            border: 1px solid var(--border-glow);
            background: rgba(255, 255, 255, 0.06);
            color: var(--text-light);
            font-size: 15px;
            outline: none;
            transition: 0.2s;
        }
        .search-form input:focus {
            border-color: var(--gold);
            background: rgba(255, 255, 255, 0.1);
        }
        .search-form button {
            padding: 10px 20px;
            border-radius: 8px;
            border: none;
            background: var(--gold);
            color: #0D0D1A;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
        }
        .search-form button:hover {
            background: var(--gold-light);
            transform: scale(1.02);
        }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 40px 0;
        }
        .feedback-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 24px;
            border: 1px solid var(--border-glow);
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 20px;
            color: var(--gold);
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 12px;
        }
        .feedback-card textarea,
        .feedback-card input,
        .feedback-card select {
            padding: 10px 14px;
            border-radius: 8px;
            border: 1px solid var(--border-glow);
            background: rgba(255, 255, 255, 0.06);
            color: var(--text-light);
            font-size: 15px;
            outline: none;
            font-family: var(--font);
            transition: 0.2s;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus,
        .feedback-card select:focus {
            border-color: var(--gold);
            background: rgba(255, 255, 255, 0.1);
        }
        .feedback-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 10px 20px;
            border-radius: 8px;
            border: none;
            background: var(--gold);
            color: #0D0D1A;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: var(--gold-light);
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 24px;
            color: var(--sand-dark);
            cursor: pointer;
        }
        .star-rating i {
            transition: 0.15s;
        }
        .star-rating i.active,
        .star-rating i:hover {
            color: var(--gold);
        }
        footer {
            background: linear-gradient(135deg, #0D0D1A, #1A1A3A);
            border-top: 2px solid var(--border-glow);
            padding: 40px 0 24px;
            margin-top: 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-grid h4 {
            color: var(--gold);
            font-size: 16px;
            margin-bottom: 12px;
        }
        .footer-grid p,
        .footer-grid a {
            font-size: 14px;
            color: var(--text-muted);
        }
        .footer-grid a:hover {
            color: var(--gold-light);
        }
        friend-link {
            display: block;
            margin-top: 8px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 14px;
            color: var(--text-muted);
        }
        .copyright strong {
            color: var(--sand-light);
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .feedback-section {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--card-bg);
                padding: 16px 20px;
                border-radius: var(--radius);
                margin-top: 12px;
                gap: 12px;
                border: 1px solid var(--border-glow);
            }
            .nav-list.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            nav {
                width: 100%;
                flex-direction: column;
                align-items: stretch;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .hero h1 {
                font-size: 28px;
            }
            .feedback-section {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .my-logo {
                font-size: 22px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
        }
        .text-glow {
            text-shadow: 0 0 20px rgba(212, 168, 67, 0.15);
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .gap-8 {
            gap: 8px;
        }
        .flex {
            display: flex;
        }
        .flex-wrap {
            flex-wrap: wrap;
        }
        .items-center {
            align-items: center;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 15px;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        th {
            color: var(--gold);
            font-weight: 600;
            background: rgba(212, 168, 67, 0.08);
        }
        td {
            color: var(--text-muted);
        }
        .highlight-box {
            background: rgba(212, 168, 67, 0.08);
            border-left: 4px solid var(--gold);
            padding: 16px 20px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 20px 0;
        }
        .highlight-box strong {
            color: var(--gold-light);
        }
