* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #0b0e14;
            color: #e8edf2;
            line-height: 1.7;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #f0c040;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #141a24, #1a2230);
            padding: 16px 0;
            border-bottom: 2px solid #f0c04033;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f0c040, #f5d97a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px #f0c04022;
            font-family: 'Segoe UI', sans-serif;
        }
        .my-logo a {
            color: inherit;
            -webkit-text-fill-color: transparent;
            background: inherit;
            background-clip: text;
        }
        .my-logo a:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-toggle {
            display: none;
            font-size: 1.6rem;
            background: none;
            border: none;
            color: #f0c040;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #ffffff0a;
        }
        .main-nav {
            display: flex;
            gap: 8px 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 10px;
            border-radius: 6px;
            transition: background 0.2s;
            color: #c8d0dc;
        }
        .main-nav a:hover {
            background: #ffffff0a;
            color: #f0c040;
            text-decoration: none;
        }
        .main-nav a.active {
            color: #f0c040;
            border-bottom: 2px solid #f0c040;
        }
        .breadcrumb {
            padding: 12px 0 4px;
            font-size: 0.85rem;
            color: #8892a0;
            display: flex;
            flex-wrap: wrap;
            gap: 4px 8px;
        }
        .breadcrumb a {
            color: #8892a0;
        }
        .breadcrumb a:hover {
            color: #f0c040;
        }
        .breadcrumb span {
            color: #b0b8c8;
        }
        .hero {
            padding: 40px 0 24px;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5d97a, #f0c040, #e6b800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 12px;
        }
        .hero .sub {
            font-size: 1.15rem;
            color: #a0aab8;
            max-width: 720px;
            margin: 0 auto 20px;
        }
        .hero .meta {
            font-size: 0.9rem;
            color: #788290;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px 28px;
        }
        .hero .meta i {
            color: #f0c040;
            margin-right: 6px;
        }
        section {
            padding: 32px 0;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f5d97a;
            border-left: 4px solid #f0c040;
            padding-left: 16px;
            margin: 32px 0 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #e8d5a0;
            margin: 28px 0 12px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #d4c8a8;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 16px;
            color: #d0d8e0;
        }
        strong {
            color: #f5e6c0;
        }
        .highlight-box {
            background: #1a2232;
            border-left: 4px solid #f0c040;
            padding: 18px 22px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .highlight-box p {
            margin-bottom: 4px;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 24px 0;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;
            margin: 24px 0;
        }
        .card {
            background: #141c28;
            border-radius: 14px;
            padding: 22px 20px;
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid #ffffff08;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px #00000033;
        }
        .card h4 {
            margin-top: 0;
        }
        .stat {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f0c040;
            line-height: 1.2;
        }
        .stat-label {
            font-size: 0.9rem;
            color: #8892a0;
        }
        .feature-img {
            margin: 28px 0;
            border-radius: 14px;
            box-shadow: 0 8px 30px #00000033;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: 0.95rem;
        }
        .data-table th {
            background: #1a2232;
            color: #f5d97a;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
            border-bottom: 2px solid #f0c04033;
        }
        .data-table td {
            padding: 10px 16px;
            border-bottom: 1px solid #ffffff0a;
            color: #c8d0dc;
        }
        .data-table tr:hover td {
            background: #ffffff06;
        }
        .search-box {
            display: flex;
            max-width: 560px;
            margin: 24px auto;
            border-radius: 40px;
            overflow: hidden;
            border: 1px solid #f0c04044;
            background: #141c28;
        }
        .search-box input {
            flex: 1;
            padding: 14px 22px;
            border: none;
            background: transparent;
            color: #e8edf2;
            font-size: 1rem;
            outline: none;
        }
        .search-box input::placeholder {
            color: #6a7480;
        }
        .search-box button {
            padding: 14px 28px;
            background: #f0c040;
            border: none;
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .search-box button:hover {
            background: #ffd966;
        }
        .comment-section,
        .rating-section {
            background: #101820;
            border-radius: 16px;
            padding: 28px 30px;
            margin: 32px 0;
            border: 1px solid #ffffff08;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 4px;
            color: #b0b8c8;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid #ffffff18;
            background: #1a2232;
            color: #e8edf2;
            font-size: 1rem;
            transition: border 0.2s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #f0c040;
            outline: none;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn-primary {
            padding: 12px 32px;
            background: #f0c040;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            color: #0b0e14;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .btn-primary:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        friend-link {
            display: block;
            padding: 24px 0;
            border-top: 1px solid #ffffff0a;
            margin-top: 24px;
        }
        friend-link .flist {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            margin-top: 8px;
        }
        friend-link .flist a {
            color: #a0aab8;
            font-size: 0.9rem;
            padding: 4px 0;
            border-bottom: 1px solid transparent;
        }
        friend-link .flist a:hover {
            color: #f0c040;
            border-bottom-color: #f0c04044;
        }
        .site-footer {
            background: #0a0e16;
            padding: 32px 0 20px;
            border-top: 1px solid #ffffff0a;
            text-align: center;
            font-size: 0.9rem;
            color: #6a7480;
        }
        .site-footer .copyright {
            margin-top: 12px;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 12px 0 4px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 14px;
                border-radius: 8px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .comment-section,
            .rating-section {
                padding: 20px 16px;
            }
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 8px 10px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .container {
                padding: 0 12px;
            }
            .search-box input {
                padding: 10px 14px;
                font-size: 0.9rem;
            }
            .search-box button {
                padding: 10px 16px;
                font-size: 0.9rem;
            }
        }
        .fade-in {
            animation: fadeUp 0.5s ease forwards;
            opacity: 0;
        }
        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(12px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .emoji-big {
            font-size: 1.8rem;
            vertical-align: middle;
        }
        .tag {
            display: inline-block;
            background: #f0c04018;
            color: #f5d97a;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid #f0c04022;
        }
        .inline-icon {
            margin-right: 6px;
            color: #f0c040;
        }
        .last-updated {
            text-align: right;
            font-size: 0.85rem;
            color: #6a7480;
            padding: 8px 0 4px;
            border-top: 1px solid #ffffff06;
        }
