        *,
        *::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: #0b0e1a;
            color: #e8edf5;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #facc15;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #fde047;
            text-decoration: underline;
            outline: none;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(145deg, #111827, #1e293b);
            padding: 1rem 0;
            border-bottom: 3px solid #facc15;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 900;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #facc15, #f97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(250, 204, 21, 0.25);
            display: inline-block;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #94a3b8;
            color: #94a3b8;
            display: block;
            font-weight: 400;
            letter-spacing: 2px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #facc15;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(250, 204, 21, 0.12);
        }
        .primary-nav {
            display: flex;
            gap: 0.25rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .primary-nav a {
            padding: 0.5rem 1rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.85rem;
            color: #cbd5e1;
            transition: all 0.25s ease;
        }
        .primary-nav a:hover {
            background: rgba(250, 204, 21, 0.12);
            color: #facc15;
            text-decoration: none;
        }
        .primary-nav a.active {
            background: #facc15;
            color: #0b0e1a;
        }
        .breadcrumb {
            background: #1e293b;
            padding: 0.65rem 0;
            border-bottom: 1px solid #2d3a4e;
            font-size: 0.8rem;
            color: #94a3b8;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.4rem;
            color: #64748b;
        }
        .breadcrumb a {
            color: #facc15;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hero {
            padding: 3rem 0 2.5rem;
            text-align: center;
            position: relative;
        }
        .hero::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 10%;
            right: 10%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #facc15, transparent);
        }
        .hero h1 {
            font-size: clamp(2rem, 6vw, 3.6rem);
            font-weight: 900;
            background: linear-gradient(135deg, #facc15, #fb923c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.75rem;
            line-height: 1.15;
        }
        .hero p {
            font-size: 1.15rem;
            color: #b0c4de;
            max-width: 800px;
            margin: 0 auto 1.25rem;
        }
        .hero-meta {
            font-size: 0.85rem;
            color: #64748b;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .hero-meta span {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-wrap {
            max-width: 600px;
            margin: 1.5rem auto 0;
        }
        .search-form {
            display: flex;
            border-radius: 60px;
            overflow: hidden;
            background: #1e293b;
            border: 1px solid #334155;
            transition: border-color 0.3s;
        }
        .search-form:focus-within {
            border-color: #facc15;
            box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.15);
        }
        .search-form input {
            flex: 1;
            padding: 0.85rem 1.4rem;
            border: none;
            background: transparent;
            color: #e8edf5;
            font-size: 1rem;
            outline: none;
            min-width: 0;
        }
        .search-form input::placeholder {
            color: #64748b;
            opacity: 1;
        }
        .search-form button {
            background: #facc15;
            border: none;
            padding: 0 1.6rem;
            color: #0b0e1a;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.25s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
        }
        .search-form button:hover {
            background: #fde047;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        @media (min-width: 992px) {
            .content-grid {
                grid-template-columns: 2fr 1fr;
            }
            .content-main {
                padding-right: 2rem;
            }
        }
        h2 {
            font-size: clamp(1.5rem, 3.5vw, 2.2rem);
            font-weight: 800;
            color: #facc15;
            margin: 2.5rem 0 1rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #1e293b;
            position: relative;
        }
        h2::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 80px;
            height: 2px;
            background: #facc15;
        }
        h3 {
            font-size: clamp(1.15rem, 2.5vw, 1.6rem);
            font-weight: 700;
            color: #fde047;
            margin: 1.8rem 0 0.75rem 0;
        }
        h4 {
            font-size: 1.05rem;
            font-weight: 600;
            color: #fef9c3;
            margin: 1.2rem 0 0.5rem 0;
        }
        p {
            margin-bottom: 1.1rem;
            color: #d1d9e8;
        }
        .content-main p a {
            font-weight: 600;
        }
        .featured-image {
            border-radius: 16px;
            overflow: hidden;
            margin: 1.8rem 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
            background: #1e293b;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.02);
        }
        .featured-image figcaption {
            padding: 0.75rem 1rem;
            font-size: 0.85rem;
            color: #94a3b8;
            background: #111827;
            text-align: center;
            font-style: italic;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1rem;
            margin: 1.8rem 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #1e293b, #111827);
            border-radius: 16px;
            padding: 1.2rem 1rem;
            text-align: center;
            border: 1px solid #2d3a4e;
            transition: transform 0.25s ease, border-color 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            border-color: #facc15;
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 900;
            color: #facc15;
            line-height: 1.2;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #94a3b8;
            margin-top: 0.25rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1e293b, #0f172a);
            border-left: 5px solid #facc15;
            border-radius: 0 16px 16px 0;
            padding: 1.5rem 2rem;
            margin: 1.8rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
            border-radius: 12px;
            border: 1px solid #2d3a4e;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #111827;
            min-width: 480px;
        }
        th,
        td {
            padding: 0.85rem 1rem;
            text-align: left;
            border-bottom: 1px solid #1e293b;
        }
        th {
            background: #1e293b;
            color: #facc15;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        td {
            color: #cbd5e1;
        }
        tr:hover td {
            background: rgba(250, 204, 21, 0.04);
        }
        .link-list {
            display: grid;
            gap: 0.6rem;
            margin: 1.2rem 0;
            padding: 0;
            list-style: none;
        }
        .link-list li {
            padding: 0;
            margin: 0;
        }
        .link-list a {
            display: block;
            padding: 0.75rem 1.2rem;
            background: #1e293b;
            border-radius: 12px;
            border-left: 4px solid #facc15;
            transition: all 0.25s ease;
            font-weight: 500;
        }
        .link-list a:hover {
            background: #2d3a4e;
            transform: translateX(4px);
            text-decoration: none;
        }
        .sidebar-card {
            background: #111827;
            border-radius: 16px;
            padding: 1.5rem;
            border: 1px solid #2d3a4e;
            margin-bottom: 1.5rem;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            margin-top: 0;
            border-bottom: 1px solid #2d3a4e;
            padding-bottom: 0.6rem;
            margin-bottom: 1rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #334155;
            cursor: pointer;
            direction: rtl;
            justify-content: flex-end;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            transition: color 0.2s, transform 0.15s;
            color: #475569;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: #facc15;
            transform: scale(1.1);
        }
        .rating-stars label i {
            pointer-events: none;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border-radius: 12px;
            border: 1px solid #2d3a4e;
            background: #0f172a;
            color: #e8edf5;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 110px;
            font-family: inherit;
            transition: border-color 0.3s;
        }
        .comment-form textarea:focus {
            border-color: #facc15;
            outline: none;
            box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.1);
        }
        .comment-form input[type="text"] {
            width: 100%;
            padding: 0.8rem 1rem;
            border-radius: 12px;
            border: 1px solid #2d3a4e;
            background: #0f172a;
            color: #e8edf5;
            font-size: 0.95rem;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        .comment-form input[type="text"]:focus {
            border-color: #facc15;
            outline: none;
            box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.1);
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.8rem;
            border-radius: 60px;
            border: none;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.25s ease;
            background: #facc15;
            color: #0b0e1a;
        }
        .btn:hover {
            background: #fde047;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(250, 204, 21, 0.25);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #facc15;
            color: #facc15;
        }
        .btn-outline:hover {
            background: #facc15;
            color: #0b0e1a;
        }
        .site-footer {
            background: #0a0e17;
            border-top: 3px solid #1e293b;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .footer-grid h4 {
            color: #facc15;
            font-size: 1rem;
            margin-bottom: 0.75rem;
        }
        .footer-grid a {
            display: block;
            padding: 0.2rem 0;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .footer-grid a:hover {
            color: #facc15;
        }
        friend-link {
            display: block;
            padding: 1rem 0;
            border-top: 1px solid #1e293b;
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #64748b;
        }
        friend-link a {
            color: #facc15;
            margin: 0 0.5rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #1e293b;
            font-size: 0.85rem;
            color: #475569;
        }
        .copyright strong {
            color: #94a3b8;
        }
        @media (max-width: 767px) {
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #111827;
                border-radius: 16px;
                padding: 1rem;
                margin-top: 0.5rem;
                border: 1px solid #2d3a4e;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 0.7rem 1rem;
                width: 100%;
                border-radius: 8px;
            }
            .header-inner {
                position: relative;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
        }
        @media (min-width: 768px) {
            .nav-toggle {
                display: none !important;
            }
            .primary-nav {
                display: flex !important;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #facc15;
            color: #0b0e1a;
            border: none;
            border-radius: 50%;
            width: 48px;
            height: 48px;
            font-size: 1.3rem;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(250, 204, 21, 0.3);
            transition: all 0.3s ease;
            z-index: 90;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
        }
        .scroll-top.visible {
            opacity: 1;
            pointer-events: auto;
        }
        .scroll-top:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 28px rgba(250, 204, 21, 0.45);
        }
        .tag {
            display: inline-block;
            background: #1e293b;
            padding: 0.2rem 0.8rem;
            border-radius: 40px;
            font-size: 0.75rem;
            color: #facc15;
            font-weight: 600;
            border: 1px solid #334155;
        }
        .divider {
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #334155, transparent);
            margin: 2rem 0;
        }
        .emoji-big {
            font-size: 2rem;
            display: inline-block;
            margin-right: 0.3rem;
        }
        .interview-block {
            background: #0f172a;
            border-radius: 16px;
            padding: 1.5rem;
            border-left: 4px solid #facc15;
            margin: 1.5rem 0;
        }
        .interview-block .q {
            color: #facc15;
            font-weight: 700;
        }
        .interview-block .a {
            color: #b0c4de;
            margin-top: 0.3rem;
        }
