        *,
        *::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, sans-serif;
            background: #0b0e14;
            color: #e8edf5;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #f0c94b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffe48a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 0.75rem 0;
        }
        li {
            margin-bottom: 0.35rem;
        }
        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #141a24 0%, #1a2230 100%);
            border-bottom: 2px solid #2a3a4a;
            padding: 12px 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: 10px 20px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0c94b, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 0 30px rgba(240, 201, 75, 0.15);
            display: inline-block;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .my-logo small {
            font-size: 0.6rem;
            -webkit-text-fill-color: #8899aa;
            display: block;
            font-weight: 400;
            letter-spacing: 0.5px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f0c94b;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #1f2a38;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 8px 18px;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #c8d6e5;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 8px;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: #1f2a38;
            color: #f0c94b;
            text-decoration: none;
        }
        .breadcrumb {
            background: #131b26;
            padding: 10px 0;
            border-bottom: 1px solid #1e2a36;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
            margin: 0;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #667788;
        }
        .breadcrumb a {
            color: #aabbcc;
        }
        .breadcrumb .current {
            color: #f0c94b;
            font-weight: 500;
        }
        .hero {
            padding: 50px 0 40px;
            text-align: center;
            background: radial-gradient(ellipse at 50% 0%, #1e2a3a 0%, #0b0e14 70%);
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f7d875, #f0a030);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 1.2rem;
            color: #b0c4d8;
            max-width: 780px;
            margin: 0 auto 20px;
        }
        .hero .badge {
            display: inline-block;
            background: #2a3a4a;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.9rem;
            color: #f0c94b;
            border: 1px solid #3a4a5a;
        }
        section {
            padding: 40px 0;
            border-bottom: 1px solid #1a2430;
        }
        section:last-of-type {
            border-bottom: none;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 0 0 24px 0;
            color: #f0c94b;
            border-left: 5px solid #f0c94b;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 28px 0 14px 0;
            color: #e0d5b0;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 20px 0 10px 0;
            color: #c8d6e5;
        }
        p {
            margin: 0 0 16px 0;
            color: #d0dce8;
        }
        .content-card {
            background: #131c28;
            border-radius: 14px;
            padding: 28px 24px;
            margin: 24px 0;
            border: 1px solid #1e2c3a;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }
        .content-card p:last-child {
            margin-bottom: 0;
        }
        .highlight {
            background: #1e2a36;
            padding: 2px 10px;
            border-radius: 6px;
            color: #f0c94b;
            font-weight: 500;
        }
        .emoji-big {
            font-size: 1.8rem;
            display: inline-block;
            margin-right: 6px;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #131c28;
            padding: 12px 18px;
            font-size: 0.9rem;
            color: #99aabb;
            border-top: 1px solid #1e2c3a;
        }
        .promo-box {
            background: #0f1722;
            border: 2px dashed #f0c94b;
            border-radius: 12px;
            padding: 20px 24px;
            margin: 20px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .promo-box .code {
            font-family: 'Courier New', monospace;
            font-size: 1.4rem;
            font-weight: 700;
            color: #f0c94b;
            letter-spacing: 2px;
        }
        .promo-box .copy-btn {
            background: #f0c94b;
            border: none;
            color: #0b0e14;
            padding: 8px 22px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .promo-box .copy-btn:hover {
            background: #ffe070;
            transform: scale(1.02);
        }
        .promo-box .copy-btn:active {
            transform: scale(0.96);
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #111a24;
            border-radius: 12px;
            overflow: hidden;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #1e2a36;
        }
        th {
            background: #1a2634;
            color: #f0c94b;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.85rem;
        }
        tr:hover td {
            background: #16202c;
        }
        .interview-block {
            background: #101924;
            border-left: 4px solid #f0c94b;
            padding: 24px 26px;
            margin: 24px 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
        }
        .interview-block strong {
            color: #f0c94b;
            font-style: normal;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .stat-item {
            background: #111a24;
            border-radius: 12px;
            padding: 20px 16px;
            text-align: center;
            border: 1px solid #1e2a36;
        }
        .stat-item .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f0c94b;
            display: block;
        }
        .stat-item .label {
            font-size: 0.9rem;
            color: #99aabb;
            margin-top: 4px;
        }
        .search-form {
            display: flex;
            gap: 12px;
            max-width: 600px;
            margin: 20px 0;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 14px 18px;
            border-radius: 10px;
            border: 2px solid #1e2a36;
            background: #0f1722;
            color: #e8edf5;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f0c94b;
        }
        .search-form button {
            padding: 14px 28px;
            border-radius: 10px;
            border: none;
            background: #f0c94b;
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-form button:hover {
            background: #ffe070;
            transform: scale(1.02);
        }
        .comment-section,
        .rating-section {
            background: #111a24;
            border-radius: 14px;
            padding: 28px 24px;
            margin: 24px 0;
            border: 1px solid #1e2a36;
        }
        .comment-section textarea,
        .rating-section textarea {
            width: 100%;
            min-height: 100px;
            padding: 14px 18px;
            border-radius: 10px;
            border: 2px solid #1e2a36;
            background: #0a111c;
            color: #e8edf5;
            font-size: 1rem;
            resize: vertical;
            outline: none;
            transition: border 0.3s;
            font-family: inherit;
        }
        .comment-section textarea:focus,
        .rating-section textarea:focus {
            border-color: #f0c94b;
        }
        .comment-section input[type="text"],
        .rating-section input[type="text"] {
            width: 100%;
            padding: 12px 16px;
            border-radius: 10px;
            border: 2px solid #1e2a36;
            background: #0a111c;
            color: #e8edf5;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
            margin-bottom: 12px;
        }
        .comment-section input:focus,
        .rating-section input:focus {
            border-color: #f0c94b;
        }
        .btn-submit {
            padding: 12px 32px;
            border-radius: 10px;
            border: none;
            background: #f0c94b;
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            margin-top: 6px;
        }
        .btn-submit:hover {
            background: #ffe070;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 2rem;
            margin: 12px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #3a4a5a;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f0c94b;
        }
        friend-link {
            display: block;
            padding: 30px 0 10px;
            border-top: 1px solid #1e2a36;
            margin-top: 20px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            color: #aabbcc;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            color: #f0c94b;
        }
        .site-footer {
            background: #0a101a;
            border-top: 2px solid #1a2634;
            padding: 28px 0 18px;
            text-align: center;
            font-size: 0.9rem;
            color: #778899;
        }
        .site-footer .copyright {
            margin-top: 12px;
            font-size: 0.82rem;
            color: #556677;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 12px 0 4px;
                gap: 6px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 12px;
                font-size: 1.05rem;
                border-bottom: 1px solid #1a2634;
                width: 100%;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .hero p {
                font-size: 1rem;
            }
            h2 {
                font-size: 1.6rem;
                padding-left: 14px;
            }
            h3 {
                font-size: 1.3rem;
            }
            .container {
                padding: 0 14px;
            }
            .content-card {
                padding: 20px 16px;
            }
            .promo-box {
                flex-direction: column;
                align-items: stretch;
                text-align: center;
            }
            .promo-box .code {
                font-size: 1.2rem;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .search-form button {
                width: 100%;
            }
            .star-rating {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .stat-item .num {
                font-size: 1.6rem;
            }
            table {
                font-size: 0.82rem;
            }
            th,
            td {
                padding: 8px 10px;
            }
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .text-center {
            text-align: center;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
        }
        .gap-8 {
            gap: 8px;
        }
        .fw-700 {
            font-weight: 700;
        }
        .color-gold {
            color: #f0c94b;
        }
        .op-8 {
            opacity: 0.85;
        }
