* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: #f4f7fa;
            color: #1e2a36;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #c0392b;
            text-decoration: underline;
            transition: color 0.25s;
        }
        a:hover {
            color: #962d22;
        }
        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, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            padding: 16px 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: 28px;
            font-weight: 900;
            color: #f5c518;
            text-decoration: none;
            letter-spacing: 1px;
            text-shadow: 0 2px 8px rgba(245, 197, 24, 0.3);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            font-size: 32px;
            color: #e74c3c;
        }
        .my-logo:hover {
            color: #ffd966;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5c518;
            color: #f5c518;
            font-size: 24px;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(245, 197, 24, 0.1);
        }
        nav {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            color: #e0e0e0;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            transition: 0.2s;
            border: 1px solid transparent;
        }
        nav a i {
            margin-right: 6px;
        }
        nav a:hover {
            background: rgba(245, 197, 24, 0.12);
            border-color: #f5c518;
            color: #f5c518;
        }
        .breadcrumb {
            background: #fff;
            padding: 12px 0;
            border-bottom: 1px solid #e0e7ef;
            font-size: 14px;
            color: #5a6a7a;
        }
        .breadcrumb a {
            color: #c0392b;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            margin: 0 6px;
            color: #a0b0c0;
        }
        .hero {
            background: linear-gradient(135deg, #0f1b2d, #1a2a4a);
            padding: 48px 0 40px;
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚔️🏰";
            position: absolute;
            right: 20px;
            bottom: 20px;
            font-size: 80px;
            opacity: 0.08;
            pointer-events: none;
        }
        .hero h1 {
            font-size: 42px;
            font-weight: 900;
            color: #f5c518;
            margin-bottom: 12px;
            text-shadow: 0 4px 12px rgba(245, 197, 24, 0.2);
        }
        .hero p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            color: #c8d6e5;
        }
        .hero .badge {
            display: inline-block;
            background: #e74c3c;
            color: #fff;
            padding: 4px 18px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-top: 14px;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 36px;
            padding: 40px 0;
        }
        @media (max-width: 900px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
        }
        .content-area {
            background: #fff;
            border-radius: 16px;
            padding: 32px 36px;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
        }
        .sidebar {
            background: #fff;
            border-radius: 16px;
            padding: 24px 20px;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
            position: sticky;
            top: 90px;
            align-self: start;
            max-height: calc(100vh - 120px);
            overflow-y: auto;
        }
        .sidebar h3 {
            font-size: 18px;
            border-bottom: 3px solid #f5c518;
            padding-bottom: 8px;
            margin-bottom: 14px;
            color: #1a1a2e;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar ul li {
            padding: 6px 0;
        }
        .sidebar ul li a {
            color: #2c3e50;
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: 0.2s;
        }
        .sidebar ul li a:hover {
            color: #c0392b;
            padding-left: 4px;
        }
        .sidebar ul li a i {
            color: #f5c518;
            font-size: 12px;
        }
        h2 {
            font-size: 30px;
            color: #1a1a2e;
            margin-top: 40px;
            margin-bottom: 16px;
            border-left: 5px solid #f5c518;
            padding-left: 18px;
        }
        h3 {
            font-size: 24px;
            color: #1e2a36;
            margin-top: 30px;
            margin-bottom: 12px;
        }
        h4 {
            font-size: 19px;
            color: #2c3e50;
            margin-top: 22px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 18px;
            color: #2c3e50;
        }
        .content-area ul,
        .content-area ol {
            margin: 12px 0 20px 24px;
        }
        .content-area li {
            margin-bottom: 8px;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fef9e7, #fdebd0);
            border-left: 5px solid #f5c518;
            padding: 20px 24px;
            border-radius: 10px;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #c0392b;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .stat-card {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            border: 1px solid #e8edf2;
            transition: 0.25s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }
        .stat-card .num {
            font-size: 32px;
            font-weight: 900;
            color: #c0392b;
        }
        .stat-card .label {
            color: #5a6a7a;
            font-size: 14px;
        }
        .interview-card {
            background: #f0f4f8;
            border-radius: 14px;
            padding: 24px;
            margin: 20px 0;
            border: 1px solid #dce3ec;
        }
        .interview-card .name {
            font-weight: 700;
            color: #1a1a2e;
            font-size: 18px;
        }
        .interview-card .tag {
            color: #c0392b;
            font-size: 14px;
            font-weight: 600;
        }
        .btn {
            display: inline-block;
            padding: 10px 28px;
            background: linear-gradient(135deg, #c0392b, #e74c3c);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: 0.25s;
        }
        .btn:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 20px rgba(192, 57, 43, 0.3);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #c0392b;
            color: #c0392b;
        }
        .btn-outline:hover {
            background: #c0392b;
            color: #fff;
        }
        .featured-img {
            margin: 28px 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        .featured-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        .featured-img figcaption {
            background: #f8f9fa;
            padding: 12px 18px;
            font-size: 14px;
            color: #5a6a7a;
            border-top: 1px solid #e8edf2;
        }
        .search-box {
            background: #f0f4f8;
            border-radius: 12px;
            padding: 20px 24px;
            margin: 28px 0;
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        .search-box input {
            flex: 1;
            min-width: 200px;
            padding: 12px 18px;
            border: 2px solid #dce3ec;
            border-radius: 8px;
            font-size: 16px;
            outline: none;
            transition: 0.2s;
        }
        .search-box input:focus {
            border-color: #f5c518;
        }
        .comment-section {
            margin: 36px 0 20px;
            padding-top: 24px;
            border-top: 2px solid #e8edf2;
        }
        .comment-section h3 {
            margin-top: 0;
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #dce3ec;
            border-radius: 8px;
            font-size: 15px;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: 0.2s;
        }
        .comment-form textarea:focus {
            border-color: #f5c518;
        }
        .comment-form .form-row {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin: 12px 0;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 180px;
            padding: 12px 16px;
            border: 2px solid #dce3ec;
            border-radius: 8px;
            font-size: 15px;
            outline: none;
            transition: 0.2s;
        }
        .comment-form .form-row input:focus {
            border-color: #f5c518;
        }
        .rating-box {
            background: #fef9e7;
            border-radius: 12px;
            padding: 20px 24px;
            margin: 20px 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 16px;
            border: 1px solid #fdebd0;
        }
        .rating-box .stars {
            font-size: 28px;
            color: #ddd;
            cursor: pointer;
            display: flex;
            gap: 4px;
        }
        .rating-box .stars i.active {
            color: #f5c518;
        }
        .rating-box .stars i:hover {
            color: #f5c518;
            transform: scale(1.1);
        }
        .rating-box .avg {
            font-weight: 700;
            font-size: 22px;
            color: #1a1a2e;
        }
        footer {
            background: #0f1b2d;
            color: #b0c4d8;
            padding: 40px 0 20px;
            margin-top: 40px;
            border-top: 4px solid #f5c518;
        }
        footer a {
            color: #f5c518;
            text-decoration: none;
        }
        footer a:hover {
            text-decoration: underline;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 28px;
            margin-bottom: 28px;
        }
        footer h4 {
            color: #f5c518;
            margin-bottom: 12px;
            font-size: 18px;
        }
        footer ul {
            list-style: none;
            padding: 0;
        }
        footer ul li {
            padding: 4px 0;
        }
        footer ul li a {
            color: #b0c4d8;
            font-size: 14px;
        }
        footer ul li a:hover {
            color: #f5c518;
        }
        .friend-link {
            display: block;
            background: #1a2a4a;
            padding: 16px 20px;
            border-radius: 10px;
            margin: 20px 0;
            border: 1px solid #2a3a5a;
        }
        .friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            color: #f5c518;
            font-size: 14px;
        }
        .friend-link a:hover {
            color: #ffd966;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #1e3050;
            font-size: 14px;
            color: #7a8aa0;
        }
        .copyright strong {
            color: #f5c518;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-direction: row;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                margin-top: 14px;
                gap: 4px;
            }
            nav.show {
                display: flex;
            }
            nav a {
                width: 100%;
                padding: 10px 16px;
                border-radius: 6px;
            }
            .hero h1 {
                font-size: 28px;
            }
            .hero p {
                font-size: 16px;
            }
            .content-area {
                padding: 20px 16px;
            }
            .sidebar {
                position: static;
                max-height: none;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .search-box {
                flex-direction: column;
            }
            .search-box input {
                width: 100%;
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 22px;
            }
            .my-logo {
                font-size: 20px;
            }
            .my-logo i {
                font-size: 24px;
            }
            .rating-box {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        .sidebar::-webkit-scrollbar {
            width: 4px;
        }
        .sidebar::-webkit-scrollbar-track {
            background: #f0f4f8;
        }
        .sidebar::-webkit-scrollbar-thumb {
            background: #c0392b;
            border-radius: 10px;
        }
        .schema-hidden {
            display: none;
        }
