* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0d0d0d;
            color: #e8e0d0;
            line-height: 1.7;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #d4a843;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #f5d884;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #111118;
            border-bottom: 2px solid #d4a84322;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(6px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #d4a843, #f5d884);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px #d4a84333;
            font-family: 'Georgia', serif;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #a09880;
            color: #a09880;
            letter-spacing: 1px;
            font-weight: 300;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 24px;
            list-style: none;
            flex-wrap: wrap;
        }
        .nav-menu li a {
            font-size: 0.95rem;
            font-weight: 500;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.3s, color 0.3s;
        }
        .nav-menu li a:hover {
            border-bottom-color: #d4a843;
            color: #f5d884;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #d4a843;
            background: none;
            border: none;
            padding: 4px 10px;
            border-radius: 4px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #1a1a2e;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
                padding: 16px 0 8px 0;
                background: #111118;
                border-top: 1px solid #d4a84322;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                font-size: 1.05rem;
                padding: 8px 0;
                display: block;
                width: 100%;
            }
        }
        .breadcrumb {
            background: #16161e;
            padding: 10px 0;
            border-bottom: 1px solid #d4a84311;
            font-size: 0.85rem;
            color: #a09880;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 6px;
            color: #d4a84388;
        }
        .breadcrumb a {
            color: #c9b07a;
        }
        .breadcrumb .current {
            color: #e8e0d0;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #f5d884;
            margin-bottom: 20px;
            line-height: 1.2;
            letter-spacing: -0.5px;
            border-left: 4px solid #d4a843;
            padding-left: 20px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #ecd69b;
            margin-top: 48px;
            margin-bottom: 16px;
            border-bottom: 1px solid #d4a84333;
            padding-bottom: 8px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #e0cfa0;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #d4c090;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
        }
        .highlight {
            background: linear-gradient(90deg, #d4a84322, transparent);
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
            color: #f5d884;
        }
        .feature-box {
            background: #16161e;
            border: 1px solid #d4a84322;
            border-radius: 12px;
            padding: 24px 28px;
            margin: 28px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        .feature-box i {
            color: #d4a843;
            margin-right: 10px;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 24px 0;
        }
        @media (max-width: 640px) {
            .grid-2 {
                grid-template-columns: 1fr;
            }
        }
        .card {
            background: #1a1a2a;
            border-radius: 10px;
            padding: 20px;
            border: 1px solid #d4a84311;
            transition: transform 0.2s, box-shadow 0.3s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(212, 168, 67, 0.12);
        }
        .card h4 {
            margin-top: 0;
        }
        .stat {
            font-size: 1.8rem;
            font-weight: 700;
            color: #d4a843;
            line-height: 1.2;
        }
        .stat-label {
            font-size: 0.9rem;
            color: #a09880;
        }
        .hero-img-wrap {
            margin: 32px 0;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #d4a84322;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7);
            position: relative;
        }
        .hero-img-wrap img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .hero-img-wrap .img-caption {
            background: #111118ee;
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #a09880;
            border-top: 1px solid #d4a84322;
        }
        .search-section {
            background: #16161e;
            border-radius: 12px;
            padding: 28px 32px;
            margin: 32px 0;
            border: 1px solid #d4a84322;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 18px;
            border-radius: 8px;
            border: 1px solid #d4a84344;
            background: #0d0d0d;
            color: #e8e0d0;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #d4a843;
            box-shadow: 0 0 0 3px #d4a84322;
        }
        .search-form button {
            padding: 14px 32px;
            background: #d4a843;
            color: #0d0d0d;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
        }
        .search-form button:hover {
            background: #f5d884;
            transform: scale(1.02);
        }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0;
        }
        @media (max-width: 700px) {
            .feedback-section {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #16161e;
            border-radius: 12px;
            padding: 24px 28px;
            border: 1px solid #d4a84322;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.4rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feedback-card input,
        .feedback-card textarea {
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid #d4a84344;
            background: #0d0d0d;
            color: #e8e0d0;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus {
            border-color: #d4a843;
            box-shadow: 0 0 0 3px #d4a84322;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 12px 24px;
            background: #d4a843;
            color: #0d0d0d;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: #f5d884;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            cursor: pointer;
            color: #a09880;
            transition: color 0.2s;
        }
        .star-rating i.active {
            color: #d4a843;
        }
        .star-rating i:hover,
        .star-rating i.hover {
            color: #f5d884;
        }
        footer {
            background: #0a0a12;
            border-top: 1px solid #d4a84322;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 28px;
        }
        @media (max-width: 700px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .footer-inner h4 {
            color: #d4a843;
            margin-top: 0;
            font-size: 1.1rem;
            border-bottom: 1px solid #d4a84322;
            padding-bottom: 6px;
        }
        .footer-links {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 6px;
        }
        .footer-links a {
            font-size: 0.95rem;
            color: #b8a88a;
        }
        .footer-links a:hover {
            color: #f5d884;
        }
        friend-link {
            display: block;
            padding: 12px 16px;
            background: #111118;
            border-radius: 8px;
            border: 1px solid #d4a84311;
            margin: 12px 0;
            font-size: 0.95rem;
        }
        friend-link a {
            color: #d4a843;
            font-weight: 500;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #d4a84311;
            color: #7a705a;
            font-size: 0.9rem;
        }
        .copyright strong {
            color: #b8a88a;
        }
        .last-updated {
            display: inline-block;
            background: #1a1a2a;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #a09880;
            border: 1px solid #d4a84322;
            margin-bottom: 20px;
        }
        .last-updated i {
            color: #d4a843;
            margin-right: 6px;
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.8rem;
                padding-left: 14px;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .container {
                padding: 0 14px;
            }
            .search-form button {
                width: 100%;
            }
            .feedback-card button {
                width: 100%;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0d0d0d;
        }
        ::-webkit-scrollbar-thumb {
            background: #d4a84344;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #d4a84388;
        }
        .eeat-badge {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin: 12px 0 20px;
        }
        .eeat-badge span {
            background: #1a1a2a;
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #a09880;
            border: 1px solid #d4a84311;
        }
        .eeat-badge i {
            color: #d4a843;
            margin-right: 6px;
        }
