* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: #0b0e14;
            color: #e8edf5;
            line-height: 1.8;
            font-size: 16px;
        }
        a {
            color: #f5a623;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #ffc857;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #141a24 0%, #1f2a3a 100%);
            padding: 18px 0;
            border-bottom: 2px solid #f5a623;
            position: sticky;
            top: 0;
            z-index: 1000;
            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;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #f5a623;
            text-shadow: 0 0 20px rgba(245, 166, 35, 0.3);
            letter-spacing: 1px;
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
            color: #ffc857;
        }
        .my-logo span {
            color: #fff;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 2rem;
            color: #f5a623;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 6px;
            transition: background 0.3s;
        }
        .hamburger:hover {
            background: rgba(245, 166, 35, 0.15);
        }
        nav {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            color: #cdd9ed;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: all 0.3s;
        }
        nav a:hover {
            color: #f5a623;
            border-bottom-color: #f5a623;
            text-decoration: none;
        }
        .nav-active {
            color: #f5a623 !important;
            border-bottom-color: #f5a623 !important;
        }
        .breadcrumb {
            background: #1a212e;
            padding: 12px 0;
            border-bottom: 1px solid #2a3444;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            color: #8899b4;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 8px;
            color: #f5a623;
        }
        .breadcrumb a {
            color: #8899b4;
        }
        .breadcrumb a:hover {
            color: #f5a623;
        }
        .breadcrumb .current {
            color: #f5a623;
            font-weight: 600;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #f5a623;
            margin-bottom: 16px;
            line-height: 1.2;
            text-shadow: 0 2px 12px rgba(245, 166, 35, 0.15);
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f5a623;
            margin: 48px 0 18px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a3444;
            position: relative;
        }
        h2::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 80px;
            height: 2px;
            background: #f5a623;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #e8edf5;
            margin: 32px 0 14px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #cdd9ed;
            margin: 24px 0 10px;
        }
        p {
            margin-bottom: 18px;
            color: #cdd9ed;
        }
        .content-highlight {
            background: #1a212e;
            border-left: 4px solid #f5a623;
            padding: 18px 24px;
            margin: 24px 0;
            border-radius: 0 12px 12px 0;
        }
        .content-highlight strong {
            color: #f5a623;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin: 28px 0;
        }
        .feature-card {
            background: #1a212e;
            padding: 28px 22px;
            border-radius: 16px;
            border: 1px solid #2a3444;
            transition: all 0.4s;
        }
        .feature-card:hover {
            border-color: #f5a623;
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(245, 166, 35, 0.08);
        }
        .feature-card i {
            font-size: 2.4rem;
            color: #f5a623;
            margin-bottom: 14px;
        }
        .feature-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .feature-card p {
            font-size: 0.95rem;
            margin-bottom: 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #1a212e;
            border-radius: 12px;
            overflow: hidden;
            font-size: 0.95rem;
        }
        th {
            background: #f5a623;
            color: #0b0e14;
            font-weight: 700;
            padding: 14px 18px;
            text-align: left;
        }
        td {
            padding: 12px 18px;
            border-bottom: 1px solid #2a3444;
            color: #cdd9ed;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #232e40;
        }
        .btn {
            display: inline-block;
            background: #f5a623;
            color: #0b0e14;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }
        .btn:hover {
            background: #ffc857;
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(245, 166, 35, 0.3);
            text-decoration: none;
            color: #0b0e14;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f5a623;
            color: #f5a623;
        }
        .btn-outline:hover {
            background: #f5a623;
            color: #0b0e14;
        }
        .img-wrapper {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            background: #1a212e;
            position: relative;
        }
        .img-wrapper img {
            width: 100%;
            object-fit: cover;
        }
        .img-caption {
            padding: 12px 18px;
            font-size: 0.9rem;
            color: #8899b4;
            background: #141a24;
            text-align: center;
            font-style: italic;
        }
        .interview-block {
            background: #1a212e;
            border-radius: 20px;
            padding: 32px;
            margin: 32px 0;
            border: 1px solid #2a3444;
            position: relative;
        }
        .interview-block::before {
            content: "🗣️";
            font-size: 2.2rem;
            position: absolute;
            top: -18px;
            left: 24px;
            background: #0b0e14;
            padding: 0 12px;
        }
        .interview-block h3 {
            margin-top: 0;
        }
        .interview-block .q {
            color: #f5a623;
            font-weight: 700;
        }
        .interview-block .a {
            color: #cdd9ed;
            margin-bottom: 18px;
            padding-left: 20px;
            border-left: 2px solid #2a3444;
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 40px 0;
        }
        @media (max-width:768px) {
            .interact-grid {
                grid-template-columns: 1fr;
            }
        }
        .card-form {
            background: #1a212e;
            border-radius: 20px;
            padding: 28px 24px;
            border: 1px solid #2a3444;
        }
        .card-form h3 {
            margin-top: 0;
            font-size: 1.3rem;
            color: #f5a623;
        }
        .card-form input,
        .card-form textarea,
        .card-form select {
            width: 100%;
            padding: 12px 16px;
            margin-bottom: 16px;
            background: #0b0e14;
            border: 1px solid #2a3444;
            border-radius: 10px;
            color: #e8edf5;
            font-size: 0.95rem;
            transition: border 0.3s;
        }
        .card-form input:focus,
        .card-form textarea:focus,
        .card-form select:focus {
            outline: none;
            border-color: #f5a623;
        }
        .card-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .card-form .star-rating {
            display: flex;
            gap: 8px;
            margin-bottom: 16px;
            font-size: 1.8rem;
            color: #2a3444;
            cursor: pointer;
        }
        .card-form .star-rating i {
            transition: color 0.3s, transform 0.2s;
        }
        .card-form .star-rating i:hover,
        .card-form .star-rating i.active {
            color: #f5a623;
            transform: scale(1.1);
        }
        footer {
            background: #0d121c;
            border-top: 2px solid #1f2a3a;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        footer .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        @media (max-width:768px) {
            footer .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        footer h4 {
            color: #f5a623;
            margin-bottom: 16px;
            font-size: 1.1rem;
        }
        footer a {
            color: #8899b4;
            display: block;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }
        footer a:hover {
            color: #f5a623;
        }
        friend-link {
            display: block;
            background: #141a24;
            padding: 20px 24px;
            border-radius: 16px;
            margin: 24px 0;
            border: 1px solid #2a3444;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            color: #8899b4;
        }
        friend-link a:hover {
            color: #f5a623;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid #1f2a3a;
            margin-top: 24px;
            color: #5a6a82;
            font-size: 0.85rem;
        }
        .last-updated {
            display: inline-block;
            background: #1a212e;
            padding: 8px 20px;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #8899b4;
            margin-bottom: 24px;
            border: 1px solid #2a3444;
        }
        .last-updated i {
            color: #f5a623;
            margin-right: 6px;
        }
        .search-form {
            display: flex;
            gap: 12px;
            max-width: 600px;
            margin: 20px 0 30px;
        }
        .search-form input {
            flex: 1;
            padding: 14px 20px;
            border-radius: 40px;
            border: 1px solid #2a3444;
            background: #1a212e;
            color: #e8edf5;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .search-form input:focus {
            border-color: #f5a623;
            outline: none;
        }
        .search-form button {
            background: #f5a623;
            border: none;
            padding: 14px 28px;
            border-radius: 40px;
            color: #0b0e14;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1rem;
        }
        .search-form button:hover {
            background: #ffc857;
            transform: scale(1.02);
        }
        @media (max-width:768px) {
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 12px;
                padding: 20px 0 10px;
                border-top: 1px solid #2a3444;
                margin-top: 14px;
            }
            nav.show {
                display: flex;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .interview-block {
                padding: 20px;
            }
        }
        @media (max-width:480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .text-accent {
            color: #f5a623;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-0 {
            margin-top: 0;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .tag {
            display: inline-block;
            background: #f5a62320;
            color: #f5a623;
            padding: 4px 14px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid #f5a62330;
        }
        .emoji-big {
            font-size: 2rem;
            margin-right: 8px;
        }
        .link-list {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            margin: 16px 0;
        }
        .link-list li a {
            color: #f5a623;
            font-weight: 500;
        }
        .link-list li a:hover {
            color: #ffc857;
        }
