*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #ff7b2b;
            --primary-dark: #e05a1a;
            --secondary: #2b2d42;
            --accent: #f9c74f;
            --bg-light: #fdf8f0;
            --bg-white: #ffffff;
            --text-dark: #1a1a2e;
            --text-muted: #555;
            --text-light: #777;
            --border: #e8e0d4;
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.14);
            --radius: 16px;
            --radius-sm: 8px;
            --transition: 0.25s ease;
            --font: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: var(--bg-white);
            border-bottom: 2px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            gap: 20px;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: var(--primary);
            font-size: 1.5rem;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: var(--text-light);
            font-weight: 400;
            display: block;
            letter-spacing: 0.3px;
        }
        .my-logo a {
            text-decoration: none;
            color: inherit;
            background: inherit;
            -webkit-background-clip: inherit;
            -webkit-text-fill-color: inherit;
        }
        .my-logo a:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--secondary);
            cursor: pointer;
            padding: 4px 10px;
            border-radius: var(--radius-sm);
            transition: var(--transition);
        }
        .nav-toggle:hover {
            background: var(--bg-light);
        }
        nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        nav a {
            padding: 8px 16px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--secondary);
            transition: var(--transition);
            white-space: nowrap;
        }
        nav a:hover,
        nav a.active {
            background: var(--primary);
            color: #fff;
            text-decoration: none;
        }
        nav a i {
            margin-right: 6px;
        }
        .breadcrumb {
            background: var(--bg-white);
            padding: 10px 0 6px;
            font-size: 0.85rem;
            color: var(--text-light);
            border-bottom: 1px solid var(--border);
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 4px 12px;
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb span {
            color: var(--text-light);
        }
        .breadcrumb .current {
            color: var(--secondary);
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #fff3e6 0%, #ffe0c0 100%);
            padding: 48px 0 40px;
            border-bottom: 1px solid var(--border);
        }
        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .hero h1 {
            font-size: 2.6rem;
            line-height: 1.2;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 16px;
        }
        .hero h1 span {
            background: linear-gradient(135deg, var(--primary), #ff9f1c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.15rem;
            color: var(--text-muted);
            max-width: 520px;
            margin-bottom: 24px;
        }
        .hero .meta-badge {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 28px;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .hero .meta-badge i {
            color: var(--primary);
            margin-right: 6px;
        }
        .hero figure {
            margin: 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .hero figure img {
            width: 100%;
            aspect-ratio: 16/10;
            object-fit: cover;
        }
        .hero figure figcaption {
            padding: 10px 16px;
            background: var(--bg-white);
            font-size: 0.85rem;
            color: var(--text-light);
            text-align: center;
        }
        section {
            padding: 48px 0;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 8px;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--primary);
            border-radius: 4px;
            margin-top: 6px;
        }
        .section-sub {
            font-size: 1.05rem;
            color: var(--text-muted);
            margin-bottom: 32px;
            max-width: 720px;
        }
        .card {
            background: var(--bg-white);
            border-radius: var(--radius);
            padding: 28px 32px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid var(--border);
        }
        .card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--secondary);
        }
        .card h3 i {
            color: var(--primary);
            margin-right: 8px;
        }
        .card p,
        .card li {
            color: var(--text-muted);
            font-size: 0.98rem;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 24px;
        }
        .list-star {
            list-style: none;
            padding: 0;
        }
        .list-star li {
            padding: 6px 0 6px 28px;
            position: relative;
        }
        .list-star li::before {
            content: '\f005';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--accent);
            position: absolute;
            left: 0;
            top: 6px;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fef7f0, #fff3e6);
            border-left: 6px solid var(--primary);
            padding: 20px 24px;
            border-radius: var(--radius-sm);
            margin: 24px 0;
        }
        .highlight-box strong {
            color: var(--secondary);
        }
        .interview-card {
            background: var(--bg-white);
            border-radius: var(--radius);
            padding: 32px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            margin: 20px 0;
            position: relative;
        }
        .interview-card::before {
            content: '\f10d';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 2.2rem;
            color: var(--primary);
            opacity: 0.2;
            position: absolute;
            top: 16px;
            left: 20px;
        }
        .interview-card blockquote {
            font-size: 1.05rem;
            font-style: italic;
            color: var(--text-dark);
            padding: 0 0 0 20px;
            border-left: 4px solid var(--primary);
        }
        .interview-card .attribution {
            margin-top: 16px;
            font-weight: 600;
            color: var(--secondary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .interview-card .attribution i {
            color: var(--primary);
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: var(--bg-white);
        }
        th {
            background: var(--secondary);
            color: #fff;
            padding: 14px 16px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 12px 16px;
            border-bottom: 1px solid var(--border);
            color: var(--text-muted);
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #fdf6ee;
        }
        .form-card {
            background: var(--bg-white);
            border-radius: var(--radius);
            padding: 32px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        .form-card label {
            font-weight: 600;
            display: block;
            margin-bottom: 4px;
            color: var(--secondary);
            font-size: 0.95rem;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--border);
            border-radius: var(--radius-sm);
            font-family: var(--font);
            font-size: 0.95rem;
            transition: var(--transition);
            background: var(--bg-light);
            color: var(--text-dark);
        }
        .form-card input:focus,
        .form-card textarea:focus,
        .form-card select:focus {
            outline: none;
            border-color: var(--primary);
            background: #fff;
            box-shadow: 0 0 0 4px rgba(255, 123, 43, 0.12);
        }
        .form-card textarea {
            resize: vertical;
            min-height: 100px;
        }
        .form-card .btn {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .form-card .btn:hover {
            background: var(--primary-dark);
            transform: scale(1.02);
            box-shadow: 0 8px 24px rgba(255, 123, 43, 0.3);
        }
        .form-card .btn i {
            font-size: 1.1rem;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px 20px;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            cursor: pointer;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd;
            transition: var(--transition);
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--accent);
        }
        friend-link {
            display: block;
            padding: 32px 0 16px;
            border-top: 2px solid var(--border);
            margin-top: 32px;
        }
        friend-link .fl-title {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--secondary);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
            list-style: none;
        }
        friend-link .fl-list a {
            font-size: 0.92rem;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
        }
        friend-link .fl-list a:hover {
            border-bottom-color: var(--primary);
            text-decoration: none;
        }
        footer {
            background: var(--secondary);
            color: #ccc;
            padding: 32px 0 20px;
            margin-top: 32px;
        }
        footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }
        footer .copyright {
            font-size: 0.85rem;
            opacity: 0.8;
        }
        footer .copyright strong {
            color: #fff;
        }
        footer .footer-links a {
            color: #ccc;
            margin: 0 12px;
            font-size: 0.9rem;
        }
        footer .footer-links a:hover {
            color: #fff;
        }
        @media (max-width: 900px) {
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero p {
                margin: 0 auto 24px;
            }
            .hero .meta-badge {
                justify-content: center;
            }
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
            .section-title {
                font-size: 1.6rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 700px) {
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 12px 0 4px;
                border-top: 1px solid var(--border);
                margin-top: 8px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 16px;
                border-radius: var(--radius-sm);
            }
            .header-inner {
                padding: 10px 0;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            section {
                padding: 32px 0;
            }
            .card {
                padding: 20px;
            }
            .form-card {
                padding: 20px;
            }
            .interview-card {
                padding: 20px;
            }
            footer .container {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .container {
                padding: 0 14px;
            }
            .breadcrumb .container {
                font-size: 0.75rem;
                gap: 2px 8px;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-light);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }
        .anchor-offset {
            scroll-margin-top: 90px;
        }
