* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: #0b0d17;
            color: #e8e8f0;
            line-height: 1.7;
            padding: 0 16px;
        }
        .wrapper {
            max-width: 1220px;
            margin: 0 auto;
            background: #12141f;
            padding: 20px 24px 40px;
            border-radius: 28px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
        }
        a {
            color: #f7c948;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffde7a;
            text-decoration: underline;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            letter-spacing: 0.01em;
            color: #fff;
        }
        h1 {
            font-size: 2.4rem;
            margin: 0.6em 0 0.3em;
            background: linear-gradient(135deg, #f7c948, #ff8a5c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 1.8rem;
            margin: 1.4em 0 0.5em;
            border-left: 5px solid #f7c948;
            padding-left: 16px;
            color: #f0e6d0;
        }
        h3 {
            font-size: 1.35rem;
            margin: 1.2em 0 0.4em;
            color: #f7d78c;
        }
        h4 {
            font-size: 1.1rem;
            margin: 0.8em 0 0.3em;
            color: #cfc5b0;
        }
        p {
            margin: 0 0 1em;
            color: #d5d3e0;
            font-size: 1.02rem;
        }
        .my-logo {
            display: inline-block;
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(145deg, #f7c948, #f97d3a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            padding: 4px 0;
        }
        .my-logo:hover {
            text-decoration: none;
            filter: brightness(1.2);
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0 16px;
            border-bottom: 1px solid #2a2d40;
            position: relative;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 18px;
            flex-wrap: wrap;
        }
        .nav-list li a {
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 40px;
            background: transparent;
            transition: 0.2s;
            font-size: 0.95rem;
            color: #c8c6d6;
        }
        .nav-list li a:hover {
            background: #2a2d44;
            color: #f7c948;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #f7c948;
            cursor: pointer;
            padding: 0 8px;
        }
        .breadcrumb {
            padding: 12px 0 6px;
            font-size: 0.9rem;
            color: #9a98b0;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #b0aec8;
        }
        .breadcrumb span {
            color: #f7c948;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            margin-top: 20px;
        }
        .featured-image {
            width: 100%;
            border-radius: 20px;
            margin: 20px 0 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
            border: 1px solid #2f324a;
            display: block;
        }
        .search-box {
            background: #1b1e2e;
            padding: 18px 22px;
            border-radius: 60px;
            display: flex;
            align-items: center;
            border: 1px solid #333753;
            margin: 24px 0 10px;
            max-width: 600px;
        }
        .search-box input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 10px 14px;
            font-size: 1rem;
            color: #fff;
            outline: none;
        }
        .search-box input::placeholder {
            color: #7a7f9e;
        }
        .search-box button {
            background: #f7c948;
            border: none;
            border-radius: 40px;
            padding: 10px 24px;
            font-weight: 700;
            color: #0b0d17;
            cursor: pointer;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .search-box button:hover {
            background: #ffde7a;
            transform: scale(1.02);
        }
        .comment-section,
        .score-section {
            background: #1a1d2e;
            border-radius: 24px;
            padding: 28px 26px;
            margin: 32px 0 18px;
            border: 1px solid #2d304a;
        }
        .comment-section h3,
        .score-section h3 {
            margin-top: 0;
            color: #f7d78c;
            font-size: 1.5rem;
        }
        .comment-section form,
        .score-section form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 12px;
        }
        .comment-section input,
        .comment-section textarea,
        .score-section select,
        .score-section button {
            padding: 12px 16px;
            border-radius: 40px;
            border: 1px solid #363b57;
            background: #12141f;
            color: #fff;
            font-size: 1rem;
            outline: none;
        }
        .comment-section textarea {
            border-radius: 24px;
            min-height: 100px;
            resize: vertical;
        }
        .comment-section button,
        .score-section button {
            background: #f7c948;
            color: #0b0d17;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: 0.2s;
            width: fit-content;
            padding: 12px 36px;
            border-radius: 40px;
        }
        .comment-section button:hover,
        .score-section button:hover {
            background: #ffde7a;
            transform: scale(1.02);
        }
        .score-stars {
            display: flex;
            gap: 12px;
            align-items: center;
            font-size: 1.8rem;
            color: #f7c948;
        }
        .score-stars select {
            font-size: 1.2rem;
            padding: 6px 14px;
            border-radius: 30px;
        }
        .friend-link {
            display: block;
            background: #1a1d2e;
            border-radius: 20px;
            padding: 22px 26px;
            margin: 28px 0 10px;
            border: 1px solid #2d304a;
        }
        .friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 0;
            color: #f7c948;
        }
        .friend-link a:hover {
            color: #ffde7a;
        }
        footer {
            border-top: 1px solid #2a2d40;
            padding-top: 24px;
            margin-top: 40px;
            text-align: center;
            font-size: 0.9rem;
            color: #8f8dab;
        }
        .update-time {
            color: #f7c948;
            font-weight: 500;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(247, 201, 72, 0.15), transparent);
            padding: 0 6px;
            border-radius: 4px;
        }
        .stat-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .stat-item {
            background: #1b1e2e;
            padding: 20px 16px;
            border-radius: 20px;
            text-align: center;
            border: 1px solid #2f324a;
        }
        .stat-item i {
            font-size: 2rem;
            color: #f7c948;
            margin-bottom: 8px;
        }
        .stat-item span {
            display: block;
            font-size: 1.6rem;
            font-weight: 800;
            color: #fff;
        }
        .stat-item small {
            color: #a8a6c0;
            font-size: 0.9rem;
        }
        .tip-card {
            background: #1f2338;
            border-left: 6px solid #f7c948;
            padding: 18px 22px;
            border-radius: 16px;
            margin: 16px 0;
        }
        .interview-block {
            background: #1a1d2e;
            border-radius: 24px;
            padding: 24px 26px;
            margin: 24px 0;
            border: 1px solid #363b57;
            position: relative;
        }
        .interview-block::before {
            content: '\201C';
            font-size: 4rem;
            color: #f7c948;
            opacity: 0.3;
            position: absolute;
            top: -6px;
            left: 16px;
        }
        @media (max-width: 768px) {
            .wrapper {
                padding: 14px 14px 30px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
                padding-left: 12px;
            }
            h3 {
                font-size: 1.15rem;
            }
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1d2e;
                border-radius: 20px;
                padding: 16px 12px;
                margin-top: 12px;
                gap: 10px;
                border: 1px solid #2f324a;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-wrap {
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
            }
            .search-box {
                flex-direction: column;
                border-radius: 30px;
                padding: 14px 16px;
                gap: 10px;
            }
            .search-box input {
                width: 100%;
            }
            .search-box button {
                width: 100%;
            }
            .stat-box {
                grid-template-columns: 1fr 1fr;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .score-stars {
                flex-wrap: wrap;
            }
        }
        @media (max-width: 480px) {
            .stat-box {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.5rem;
            }
            .wrapper {
                padding: 10px 10px 24px;
            }
        }
        .table-wrap {
            overflow-x: auto;
            margin: 18px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #1a1d2e;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid #2f324a;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #2a2d40;
        }
        th {
            background: #252a42;
            color: #f7c948;
            font-weight: 600;
        }
        tr:hover td {
            background: #202438;
        }
        .tag {
            display: inline-block;
            background: #2a2d44;
            padding: 2px 14px;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #f7c948;
            margin: 2px 4px 2px 0;
        }
        .glossary-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin: 16px 0;
        }
        @media (max-width: 600px) {
            .glossary-grid {
                grid-template-columns: 1fr;
            }
        }
        .glossary-item {
            background: #1b1e2e;
            padding: 12px 18px;
            border-radius: 14px;
            border: 1px solid #2f324a;
        }
        .glossary-item strong {
            color: #f7c948;
        }
