* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #0d0d0d;
            color: #e8e0d4;
            line-height: 1.75;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #d4a373;
            text-decoration: none;
            transition: color 0.2s ease, transform 0.2s ease;
        }
        a:hover {
            color: #f0d5b0;
            transform: translateY(-1px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: #1a1a1a;
            border-bottom: 2px solid #2a2a2a;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(8px);
            background: rgba(26, 26, 26, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #d4a373, #f0d5b0, #b8864e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(212, 163, 115, 0.15);
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #d4a373;
            margin-right: 6px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #d4a373;
            color: #d4a373;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #2a2a2a;
        }
        .nav-menu {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            font-weight: 500;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        .nav-menu a:hover {
            border-bottom-color: #d4a373;
            color: #f0d5b0;
        }
        .nav-menu a i {
            margin-right: 6px;
            font-size: 0.85rem;
            opacity: 0.7;
        }
        .breadcrumb {
            background: #141414;
            padding: 12px 0;
            border-bottom: 1px solid #222;
            font-size: 0.85rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #b8864e;
        }
        .breadcrumb a:hover {
            color: #f0d5b0;
        }
        .breadcrumb span {
            color: #888;
        }
        .hero {
            padding: 50px 0 30px;
            text-align: center;
            background: radial-gradient(ellipse at 50% 0%, #1e1a14, #0d0d0d 80%);
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f0d5b0, #d4a373, #b8864e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.15rem;
            color: #bbb;
            max-width: 750px;
            margin: 0 auto 10px;
        }
        .hero .meta-info {
            font-size: 0.9rem;
            color: #888;
            margin-top: 10px;
        }
        .hero .meta-info i {
            margin-right: 6px;
            color: #d4a373;
        }
        .last-updated {
            display: inline-block;
            background: #1e1a14;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #b8864e;
            border: 1px solid #2a2a2a;
        }
        section {
            padding: 40px 0;
        }
        h2 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #f0d5b0;
            border-left: 5px solid #d4a373;
            padding-left: 18px;
            line-height: 1.3;
        }
        h3 {
            font-size: 1.6rem;
            font-weight: 600;
            margin: 30px 0 14px;
            color: #e0c8a8;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 20px 0 10px;
            color: #d4b88a;
        }
        p {
            margin-bottom: 16px;
            color: #d4cec6;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        @media (min-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        .card {
            background: #171717;
            border-radius: 16px;
            padding: 24px;
            border: 1px solid #2a2a2a;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .card:hover {
            border-color: #d4a37344;
            box-shadow: 0 8px 30px rgba(212, 163, 115, 0.06);
        }
        .card i {
            color: #d4a373;
            margin-right: 8px;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
            background: #1a1a1a;
            padding: 8px;
        }
        .featured-image img {
            border-radius: 12px;
            width: 100%;
            min-height: 200px;
            object-fit: cover;
            background: #2a2a2a;
        }
        .featured-image figcaption {
            padding: 12px 8px 4px;
            font-size: 0.85rem;
            color: #999;
            text-align: center;
            font-style: italic;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            padding: 16px 0;
            list-style: none;
        }
        .link-list li a {
            font-weight: 500;
            padding: 4px 0;
            border-bottom: 1px dotted #444;
        }
        .link-list li a:hover {
            border-bottom-color: #d4a373;
        }
        .link-list li a i {
            font-size: 0.75rem;
            margin-right: 4px;
            opacity: 0.6;
        }
        .search-box {
            display: flex;
            gap: 10px;
            max-width: 520px;
            margin: 20px 0 30px;
            flex-wrap: wrap;
        }
        .search-box input {
            flex: 1;
            padding: 14px 20px;
            border-radius: 40px;
            border: 1px solid #333;
            background: #1a1a1a;
            color: #e8e0d4;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s;
            min-width: 180px;
        }
        .search-box input:focus {
            border-color: #d4a373;
            box-shadow: 0 0 0 3px #d4a37322;
        }
        .search-box button {
            padding: 14px 32px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #d4a373, #b8864e);
            color: #0d0d0d;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .search-box button:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 24px rgba(212, 163, 115, 0.3);
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            margin: 30px 0;
        }
        @media (min-width: 640px) {
            .interact-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        .interact-card {
            background: #171717;
            border-radius: 16px;
            padding: 24px;
            border: 1px solid #2a2a2a;
        }
        .interact-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            margin: 12px 0;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f5c842;
            transform: scale(1.15);
        }
        .rating-stars i.selected {
            color: #f5c842;
        }
        .interact-card textarea {
            width: 100%;
            padding: 14px;
            border-radius: 12px;
            border: 1px solid #333;
            background: #141414;
            color: #e8e0d4;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 90px;
            outline: none;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        .interact-card textarea:focus {
            border-color: #d4a373;
        }
        .interact-card .btn {
            padding: 12px 28px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #d4a373, #b8864e);
            color: #0d0d0d;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            margin-top: 10px;
        }
        .interact-card .btn:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 24px rgba(212, 163, 115, 0.25);
        }
        .interact-card .btn i {
            margin-right: 6px;
        }
        .site-footer {
            background: #111;
            border-top: 2px solid #1e1e1e;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        @media (min-width: 768px) {
            .footer-inner {
                grid-template-columns: 2fr 1fr 1fr;
            }
        }
        .footer-inner h4 {
            color: #d4a373;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .footer-inner a {
            display: block;
            padding: 4px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .footer-inner a:hover {
            color: #f0d5b0;
        }
        friend-link {
            display: block;
            padding: 8px 0;
        }
        friend-link a {
            display: inline-block;
            margin-right: 16px;
            padding: 4px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid #1e1e1e;
            margin-top: 24px;
            font-size: 0.85rem;
            color: #777;
        }
        .copyright a {
            color: #b8864e;
        }
        @media (max-width: 767px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 6px;
                padding: 16px 0 8px;
                border-top: 1px solid #2a2a2a;
                margin-top: 12px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-toggle {
                display: block;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            h2 {
                font-size: 1.7rem;
                padding-left: 12px;
            }
            h3 {
                font-size: 1.3rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .link-list {
                gap: 6px 12px;
            }
            .link-list li a {
                font-size: 0.9rem;
            }
            .search-box input {
                min-width: 140px;
                padding: 12px 16px;
            }
            .search-box button {
                padding: 12px 24px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .interact-grid {
                grid-template-columns: 1fr;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
        }
        .fade-up {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.6s ease forwards;
        }
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .delay-1 {
            animation-delay: 0.1s;
        }
        .delay-2 {
            animation-delay: 0.2s;
        }
        .delay-3 {
            animation-delay: 0.3s;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 0.95rem;
            background: #151515;
            border-radius: 12px;
            overflow: hidden;
        }
        .data-table th {
            background: #1e1a14;
            color: #f0d5b0;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 10px 16px;
            border-bottom: 1px solid #222;
            color: #ccc;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #1c1c1c;
        }
        blockquote {
            border-left: 4px solid #d4a373;
            padding: 12px 20px;
            margin: 20px 0;
            background: #16120e;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #c8b8a0;
        }
        blockquote cite {
            display: block;
            margin-top: 8px;
            font-size: 0.85rem;
            color: #888;
            font-style: normal;
        }
        .highlight {
            background: linear-gradient(120deg, #d4a37322, #b8864e22);
            padding: 2px 8px;
            border-radius: 6px;
            font-weight: 600;
            color: #f0d5b0;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 6px;
        }
        .badge {
            display: inline-block;
            background: #2a2a2a;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.75rem;
            color: #d4a373;
            border: 1px solid #3a3a3a;
            margin-right: 6px;
        }
