        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --saffron: #FF9933;
            --saffron-dark: #e67e22;
            --blue: #000080;
            --blue-light: #1a1a8a;
            --green: #138808;
            --white: #ffffff;
            --off-white: #f8f9fa;
            --gray-100: #f1f3f5;
            --gray-200: #e9ecef;
            --gray-300: #dee2e6;
            --gray-600: #6c757d;
            --gray-800: #343a40;
            --gray-900: #212529;
            --bg-dark: #0d0d1a;
            --card-bg: #1a1a2e;
            --card-border: #2d2d5e;
            --text-light: #f0f0f0;
            --text-muted: #b0b0c8;
            --accent-gold: #f0c040;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            --radius: 16px;
            --radius-sm: 8px;
            --transition: all 0.3s ease;
            --max-width: 1200px;
            --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font-sans);
            background: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.8;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: var(--saffron);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover,
        a:focus {
            color: var(--accent-gold);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-sm);
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a3e 100%);
            border-bottom: 2px solid var(--saffron);
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(255, 153, 51, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--saffron), var(--accent-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: none;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: var(--saffron);
            font-size: 1.6rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: var(--radius-sm);
            transition: var(--transition);
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .main-nav {
            display: flex;
            gap: 0.25rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: var(--text-muted);
            font-size: 0.9rem;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            transition: var(--transition);
            position: relative;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            color: var(--white);
            background: rgba(255, 153, 51, 0.15);
            text-decoration: none;
        }
        .main-nav a.active {
            color: var(--white);
            background: var(--saffron);
        }
        .breadcrumb-wrap {
            background: rgba(255, 255, 255, 0.04);
            padding: 0.6rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .breadcrumb {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            font-size: 0.85rem;
            color: var(--text-muted);
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.4rem;
            color: var(--saffron);
        }
        .breadcrumb a {
            color: var(--saffron);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .current {
            color: var(--text-muted);
        }
        .hero {
            padding: 3rem 0 2.5rem;
            background: radial-gradient(ellipse at 30% 40%, rgba(255, 153, 51, 0.08) 0%, transparent 70%);
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--saffron), var(--accent-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        .hero p {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 720px;
            margin: 0 auto 1.2rem;
        }
        .hero-meta {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .hero-meta i {
            color: var(--saffron);
            margin-right: 0.35rem;
        }
        .hero-img {
            margin: 1.8rem auto 0;
            max-width: 820px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border: 1px solid var(--card-border);
        }
        .search-section {
            padding: 1.5rem 0;
        }
        .search-form {
            display: flex;
            max-width: 580px;
            margin: 0 auto;
            border-radius: 60px;
            overflow: hidden;
            border: 2px solid var(--card-border);
            background: var(--card-bg);
            transition: var(--transition);
        }
        .search-form:focus-within {
            border-color: var(--saffron);
            box-shadow: 0 0 0 4px rgba(255, 153, 51, 0.15);
        }
        .search-form input {
            flex: 1;
            border: none;
            padding: 0.9rem 1.5rem;
            background: transparent;
            color: var(--text-light);
            font-size: 1rem;
            outline: none;
            min-width: 0;
        }
        .search-form input::placeholder {
            color: var(--text-muted);
        }
        .search-form button {
            background: var(--saffron);
            border: none;
            padding: 0 1.6rem;
            color: var(--bg-dark);
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: var(--accent-gold);
        }
        .content-wrap {
            padding: 2.5rem 0 3rem;
        }
        h2 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--white);
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--saffron);
            display: inline-block;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--saffron);
            margin: 2rem 0 0.8rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--accent-gold);
            margin: 1.5rem 0 0.5rem;
        }
        .content-section p {
            margin-bottom: 1.2rem;
            color: var(--text-muted);
            font-size: 1.05rem;
        }
        .content-section strong {
            color: var(--white);
            font-weight: 700;
        }
        .content-section blockquote {
            border-left: 4px solid var(--saffron);
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            background: rgba(255, 153, 51, 0.06);
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            font-style: italic;
            color: var(--text-muted);
        }
        .content-section ul,
        .content-section ol {
            color: var(--text-muted);
            margin-bottom: 1.2rem;
        }
        .content-section ul li::marker {
            color: var(--saffron);
        }
        .content-section ol li::marker {
            color: var(--accent-gold);
        }
        .card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius);
            padding: 1.8rem;
            margin: 1.8rem 0;
            transition: var(--transition);
        }
        .card:hover {
            border-color: var(--saffron);
            box-shadow: 0 4px 24px rgba(255, 153, 51, 0.08);
        }
        .card h3 {
            margin-top: 0;
        }
        .card h4 {
            margin-top: 0.5rem;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.2rem;
            margin: 1.5rem 0;
        }
        .stat-item {
            background: rgba(255, 153, 51, 0.08);
            border-radius: var(--radius-sm);
            padding: 1.2rem;
            text-align: center;
            border: 1px solid rgba(255, 153, 51, 0.15);
        }
        .stat-item .num {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--saffron);
            display: block;
        }
        .stat-item .label {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-top: 0.2rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
            border-radius: var(--radius-sm);
            border: 1px solid var(--card-border);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: var(--card-bg);
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.85rem 1rem;
            text-align: left;
            border-bottom: 1px solid var(--card-border);
        }
        th {
            background: rgba(255, 153, 51, 0.12);
            color: var(--saffron);
            font-weight: 700;
            white-space: nowrap;
        }
        td {
            color: var(--text-muted);
        }
        tr:hover td {
            background: rgba(255, 255, 255, 0.02);
        }
        .interview-box {
            background: rgba(255, 153, 51, 0.04);
            border-left: 4px solid var(--accent-gold);
            padding: 1.5rem 2rem;
            margin: 1.8rem 0;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        }
        .interview-box .speaker {
            font-weight: 700;
            color: var(--accent-gold);
        }
        .interview-box .speaker i {
            margin-right: 0.4rem;
        }
        .img-caption {
            font-size: 0.85rem;
            color: var(--text-muted);
            text-align: center;
            margin-top: 0.5rem;
        }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.5rem 0;
        }
        @media(max-width:768px) {
            .feedback-section {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius);
            padding: 1.8rem;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.9rem;
            margin-top: 0.8rem;
        }
        .feedback-card label {
            font-size: 0.9rem;
            color: var(--text-muted);
            font-weight: 500;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-sm);
            padding: 0.75rem 1rem;
            color: var(--text-light);
            font-size: 0.95rem;
            transition: var(--transition);
            width: 100%;
            font-family: inherit;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: var(--saffron);
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.1);
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card .btn {
            background: var(--saffron);
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 60px;
            font-weight: 700;
            color: var(--bg-dark);
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        .feedback-card .btn:hover {
            background: var(--accent-gold);
            transform: translateY(-1px);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.25rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: var(--card-border);
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--accent-gold);
        }
        .friend-links {
            background: var(--card-bg);
            border-top: 2px solid var(--saffron);
            padding: 2rem 0;
            margin-top: 3rem;
        }
        .friend-links .container {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem 2rem;
            justify-content: center;
        }
        .friend-links a {
            color: var(--text-muted);
            font-size: 0.95rem;
            padding: 0.3rem 0.6rem;
            border-radius: 30px;
            transition: var(--transition);
        }
        .friend-links a:hover {
            color: var(--saffron);
            background: rgba(255, 153, 51, 0.08);
            text-decoration: none;
        }
        .site-footer {
            background: #0a0a18;
            padding: 2rem 0 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
        }
        .site-footer p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin: 0.3rem 0;
        }
        .site-footer .copyright {
            color: var(--gray-600);
            font-size: 0.8rem;
            margin-top: 0.8rem;
        }
        @media(max-width:768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 0.15rem;
                padding-top: 0.75rem;
                border-top: 1px solid rgba(255, 255, 255, 0.06);
            }
            .main-nav.show {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                border-radius: var(--radius-sm);
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .feedback-section {
                grid-template-columns: 1fr;
            }
            .header-inner {
                gap: 0.5rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media(max-width:480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .container {
                padding: 0 0.9rem;
            }
            .feedback-card {
                padding: 1.2rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-dark);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--card-border);
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--saffron);
        }
        .back-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: var(--saffron);
            color: var(--bg-dark);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
            z-index: 999;
            border: none;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
        }
        .back-top.show {
            opacity: 1;
            visibility: visible;
        }
        .back-top:hover {
            background: var(--accent-gold);
            transform: translateY(-3px);
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: var(--text-muted);
            background: rgba(255, 255, 255, 0.04);
            padding: 0.3rem 1rem;
            border-radius: 30px;
            margin-bottom: 1rem;
        }
        .last-updated i {
            color: var(--saffron);
        }
        .text-center {
            text-align: center;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }
