* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0b0e14;
            color: #e8edf5;
            line-height: 1.7;
            scroll-behavior: smooth;
        }
        a {
            color: #fbbf24;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #f59e0b;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #141a24, #1a2230);
            border-bottom: 2px solid #2a3548;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            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: 12px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #fbbf24;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #e8edf5;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #2a3548;
        }
        .nav-menu {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #c8d0dc;
            transition: background 0.2s, color 0.2s;
        }
        .nav-menu a:hover {
            background: #2a3548;
            color: #fbbf24;
            text-decoration: none;
        }
        .nav-menu a.active {
            background: #fbbf24;
            color: #0b0e14;
        }
        .breadcrumb-wrap {
            background: #131a26;
            padding: 12px 0;
            border-bottom: 1px solid #1f2a3a;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 0.9rem;
            color: #8f9bb3;
        }
        .breadcrumb a {
            color: #8f9bb3;
        }
        .breadcrumb a:hover {
            color: #fbbf24;
        }
        .breadcrumb span {
            color: #fbbf24;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 18px;
            color: #fbbf24;
            border-left: 5px solid #fbbf24;
            padding-left: 16px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 14px;
            color: #e8edf5;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #c8d0dc;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
        }
        .highlight {
            background: rgba(251, 191, 36, 0.12);
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
            color: #fbbf24;
        }
        .feature-box {
            background: #141c2a;
            border-radius: 16px;
            padding: 28px 32px;
            margin: 32px 0;
            border-left: 4px solid #fbbf24;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        }
        .feature-box i {
            color: #fbbf24;
            margin-right: 10px;
        }
        .btn {
            display: inline-block;
            background: #fbbf24;
            color: #0b0e14;
            font-weight: 700;
            padding: 12px 28px;
            border-radius: 10px;
            transition: transform 0.2s, box-shadow 0.2s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(251, 191, 36, 0.35);
            text-decoration: none;
            color: #0b0e14;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #fbbf24;
            color: #fbbf24;
        }
        .btn-outline:hover {
            background: #fbbf24;
            color: #0b0e14;
        }
        .img-wrapper {
            border-radius: 16px;
            overflow: hidden;
            margin: 32px 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            background: #1a2230;
        }
        .img-wrapper img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .img-caption {
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #8f9bb3;
            background: #131a26;
            border-top: 1px solid #1f2a3a;
        }
        .img-caption i {
            margin-right: 6px;
        }
        .form-card {
            background: #141c2a;
            border-radius: 16px;
            padding: 32px;
            margin: 40px 0;
            border: 1px solid #1f2a3a;
        }
        .form-card h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            color: #c8d0dc;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #2a3548;
            background: #0b0e14;
            color: #e8edf5;
            font-size: 1rem;
            transition: border 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #fbbf24;
            box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.15);
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            gap: 4px;
            font-size: 2rem;
            cursor: pointer;
            color: #3a4a5e;
            transition: color 0.15s;
        }
        .star-rating i {
            transition: color 0.15s, transform 0.15s;
        }
        .star-rating i.active,
        .star-rating i:hover {
            color: #fbbf24;
            transform: scale(1.1);
        }
        .star-rating i.fa-star {
            color: #fbbf24;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 12px;
            margin: 24px 0;
        }
        .links-grid a {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #141c2a;
            padding: 12px 18px;
            border-radius: 10px;
            border: 1px solid #1f2a3a;
            transition: background 0.2s, border-color 0.2s, transform 0.15s;
            font-weight: 500;
        }
        .links-grid a:hover {
            background: #1a2538;
            border-color: #fbbf24;
            transform: translateX(4px);
            text-decoration: none;
        }
        .links-grid a i {
            color: #fbbf24;
            font-size: 0.9rem;
        }
        friend-link {
            display: block;
            padding: 24px 0;
            border-top: 1px solid #1f2a3a;
            margin-top: 40px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            padding: 6px 14px;
            background: #141c2a;
            border-radius: 8px;
            border: 1px solid #1f2a3a;
            font-size: 0.95rem;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #1a2538;
            border-color: #fbbf24;
            text-decoration: none;
        }
        friend-link .fl-title {
            font-weight: 700;
            color: #fbbf24;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        .site-footer {
            background: #0a0f16;
            border-top: 2px solid #1a2230;
            padding: 32px 0 20px;
            text-align: center;
        }
        .site-footer .copyright {
            font-size: 0.9rem;
            color: #6a7a8e;
            margin-top: 16px;
        }
        .site-footer .copyright a {
            color: #6a7a8e;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #141a24;
                border-radius: 12px;
                padding: 12px 0;
                margin-top: 8px;
                border: 1px solid #1f2a3a;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 12px 20px;
                width: 100%;
                border-radius: 0;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .feature-box {
                padding: 20px;
            }
            .form-card {
                padding: 20px;
            }
            .links-grid {
                grid-template-columns: 1fr;
            }
            .header-inner {
                gap: 8px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.7rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        .last-updated {
            display: inline-block;
            background: #1a2538;
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #8f9bb3;
            margin-bottom: 20px;
        }
        .last-updated i {
            margin-right: 6px;
            color: #fbbf24;
        }
        .interview-block {
            background: #111a26;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 28px 0;
            border-left: 4px solid #fbbf24;
            font-style: italic;
        }
        .interview-block strong {
            color: #fbbf24;
            font-style: normal;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
        }
        .data-table th,
        .data-table td {
            padding: 12px 16px;
            border: 1px solid #1f2a3a;
            text-align: left;
        }
        .data-table th {
            background: #1a2538;
            color: #fbbf24;
            font-weight: 600;
        }
        .data-table td {
            background: #0e141f;
        }
        .tag {
            display: inline-block;
            background: #1f2a3a;
            padding: 2px 12px;
            border-radius: 12px;
            font-size: 0.8rem;
            color: #8f9bb3;
            margin: 2px 4px 2px 0;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 6px;
        }
