* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #f7f9fc;
            color: #1a1a2e;
            line-height: 1.7;
            padding: 0 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #fff;
            border-radius: 28px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
            overflow: hidden;
            padding: 0 24px 32px;
        }
        header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 20px 0 12px;
            border-bottom: 2px solid #f0f2f5;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -1px;
            background: linear-gradient(135deg, #e91e63, #9c27b0, #3f51b5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            flex-shrink: 0;
        }
        .my-logo i {
            -webkit-text-fill-color: #e91e63;
            font-size: 1.6rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #1a1a2e;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #f0f2f5;
        }
        nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            text-decoration: none;
            color: #2d3436;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 8px 18px;
            border-radius: 100px;
            transition: all 0.25s;
            background: transparent;
        }
        nav a:hover,
        nav a.active {
            background: #1a1a2e;
            color: #fff;
        }
        .breadcrumb {
            padding: 14px 0 10px;
            font-size: 0.9rem;
            color: #636e72;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
            width: 100%;
            border-bottom: 1px solid #f0f2f5;
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: #0984e3;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #636e72;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 28px 0 16px;
            background: linear-gradient(135deg, #1a1a2e 0%, #e91e63 80%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 4px solid #f0f2f5;
            color: #1a1a2e;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 36px 0 12px;
            color: #2d3436;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #636e72;
        }
        p {
            margin-bottom: 18px;
            color: #2d3436;
            font-size: 1.05rem;
        }
        .last-updated {
            display: inline-block;
            background: #f0f2f5;
            padding: 6px 20px;
            border-radius: 100px;
            font-size: 0.85rem;
            color: #636e72;
            margin-bottom: 24px;
        }
        .last-updated i {
            margin-right: 6px;
            color: #e91e63;
        }
        .featured-image {
            width: 100%;
            border-radius: 20px;
            margin: 20px 0 32px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            display: block;
            max-width: 100%;
            height: auto;
            object-fit: cover;
            aspect-ratio: 16/9;
            background: #f0f2f5;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fef3f7, #f0f2ff);
            border-left: 5px solid #e91e63;
            padding: 20px 24px;
            border-radius: 16px;
            margin: 24px 0;
        }
        .highlight-box p {
            margin-bottom: 0;
        }
        .btn {
            display: inline-block;
            background: #1a1a2e;
            color: #fff;
            padding: 12px 28px;
            border-radius: 100px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        .btn:hover {
            background: #e91e63;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(233, 30, 99, 0.3);
        }
        .btn i {
            margin-right: 8px;
        }
        .code-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .code-card {
            background: #fafbfc;
            border-radius: 16px;
            padding: 18px 20px;
            border: 1px solid #eef1f4;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
        }
        .code-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
            border-color: #e91e63;
        }
        .code-card .code {
            font-family: 'Courier New', monospace;
            font-weight: 700;
            font-size: 1.2rem;
            color: #e91e63;
            background: #fff;
            padding: 4px 12px;
            border-radius: 8px;
            display: inline-block;
            border: 1px dashed #e91e63;
            margin: 8px 0;
        }
        .code-card .badge {
            font-size: 0.75rem;
            background: #00b894;
            color: #fff;
            padding: 2px 12px;
            border-radius: 100px;
            display: inline-block;
            width: fit-content;
            margin-top: 6px;
        }
        .interview-card {
            background: #fafbfc;
            border-radius: 20px;
            padding: 28px;
            margin: 24px 0;
            border: 1px solid #eef1f4;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            align-items: flex-start;
        }
        .interview-card .avatar {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e91e63, #9c27b0);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 2rem;
            font-weight: 700;
            flex-shrink: 0;
        }
        .interview-card .quote {
            flex: 1;
            min-width: 200px;
        }
        .interview-card .quote p {
            font-style: italic;
            margin-bottom: 8px;
        }
        .interview-card .quote .name {
            font-weight: 600;
            color: #1a1a2e;
        }
        .search-section {
            background: #fafbfc;
            border-radius: 20px;
            padding: 28px 32px;
            margin: 40px 0 24px;
            border: 1px solid #eef1f4;
        }
        .search-section form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #eef1f4;
            border-radius: 100px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
            background: #fff;
        }
        .search-section input[type="text"]:focus {
            border-color: #e91e63;
        }
        .comment-section,
        .score-section {
            background: #fafbfc;
            border-radius: 20px;
            padding: 28px 32px;
            margin: 24px 0;
            border: 1px solid #eef1f4;
        }
        .comment-section textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #eef1f4;
            border-radius: 16px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: border 0.3s;
            background: #fff;
        }
        .comment-section textarea:focus {
            border-color: #e91e63;
        }
        .comment-section .form-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        .comment-section .form-row input {
            flex: 1;
            min-width: 160px;
            padding: 12px 18px;
            border: 2px solid #eef1f4;
            border-radius: 100px;
            font-size: 0.95rem;
            outline: none;
            background: #fff;
        }
        .comment-section .form-row input:focus {
            border-color: #e91e63;
        }
        .score-section .star-rating {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            color: #dfe6e9;
            cursor: pointer;
            margin: 12px 0;
            direction: rtl;
        }
        .score-section .star-rating i {
            transition: color 0.2s, transform 0.2s;
        }
        .score-section .star-rating i:hover,
        .score-section .star-rating i:hover~i {
            color: #fdcb6e;
            transform: scale(1.1);
        }
        .score-section .star-rating .active {
            color: #fdcb6e;
        }
        friend-link {
            display: block;
            padding: 24px 0 12px;
            border-top: 2px solid #f0f2f5;
            margin-top: 32px;
        }
        friend-link .fl-title {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 12px;
            color: #1a1a2e;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
        }
        friend-link .fl-list a {
            color: #0984e3;
            text-decoration: none;
            font-size: 0.95rem;
            padding: 4px 0;
        }
        friend-link .fl-list a:hover {
            text-decoration: underline;
            color: #e91e63;
        }
        footer {
            padding: 28px 0 16px;
            border-top: 2px solid #f0f2f5;
            margin-top: 24px;
            text-align: center;
            color: #636e72;
            font-size: 0.9rem;
        }
        footer .copyright {
            margin-top: 8px;
            font-size: 0.85rem;
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 16px 24px;
                border-radius: 16px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 12px 0 4px;
                gap: 4px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 16px;
                border-radius: 12px;
                width: 100%;
            }
            .interview-card {
                flex-direction: column;
                padding: 20px;
            }
            .search-section,
            .comment-section,
            .score-section {
                padding: 20px;
            }
            .code-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .container {
                padding: 0 12px 16px;
            }
            .search-section form {
                flex-direction: column;
            }
            .comment-section .form-row {
                flex-direction: column;
            }
            .score-section .star-rating {
                font-size: 1.6rem;
            }
        }
        .text-muted {
            color: #636e72;
            font-size: 0.9rem;
        }
        .mt-2 {
            margin-top: 16px;
        }
        .mb-1 {
            margin-bottom: 8px;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .gap-1 {
            gap: 8px;
        }
        html {
            scroll-behavior: smooth;
        }
        .star-rating .fas.fa-star {
            color: #fdcb6e;
        }
        .star-rating .far.fa-star {
            color: #dfe6e9;
        }
        .emoji-lg {
            font-size: 1.6rem;
            line-height: 1;
        }
        .inline-code {
            background: #f0f2f5;
            padding: 2px 10px;
            border-radius: 6px;
            font-family: monospace;
            font-size: 0.95rem;
            color: #e91e63;
        }
