        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #0b0e14;
            color: #e8edf5;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #f9a826;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #ffc857;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #ffffff;
            margin-top: 1.5em;
            margin-bottom: 0.5em;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.6em;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #f9a826;
            padding-left: 0.75rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #f0d6a8;
        }
        h4 {
            font-size: 1.15rem;
            color: #d4b483;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        :root {
            --primary: #f9a826;
            --primary-dark: #d4891e;
            --secondary: #1e2a3a;
            --accent: #ff6b35;
            --bg-dark: #0b0e14;
            --bg-card: #141b26;
            --bg-card-hover: #1c2636;
            --text-light: #e8edf5;
            --text-muted: #9aa8b9;
            --border-color: #2a3648;
            --success: #2ecc71;
            --danger: #e74c3c;
        }
        .site-header {
            background: linear-gradient(135deg, #0f1724 0%, #1a2538 100%);
            border-bottom: 2px solid var(--primary-dark);
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f9a826, #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            font-size: 1.6rem;
            -webkit-text-fill-color: initial;
            color: #f9a826;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            color: var(--text-muted);
            -webkit-text-fill-color: initial;
            letter-spacing: 0.3px;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .main-nav {
            display: flex;
            gap: 0.3rem;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
        }
        .main-nav li a {
            display: block;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #d0d9e6;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        .main-nav li a:hover {
            background: rgba(249, 168, 38, 0.18);
            color: #f9a826;
            text-decoration: none;
        }
        .main-nav li a.active {
            background: var(--primary);
            color: #0b0e14;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #f0d6a8;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(249, 168, 38, 0.15);
        }
        .breadcrumb {
            padding: 0.8rem 0 0.2rem 0;
            font-size: 0.85rem;
            color: var(--text-muted);
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #5a6a7e;
        }
        .breadcrumb a {
            color: #b0c4de;
        }
        .breadcrumb a:hover {
            color: #f9a826;
        }
        .breadcrumb .current {
            color: #f9a826;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #111d2b, #1f2e42);
            border-radius: 18px;
            padding: 2.5rem 2rem;
            margin: 1.8rem 0 2.5rem;
            border: 1px solid #2a3a52;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 2rem;
        }
        .hero-text {
            flex: 1 1 300px;
        }
        .hero-text h1 {
            font-size: 2.2rem;
            margin-top: 0;
            background: linear-gradient(135deg, #f9a826, #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-text p {
            font-size: 1.1rem;
            color: #c8d6e5;
            margin-bottom: 1.2rem;
        }
        .hero-img-wrap {
            flex: 0 0 260px;
        }
        .hero-img-wrap img {
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
            border: 2px solid #2a3a52;
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .hero-badge {
            display: inline-block;
            background: var(--primary);
            color: #0b0e14;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            margin-bottom: 0.8rem;
        }
        .section-card {
            background: var(--bg-card);
            border-radius: 14px;
            padding: 1.8rem 1.5rem;
            margin-bottom: 2rem;
            border: 1px solid var(--border-color);
            transition: border-color 0.3s, background 0.3s;
        }
        .section-card:hover {
            border-color: #3f526e;
            background: var(--bg-card-hover);
        }
        .section-card h2 {
            margin-top: 0.2em;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.5rem;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .stat-item {
            background: #0f1724;
            padding: 1rem 0.8rem;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #253040;
        }
        .stat-item .num {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f9a826;
            display: block;
        }
        .stat-item .label {
            font-size: 0.85rem;
            color: #9aa8b9;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1rem;
            list-style: none;
            padding: 0.5rem 0;
        }
        .link-list li a {
            background: rgba(249, 168, 38, 0.08);
            padding: 0.3rem 1rem;
            border-radius: 30px;
            border: 1px solid #2a3a52;
            font-size: 0.9rem;
            display: inline-block;
            transition: 0.25s;
        }
        .link-list li a:hover {
            background: rgba(249, 168, 38, 0.2);
            border-color: #f9a826;
            text-decoration: none;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0;
            font-size: 0.95rem;
        }
        .data-table th {
            background: #1a273a;
            color: #f9a826;
            padding: 0.75rem 1rem;
            text-align: left;
            font-weight: 700;
            border-bottom: 2px solid #2a3a52;
        }
        .data-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #1e2a3e;
        }
        .data-table tr:hover td {
            background: rgba(249, 168, 38, 0.04);
        }
        .search-box {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
            margin: 1rem 0;
        }
        .search-box input {
            flex: 1 1 240px;
            padding: 0.8rem 1.2rem;
            border-radius: 40px;
            border: 2px solid #2a3a52;
            background: #0f1724;
            color: #e8edf5;
            font-size: 1rem;
            transition: border-color 0.3s;
            outline: none;
        }
        .search-box input:focus {
            border-color: #f9a826;
        }
        .search-box button {
            padding: 0.8rem 2rem;
            border-radius: 40px;
            border: none;
            background: var(--primary);
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .search-box button:hover {
            background: #ffc857;
            transform: scale(1.02);
        }
        .comment-area textarea {
            width: 100%;
            padding: 0.9rem 1rem;
            border-radius: 12px;
            border: 2px solid #2a3a52;
            background: #0f1724;
            color: #e8edf5;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 90px;
            outline: none;
            transition: border-color 0.3s;
        }
        .comment-area textarea:focus {
            border-color: #f9a826;
        }
        .comment-area .btn-row {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            margin-top: 0.8rem;
        }
        .btn {
            padding: 0.65rem 1.8rem;
            border-radius: 40px;
            border: none;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-primary {
            background: var(--primary);
            color: #0b0e14;
        }
        .btn-primary:hover {
            background: #ffc857;
            transform: scale(1.02);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #2a3a52;
            color: #d0d9e6;
        }
        .btn-outline:hover {
            border-color: #f9a826;
            color: #f9a826;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #3a4a5e;
            cursor: pointer;
            direction: rtl;
            unicode-bidi: bidi-override;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.2s, transform 0.15s;
            color: #3a4a5e;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f9a826;
            transform: scale(1.1);
        }
        .star-rating label i {
            font-size: 1.8rem;
        }
        friend-link {
            display: block;
            padding: 1.2rem 0 0.5rem;
        }
        friend-link ul {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.5rem;
            list-style: none;
            padding: 0;
        }
        friend-link ul li a {
            color: #b0c4de;
            font-size: 0.9rem;
            border-bottom: 1px solid transparent;
            transition: 0.2s;
        }
        friend-link ul li a:hover {
            color: #f9a826;
            border-bottom-color: #f9a826;
            text-decoration: none;
        }
        .site-footer {
            background: #0a0f18;
            border-top: 2px solid #1a2538;
            padding: 2.2rem 0 1.8rem;
            margin-top: 3rem;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.5rem;
            align-items: center;
        }
        .copyright {
            font-size: 0.85rem;
            color: #6a7a8e;
        }
        .copyright strong {
            color: #b0c4de;
        }
        .last-update {
            font-size: 0.85rem;
            color: #7a8a9e;
            text-align: right;
            margin-top: 0.5rem;
            border-top: 1px dashed #1e2a3e;
            padding-top: 0.8rem;
        }
        .last-update i {
            margin-right: 0.4rem;
        }
        @media (max-width: 992px) {
            .grid-2 {
                grid-template-columns: 1fr;
            }
            .grid-3 {
                grid-template-columns: 1fr 1fr;
            }
            .hero {
                flex-direction: column-reverse;
                text-align: center;
                padding: 1.8rem 1.2rem;
            }
            .hero-img-wrap {
                flex: 0 0 200px;
                width: 100%;
                max-width: 280px;
                margin: 0 auto;
            }
            .hero-text h1 {
                font-size: 1.8rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #111d2b;
                border-radius: 12px;
                padding: 0.8rem;
                border: 1px solid #2a3a52;
                margin-top: 0.5rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav li a {
                padding: 0.7rem 1rem;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .section-card {
                padding: 1.2rem 1rem;
            }
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
            .star-rating {
                font-size: 1.5rem;
            }
            .footer-inner {
                flex-direction: column;
                text-align: center;
            }
            .last-update {
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 1.5rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.6rem;
            }
            .stat-item .num {
                font-size: 1.4rem;
            }
            .search-box input {
                font-size: 0.9rem;
            }
            .btn {
                padding: 0.5rem 1.2rem;
                font-size: 0.85rem;
            }
            .container {
                padding: 0 12px;
            }
        }
        .emoji-lg {
            font-size: 1.8rem;
            line-height: 1;
        }
        .highlight {
            color: #f9a826;
            font-weight: 700;
        }
        .small-meta {
            color: #7a8a9e;
            font-size: 0.85rem;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 0.8rem;
        }
        .tag {
            display: inline-block;
            background: #1a273a;
            padding: 0.2rem 0.9rem;
            border-radius: 30px;
            font-size: 0.75rem;
            color: #b0c4de;
            border: 1px solid #2a3a52;
        }
        .schema-hidden {
            display: none;
        }
