        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #0f0e13;
            color: #e8e6f0;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #d4a857;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #f0d080;
            outline: 2px solid #d4a85780;
            outline-offset: 2px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1 {
            font-size: clamp(2rem, 6vw, 3.4rem);
            font-weight: 800;
            color: #f5e7c8;
            letter-spacing: -0.02em;
            margin-bottom: 0.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 20px rgba(212, 168, 87, 0.15);
        }
        h2 {
            font-size: clamp(1.5rem, 4vw, 2.2rem);
            font-weight: 700;
            color: #e8d5b0;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid #2a2535;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: clamp(1.2rem, 3vw, 1.6rem);
            font-weight: 600;
            color: #dcc8a0;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h4 {
            font-size: clamp(1rem, 2vw, 1.2rem);
            font-weight: 600;
            color: #cfbc94;
            margin-top: 1.4rem;
            margin-bottom: 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            color: #d5d0de;
        }
        .text-muted {
            color: #9f99b0;
        }
        .text-small {
            font-size: 0.85rem;
        }
        .site-header {
            background: #1a1724;
            border-bottom: 1px solid #2a2535;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
            background: rgba(26, 23, 36, 0.95);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            flex-wrap: wrap;
            gap: 10px;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            color: #f5e7c8;
            background: linear-gradient(135deg, #d4a857, #b88d3a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.03em;
            text-shadow: 0 0 30px rgba(212, 168, 87, 0.1);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo i {
            -webkit-text-fill-color: #d4a857;
            margin-right: 6px;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .main-nav a {
            padding: 6px 14px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #c8c0d8;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: #2a2535;
            color: #f5e7c8;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #3a344a;
            color: #e8e6f0;
            font-size: 1.4rem;
            padding: 6px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #2a2535;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: flex;
                align-items: center;
                gap: 6px;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 4px;
                padding: 12px 0 6px;
                border-top: 1px solid #2a2535;
                margin-top: 6px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                width: 100%;
                padding: 10px 14px;
            }
        }
        .breadcrumb {
            padding: 12px 0 4px;
            font-size: 0.85rem;
            color: #9f99b0;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #b8aed0;
        }
        .breadcrumb a:hover {
            color: #d4a857;
        }
        .breadcrumb span {
            color: #6a6480;
        }
        .hero-img {
            margin: 1.5rem 0 2rem;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
            background: #1a1724;
            overflow: hidden;
        }
        .hero-img img {
            width: 100%;
            min-height: 200px;
            object-fit: cover;
            aspect-ratio: 3440/1440;
        }
        .hero-caption {
            font-size: 0.85rem;
            color: #9f99b0;
            padding: 8px 16px 12px;
            text-align: center;
            font-style: italic;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin: 1.5rem 0;
        }
        .card {
            background: #1e1b2a;
            border-radius: 14px;
            padding: 20px 22px;
            border: 1px solid #2a2535;
            transition: transform 0.2s, border-color 0.2s;
        }
        .card:hover {
            transform: translateY(-4px);
            border-color: #d4a85740;
        }
        .card i {
            color: #d4a857;
            font-size: 1.6rem;
            margin-bottom: 10px;
        }
        .card h4 {
            margin-top: 0;
            color: #f0e0c0;
        }
        .search-box {
            display: flex;
            gap: 8px;
            max-width: 520px;
            margin: 1.8rem 0 1.2rem;
            flex-wrap: wrap;
        }
        .search-box input {
            flex: 1;
            min-width: 180px;
            padding: 12px 18px;
            border-radius: 10px;
            border: 1px solid #3a344a;
            background: #1a1724;
            color: #e8e6f0;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.2s;
        }
        .search-box input:focus {
            border-color: #d4a857;
        }
        .search-box button {
            padding: 12px 24px;
            border-radius: 10px;
            border: none;
            background: #d4a857;
            color: #0f0e13;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-box button:hover {
            background: #e8c070;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 2rem 0;
        }
        @media (max-width: 700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #1e1b2a;
            border-radius: 14px;
            padding: 22px 24px;
            border: 1px solid #2a2535;
        }
        .feedback-card h3 {
            margin-top: 0;
            border-bottom: 1px solid #2a2535;
            padding-bottom: 10px;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 12px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 10px 14px;
            border-radius: 8px;
            border: 1px solid #3a344a;
            background: #0f0e13;
            color: #e8e6f0;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.2s;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #d4a857;
        }
        .feedback-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 10px 20px;
            border-radius: 8px;
            border: none;
            background: #d4a857;
            color: #0f0e13;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: #e8c070;
        }
        .star-rating {
            display: flex;
            gap: 4px;
            font-size: 1.5rem;
            color: #4a445a;
            cursor: pointer;
        }
        .star-rating i.active {
            color: #d4a857;
        }
        .star-rating i:hover,
        .star-rating i:focus {
            color: #e8c070;
        }
        .site-footer {
            margin-top: 4rem;
            padding: 2.5rem 0 2rem;
            border-top: 1px solid #2a2535;
            background: #12101a;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        .site-footer h4 {
            color: #e0d0b8;
            margin-top: 0;
            font-weight: 600;
        }
        .friend-link {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .friend-link a {
            color: #b8aed0;
            font-size: 0.9rem;
        }
        .friend-link a:hover {
            color: #d4a857;
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 1.2rem;
            border-top: 1px solid #2a2535;
            text-align: center;
            color: #7a7490;
            font-size: 0.85rem;
        }
        .content-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0;
            background: #1a1724;
            border-radius: 10px;
            overflow: hidden;
        }
        .content-table th {
            background: #2a2535;
            color: #f0e0c0;
            padding: 10px 14px;
            text-align: left;
            font-weight: 600;
        }
        .content-table td {
            padding: 10px 14px;
            border-bottom: 1px solid #2a2535;
            color: #d5d0de;
        }
        .content-table tr:last-child td {
            border-bottom: none;
        }
        .content-table tr:hover td {
            background: #252031;
        }
        .tag {
            display: inline-block;
            background: #2a2535;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            color: #b8aed0;
            margin-right: 4px;
        }
        .last-updated {
            display: inline-block;
            background: #1a1724;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #b8aed0;
            border: 1px solid #2a2535;
            margin: 0.5rem 0 1rem;
        }
        .blockquote {
            border-left: 4px solid #d4a857;
            padding: 12px 20px;
            background: #1a1724;
            border-radius: 4px 12px 12px 4px;
            margin: 1.2rem 0;
            font-style: italic;
            color: #c8c0d8;
        }
        .section-icon {
            margin-right: 8px;
            color: #d4a857;
        }
        .btn-top {
            position: fixed;
            bottom: 24px;
            right: 24px;
            background: #d4a857;
            color: #0f0e13;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 4px 20px rgba(212, 168, 87, 0.25);
            transition: transform 0.2s, background 0.2s;
            z-index: 50;
            border: none;
            cursor: pointer;
        }
        .btn-top:hover {
            background: #e8c070;
            transform: translateY(-4px);
        }
        @media (max-width: 480px) {
            .btn-top {
                bottom: 16px;
                right: 16px;
                width: 38px;
                height: 38px;
                font-size: 1rem;
            }
        }
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #0f0e13;
        }
        ::-webkit-scrollbar-thumb {
            background: #3a344a;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #5a5470;
        }
