* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f5f7fb;
            color: #1a1a2e;
            line-height: 1.8;
            font-size: 16px;
        }
        a {
            color: #0066cc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #004499;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #fff;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fbb03b;
            letter-spacing: 1px;
            text-shadow: 0 2px 8px rgba(251, 176, 59, 0.3);
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
            color: #ffcc5c;
            text-decoration: none;
        }
        .my-logo span {
            color: #fff;
            font-weight: 300;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #fff;
            background: none;
            border: none;
            padding: 5px 10px;
            transition: transform 0.3s ease;
        }
        .hamburger:hover {
            transform: rotate(90deg);
        }
        nav {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            color: #e0e0e0;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        nav a:hover {
            background: #fbb03b;
            color: #1a1a2e;
            text-decoration: none;
            transform: translateY(-2px);
        }
        .nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: #eef1f7;
            padding: 10px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #dde1e9;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 8px;
            color: #888;
        }
        .breadcrumb a {
            color: #0066cc;
        }
        .breadcrumb .active {
            color: #555;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #0f3460, #1a1a2e);
            color: #fff;
            padding: 50px 0 40px;
            text-align: center;
            border-bottom: 5px solid #fbb03b;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .hero h1 i {
            color: #fbb03b;
            margin-right: 10px;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 750px;
            margin: 0 auto 10px;
            opacity: 0.92;
        }
        .hero .last-updated {
            font-size: 0.95rem;
            opacity: 0.7;
            margin-top: 15px;
            display: inline-block;
            background: rgba(255, 255, 255, 0.12);
            padding: 5px 18px;
            border-radius: 30px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        .main-content h2 {
            font-size: 2rem;
            color: #0f3460;
            margin: 40px 0 15px;
            border-left: 5px solid #fbb03b;
            padding-left: 18px;
        }
        .main-content h3 {
            font-size: 1.5rem;
            color: #1a3a5c;
            margin: 30px 0 12px;
        }
        .main-content h4 {
            font-size: 1.2rem;
            color: #2d4a6e;
            margin: 20px 0 8px;
            font-weight: 600;
        }
        .main-content p {
            margin-bottom: 18px;
            text-align: justify;
        }
        .main-content ul,
        .main-content ol {
            margin: 15px 0 20px 25px;
        }
        .main-content li {
            margin-bottom: 8px;
        }
        .highlight-box {
            background: #eef5ff;
            border-left: 5px solid #fbb03b;
            padding: 20px 25px;
            border-radius: 8px;
            margin: 25px 0;
        }
        .highlight-box strong {
            color: #0f3460;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }
        .featured-image img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #fff;
            padding: 10px 18px;
            font-size: 0.9rem;
            color: #555;
            border-top: 1px solid #eee;
        }
        .sidebar {
            background: #fff;
            border-radius: 16px;
            padding: 25px 20px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            font-size: 1.3rem;
            color: #0f3460;
            margin-bottom: 18px;
            border-bottom: 2px solid #fbb03b;
            padding-bottom: 8px;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar li {
            margin-bottom: 12px;
            border-bottom: 1px solid #f0f0f0;
            padding-bottom: 8px;
        }
        .sidebar li a {
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar li a i {
            color: #fbb03b;
            width: 18px;
        }
        .search-box {
            background: #fff;
            border-radius: 50px;
            display: flex;
            overflow: hidden;
            border: 2px solid #e0e5ee;
            transition: border-color 0.3s ease;
            margin: 20px 0 30px;
            max-width: 600px;
        }
        .search-box:focus-within {
            border-color: #fbb03b;
        }
        .search-box input {
            flex: 1;
            padding: 14px 20px;
            border: none;
            outline: none;
            font-size: 1rem;
            background: transparent;
        }
        .search-box button {
            background: #fbb03b;
            color: #1a1a2e;
            border: none;
            padding: 0 25px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s ease;
            font-weight: 600;
        }
        .search-box button:hover {
            background: #ffa500;
        }
        .interaction-area {
            background: #fff;
            border-radius: 16px;
            padding: 30px 25px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            margin: 40px 0;
        }
        .interaction-area h2 {
            border-left: 5px solid #fbb03b;
            padding-left: 18px;
            color: #0f3460;
            margin-bottom: 25px;
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            margin: 10px 0 20px;
            flex-direction: row-reverse;
            justify-content: flex-end;
        }
        .rating-stars i {
            transition: color 0.2s ease, transform 0.2s ease;
        }
        .rating-stars i:hover,
        .rating-stars i:hover~i {
            color: #fbb03b;
            transform: scale(1.15);
        }
        .rating-stars i.active {
            color: #fbb03b;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 5px;
            color: #1a3a5c;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0e5ee;
            border-radius: 12px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
            font-family: inherit;
            background: #fafbfc;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #fbb03b;
            outline: none;
            background: #fff;
        }
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        .btn {
            background: #fbb03b;
            color: #1a1a2e;
            border: none;
            padding: 12px 32px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn:hover {
            background: #ffa500;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(251, 176, 59, 0.35);
        }
        .btn-secondary {
            background: #eef1f7;
            color: #1a3a5c;
        }
        .btn-secondary:hover {
            background: #dde1e9;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        .comment-item {
            background: #f8f9fc;
            border-radius: 12px;
            padding: 18px 20px;
            margin-bottom: 15px;
            border-left: 4px solid #fbb03b;
        }
        .comment-item .meta {
            font-size: 0.85rem;
            color: #888;
            display: flex;
            gap: 15px;
            margin-bottom: 5px;
        }
        .comment-item .meta strong {
            color: #1a3a5c;
        }
        footer {
            background: #1a1a2e;
            color: #ccc;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        footer h4 {
            color: #fbb03b;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        footer a {
            color: #aaa;
            display: block;
            margin-bottom: 6px;
            font-size: 0.9rem;
        }
        footer a:hover {
            color: #fbb03b;
        }
        friend-link {
            display: block;
            background: #0f1a2e;
            padding: 20px 25px;
            border-radius: 12px;
            margin: 20px 0;
        }
        friend-link a {
            display: inline-block;
            margin-right: 20px;
            margin-bottom: 8px;
            color: #8ab4f8;
        }
        friend-link a:hover {
            color: #fbb03b;
        }
        .copyright {
            text-align: center;
            border-top: 1px solid #2a2a4a;
            padding-top: 20px;
            font-size: 0.9rem;
            color: #888;
        }
        @media (max-width: 900px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .hero h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1a1a2e;
                padding: 20px 0 10px;
                border-top: 1px solid #2a2a4a;
                margin-top: 10px;
            }
            nav a {
                padding: 10px 20px;
                width: 100%;
                text-align: center;
                border-radius: 0;
            }
            .nav-toggle:checked~nav {
                display: flex;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .search-box {
                flex-direction: column;
                border-radius: 16px;
            }
            .search-box input {
                width: 100%;
                border-radius: 16px 16px 0 0;
            }
            .search-box button {
                width: 100%;
                padding: 12px;
                border-radius: 0 0 16px 16px;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .hero {
                padding: 30px 0;
            }
            .hero h1 {
                font-size: 1.3rem;
            }
            .main-content h2 {
                font-size: 1.4rem;
            }
            .main-content h3 {
                font-size: 1.2rem;
            }
            .interaction-area {
                padding: 20px 15px;
            }
        }
        .tag {
            display: inline-block;
            background: #fbb03b20;
            color: #b87a0e;
            padding: 2px 12px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.4rem;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }
        .bg-soft {
            background: #f0f4ff;
            border-radius: 12px;
            padding: 20px 24px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }
        .stat-card {
            background: #fff;
            border-radius: 12px;
            padding: 18px 12px;
            text-align: center;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
            border: 1px solid #eef1f7;
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: #0f3460;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #666;
        }
        .interview-card {
            background: #fafbfc;
            border-radius: 16px;
            padding: 25px;
            margin: 25px 0;
            border: 1px solid #e8ecf3;
            position: relative;
        }
        .interview-card::before {
            content: "💬";
            font-size: 2rem;
            position: absolute;
            top: -12px;
            left: 20px;
            background: #fff;
            padding: 0 8px;
        }
        .interview-card .name {
            font-weight: 700;
            color: #0f3460;
            margin-top: 8px;
        }
        .interview-card .title {
            font-size: 0.85rem;
            color: #888;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #eef1f7;
        }
        th {
            background: #0f3460;
            color: #fff;
            font-weight: 600;
        }
        tr:hover td {
            background: #f5f8ff;
        }
