        *,
        *::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, sans-serif;
            background: #0d0d0f;
            color: #e8e8f0;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffde7a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.01em;
            color: #ffffff;
        }
        h1 {
            font-size: 2.6rem;
            margin: 0 0 0.5rem 0;
        }
        h2 {
            font-size: 1.9rem;
            margin: 2.8rem 0 1rem 0;
            border-bottom: 2px solid #2a2a35;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
            margin: 2rem 0 0.75rem 0;
            color: #f0e6c5;
        }
        h4 {
            font-size: 1.15rem;
            margin: 1.2rem 0 0.5rem 0;
            color: #cdc9b8;
        }
        p {
            margin: 0 0 1.2rem 0;
            color: #d5d5e0;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .site-header {
            background: #14141a;
            border-bottom: 1px solid #2a2a35;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
            background: rgba(20, 20, 26, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5c542, #e8832a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
            display: inline-block;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: #999;
            color: #999;
            display: block;
            line-height: 1;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f0e6c5;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #2a2a35;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.2rem 1.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #c5c5d0;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            background: #2a2a35;
            color: #f5c542;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 0.3rem;
            font-size: 0.85rem;
        }
        .breadcrumb {
            background: #1a1a22;
            padding: 0.5rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #24242e;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #666;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        .breadcrumb .current {
            color: #f0e6c5;
        }
        .hero {
            padding: 2.5rem 0 1.5rem 0;
            background: linear-gradient(180deg, #14141a 0%, #0d0d0f 100%);
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }
        .hero-image {
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
            background: #2a2a35;
        }
        .hero h1 {
            font-size: 2.8rem;
        }
        .hero p {
            font-size: 1.1rem;
            color: #b5b5c5;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem 2rem;
            margin-top: 1.2rem;
            font-size: 0.9rem;
            color: #999;
        }
        .hero-meta i {
            margin-right: 0.4rem;
        }
        .content-section {
            padding: 1rem 0 2rem 0;
        }
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 1.5rem 0;
        }
        .three-col {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.8rem;
            margin: 1.5rem 0;
        }
        .card {
            background: #1a1a22;
            border-radius: 14px;
            padding: 1.6rem;
            border: 1px solid #2a2a35;
            transition: transform 0.2s, border-color 0.2s;
        }
        .card:hover {
            transform: translateY(-3px);
            border-color: #f5c54240;
        }
        .card h4 {
            margin-top: 0;
        }
        .card p {
            font-size: 0.95rem;
        }
        .card img {
            margin-bottom: 1rem;
            border-radius: 10px;
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
            background: #2a2a35;
        }
        .highlight-box {
            background: #1e1e2a;
            border-left: 4px solid #f5c542;
            padding: 1.5rem 2rem;
            border-radius: 0 12px 12px 0;
            margin: 1.8rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .stat-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .stat-item {
            background: #1a1a22;
            padding: 1.2rem;
            border-radius: 10px;
            text-align: center;
            border: 1px solid #2a2a35;
        }
        .stat-item .num {
            font-size: 2rem;
            font-weight: 800;
            color: #f5c542;
            display: block;
        }
        .stat-item .label {
            font-size: 0.85rem;
            color: #aaa;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            max-width: 560px;
            margin: 1.2rem 0 2rem 0;
        }
        .search-form input {
            flex: 1;
            padding: 0.75rem 1.2rem;
            border-radius: 30px;
            border: 1px solid #333;
            background: #1a1a22;
            color: #f0e6c5;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #f5c542;
        }
        .search-form button {
            padding: 0.75rem 1.5rem;
            border-radius: 30px;
            border: none;
            background: #f5c542;
            color: #0d0d0f;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-form button:hover {
            background: #ffde7a;
            transform: scale(1.02);
        }
        .comment-box,
        .rating-box {
            background: #1a1a22;
            border-radius: 14px;
            padding: 1.8rem;
            border: 1px solid #2a2a35;
            margin: 1.5rem 0;
        }
        .comment-box textarea,
        .rating-box select,
        .rating-box input {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 8px;
            border: 1px solid #333;
            background: #0d0d0f;
            color: #f0e6c5;
            font-size: 1rem;
            margin: 0.5rem 0 1rem 0;
            outline: none;
            font-family: inherit;
        }
        .comment-box textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-box textarea:focus,
        .rating-box select:focus,
        .rating-box input:focus {
            border-color: #f5c542;
        }
        .btn {
            padding: 0.65rem 1.8rem;
            border-radius: 30px;
            border: none;
            background: #f5c542;
            color: #0d0d0f;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-block;
        }
        .btn:hover {
            background: #ffde7a;
            transform: scale(1.02);
        }
        .btn-outline {
            background: transparent;
            border: 1px solid #f5c542;
            color: #f5c542;
        }
        .btn-outline:hover {
            background: #f5c54220;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            direction: rtl;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.1s;
        }
        .rating-stars i:hover,
        .rating-stars i:hover~i {
            color: #f5c542;
            transform: scale(1.1);
        }
        .site-footer {
            background: #101016;
            border-top: 1px solid #2a2a35;
            padding: 2.5rem 0 1.5rem 0;
            margin-top: auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .site-footer h4 {
            color: #f0e6c5;
            margin-bottom: 0.8rem;
        }
        .site-footer a {
            color: #aaa;
            display: inline-block;
            margin-bottom: 0.3rem;
        }
        .site-footer a:hover {
            color: #f5c542;
        }
        .footer-bottom {
            border-top: 1px solid #1e1e2a;
            padding-top: 1.2rem;
            margin-top: 1.8rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: #777;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.5rem;
        }
        friend-link a {
            color: #aaa;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            color: #f5c542;
        }
        @media (max-width: 900px) {
            .hero-grid {
                grid-template-columns: 1fr;
            }
            .two-col {
                grid-template-columns: 1fr;
            }
            .three-col {
                grid-template-columns: 1fr 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 680px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 0.8rem 0 0.4rem 0;
                gap: 0.3rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 0.8rem;
                border-radius: 6px;
            }
            .three-col {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .stat-list {
                grid-template-columns: 1fr 1fr;
            }
            .header-inner {
                align-items: center;
            }
        }
        @media (max-width: 440px) {
            .stat-list {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .hero-meta {
                flex-direction: column;
                gap: 0.4rem;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .list-unstyled {
            list-style: none;
            padding-left: 0;
        }
        .tag {
            display: inline-block;
            background: #2a2a35;
            padding: 0.15rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #ccc;
        }
        hr {
            border: none;
            border-top: 1px solid #2a2a35;
            margin: 2rem 0;
        }
