        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            background: #0d0d1a;
            color: #e8e0d0;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #d4b96a;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #f0e08a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.3;
            color: #f5e8c8;
            letter-spacing: 0.01em;
        }
        h1 {
            font-size: 2.6rem;
            margin-bottom: 1.2rem;
            border-bottom: 3px solid #b8943a;
            padding-bottom: 0.6rem;
            display: inline-block;
        }
        h2 {
            font-size: 2rem;
            margin-top: 2.8rem;
            margin-bottom: 1rem;
            color: #e6d5a0;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 2rem;
            margin-bottom: 0.7rem;
            color: #d4c088;
        }
        h4 {
            font-size: 1.2rem;
            margin-top: 1.3rem;
            margin-bottom: 0.4rem;
            color: #c8b87a;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.4rem 1.8rem;
        }
        li {
            margin-bottom: 0.3rem;
        }
        blockquote {
            border-left: 5px solid #b8943a;
            padding-left: 1.2rem;
            margin: 1.5rem 0;
            font-style: italic;
            background: rgba(184, 148, 58, 0.08);
            padding: 0.8rem 1.2rem;
            border-radius: 0 8px 8px 0;
        }
        hr {
            border: none;
            height: 1px;
            background: linear-gradient(to right, transparent, #b8943a, transparent);
            margin: 2.5rem 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
            width: 100%;
        }
        .site-header {
            background: linear-gradient(135deg, #0a0a18 0%, #1a1528 100%);
            border-bottom: 2px solid #2a1f0e;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #f5e8c8;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(to right, #d4b96a, #f0d68a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #d4b96a;
            font-size: 1.6rem;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 0.4rem 0.9rem;
            font-size: 0.92rem;
            font-weight: 500;
            color: #ccc5b0;
            border-radius: 6px;
            transition: background 0.25s, color 0.25s;
        }
        .main-nav a:hover,
        .main-nav a:focus-visible {
            background: rgba(212, 185, 106, 0.15);
            color: #f0e08a;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #e8e0d0;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(212, 185, 106, 0.15);
        }
        .breadcrumb {
            padding: 0.8rem 0 0.2rem;
            font-size: 0.9rem;
            color: #a09888;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #b8a878;
        }
        .breadcrumb a:hover {
            color: #f0e08a;
        }
        .breadcrumb span {
            color: #d4c088;
        }
        .hero-img-wrap {
            margin: 1.8rem 0 2.2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7);
            position: relative;
        }
        .hero-img-wrap img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .hero-img-wrap:hover img {
            transform: scale(1.02);
        }
        .hero-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.2rem 1.6rem;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: #f5e8c8;
            font-size: 0.95rem;
            font-weight: 500;
        }
        .search-section {
            background: rgba(30, 25, 45, 0.7);
            border-radius: 14px;
            padding: 1.4rem 1.8rem;
            margin: 2rem 0;
            border: 1px solid #3a2f1a;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
        }
        .search-form label {
            font-weight: 600;
            color: #d4c088;
            font-size: 1.05rem;
        }
        .search-form input[type="text"] {
            flex: 1 1 220px;
            padding: 0.7rem 1.2rem;
            border: 2px solid #4a3f2a;
            border-radius: 30px;
            background: #1a1a2e;
            color: #f0e8d8;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #d4b96a;
        }
        .search-form button {
            padding: 0.7rem 2rem;
            background: linear-gradient(135deg, #b8943a, #d4b96a);
            border: none;
            border-radius: 30px;
            color: #0d0d1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }
        .search-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(184, 148, 58, 0.4);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2.5rem 0;
        }
        .comment-box,
        .rating-box {
            background: rgba(30, 25, 45, 0.6);
            border-radius: 14px;
            padding: 1.6rem 1.8rem;
            border: 1px solid #3a2f1a;
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .comment-box form,
        .rating-box form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.6rem;
        }
        .comment-box textarea {
            padding: 0.8rem;
            border-radius: 10px;
            border: 2px solid #4a3f2a;
            background: #1a1a2e;
            color: #f0e8d8;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 80px;
            font-family: inherit;
            outline: none;
            transition: border-color 0.3s;
        }
        .comment-box textarea:focus {
            border-color: #d4b96a;
        }
        .comment-box input[type="text"],
        .rating-box select {
            padding: 0.7rem 1rem;
            border-radius: 10px;
            border: 2px solid #4a3f2a;
            background: #1a1a2e;
            color: #f0e8d8;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .comment-box input[type="text"]:focus,
        .rating-box select:focus {
            border-color: #d4b96a;
        }
        .comment-box button,
        .rating-box button {
            align-self: flex-start;
            padding: 0.6rem 1.8rem;
            background: linear-gradient(135deg, #b8943a, #d4b96a);
            border: none;
            border-radius: 30px;
            color: #0d0d1a;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .comment-box button:hover,
        .rating-box button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(184, 148, 58, 0.3);
        }
        .rating-stars {
            display: flex;
            gap: 0.4rem;
            font-size: 1.6rem;
            color: #5a4f3a;
        }
        .rating-stars .fa-star.active {
            color: #f0c040;
        }
        .spec-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0 1.8rem;
            background: rgba(20, 18, 35, 0.7);
            border-radius: 12px;
            overflow: hidden;
        }
        .spec-table th,
        .spec-table td {
            padding: 0.8rem 1.2rem;
            text-align: left;
            border-bottom: 1px solid #2a2a40;
        }
        .spec-table th {
            background: rgba(184, 148, 58, 0.2);
            color: #d4c088;
            font-weight: 700;
        }
        .spec-table tr:hover td {
            background: rgba(184, 148, 58, 0.05);
        }
        .site-footer {
            margin-top: auto;
            background: #0a0a18;
            border-top: 2px solid #1f1a10;
            padding: 2.2rem 0 1.5rem;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
            font-style: normal;
        }
        friend-link a {
            color: #b8a878;
            font-size: 0.95rem;
            position: relative;
        }
        friend-link a::after {
            content: "•";
            color: #5a4f3a;
            margin-left: 0.8rem;
        }
        friend-link a:last-child::after {
            display: none;
        }
        .copyright {
            color: #6a6a7a;
            font-size: 0.88rem;
            margin-top: 1.2rem;
            text-align: center;
            border-top: 1px solid #1a1a30;
            padding-top: 1.2rem;
        }
        .copyright strong {
            color: #a09888;
        }
        @media (max-width: 820px) {
            .interaction-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 0.6rem 0 0.2rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 0.8rem;
                border-bottom: 1px solid #1a1a30;
            }
            .nav-toggle {
                display: block;
            }
            .hero-caption {
                font-size: 0.8rem;
                padding: 0.8rem 1rem;
            }
            .search-form {
                flex-direction: column;
                align-items: stretch;
            }
            .search-form button {
                justify-content: center;
            }
            .footer-inner {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            friend-link {
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .spec-table th,
            .spec-table td {
                padding: 0.5rem 0.7rem;
                font-size: 0.85rem;
            }
            .comment-box,
            .rating-box {
                padding: 1rem;
            }
        }
        .text-glow {
            text-shadow: 0 0 20px rgba(212, 185, 106, 0.15);
        }
        .badge {
            display: inline-block;
            background: rgba(184, 148, 58, 0.2);
            padding: 0.15rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #d4c088;
            border: 1px solid #4a3f2a;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .anchor-offset {
            scroll-margin-top: 90px;
        }
