*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #0f1923;
            --secondary: #ff4655;
            --accent: #ece8e1;
            --bg-dark: #0b1219;
            --bg-card: #1a2530;
            --text-light: #f0f0f0;
            --text-muted: #a0aab4;
            --gold: #f1c40f;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            --radius: 12px;
            --max-width: 1200px;
            --font-sans: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font-sans);
            background: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.75;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ff6b7a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: var(--primary);
            border-bottom: 2px solid var(--secondary);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 12px 0;
            box-shadow: 0 4px 20px rgba(255, 70, 85, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: var(--accent);
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
        }
        .my-logo:hover {
            color: var(--secondary);
            text-decoration: none;
            transform: scale(1.02);
        }
        .my-logo i {
            color: var(--secondary);
            font-size: 1.8rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--accent);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: var(--transition);
        }
        .nav-toggle:hover {
            background: rgba(255, 70, 85, 0.2);
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 6px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-list li a {
            display: block;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.92rem;
            color: var(--text-muted);
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .nav-list li a:hover {
            color: var(--accent);
            background: rgba(255, 70, 85, 0.12);
            border-color: var(--secondary);
            text-decoration: none;
        }
        .nav-list li a.active {
            color: var(--accent);
            background: var(--secondary);
            border-color: var(--secondary);
        }
        .breadcrumb-wrap {
            background: rgba(15, 25, 35, 0.8);
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 70, 85, 0.15);
            font-size: 0.85rem;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
            list-style: none;
            align-items: center;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: var(--text-muted);
            font-weight: 700;
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--secondary);
        }
        .breadcrumb .current {
            color: var(--accent);
            font-weight: 600;
        }
        .main-content {
            flex: 1;
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 900;
            line-height: 1.2;
            color: var(--accent);
            margin-bottom: 16px;
            letter-spacing: -0.5px;
            border-left: 6px solid var(--secondary);
            padding-left: 24px;
        }
        h2 {
            font-size: 2.0rem;
            font-weight: 800;
            color: var(--accent);
            margin-top: 48px;
            margin-bottom: 18px;
            border-bottom: 2px solid rgba(255, 70, 85, 0.3);
            padding-bottom: 8px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #f5f0eb;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #ddd8d0;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 18px;
            color: #d5d8dc;
        }
        .lead {
            font-size: 1.2rem;
            color: var(--accent);
            font-weight: 400;
            line-height: 1.8;
        }
        strong,
        b {
            color: var(--accent);
            font-weight: 700;
        }
        em {
            color: #f0e6d3;
        }
        .highlight-box {
            background: var(--bg-card);
            border-left: 4px solid var(--secondary);
            padding: 20px 24px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 24px 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .featured-image-wrapper {
            margin: 32px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
        }
        .featured-image-wrapper img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
            transition: var(--transition);
        }
        .featured-image-wrapper:hover img {
            transform: scale(1.01);
        }
        .image-caption {
            background: rgba(15, 25, 35, 0.85);
            padding: 12px 20px;
            font-size: 0.9rem;
            color: var(--text-muted);
            text-align: center;
            border-radius: 0 0 var(--radius) var(--radius);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
            margin: 28px 0;
        }
        .stat-card {
            background: var(--bg-card);
            padding: 24px 20px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid rgba(255, 70, 85, 0.15);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-4px);
            border-color: var(--secondary);
            box-shadow: 0 12px 40px rgba(255, 70, 85, 0.12);
        }
        .stat-card .number {
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--secondary);
            line-height: 1.2;
        }
        .stat-card .label {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-top: 6px;
        }
        .interview-block {
            background: linear-gradient(135deg, #1a2530 0%, #0f1923 100%);
            padding: 28px 32px;
            border-radius: var(--radius);
            margin: 28px 0;
            border: 1px solid rgba(255, 70, 85, 0.2);
            position: relative;
        }
        .interview-block::before {
            content: "“";
            font-size: 4rem;
            color: var(--secondary);
            opacity: 0.3;
            position: absolute;
            top: -6px;
            left: 12px;
            font-family: Georgia, serif;
        }
        .interview-block .speaker {
            font-weight: 700;
            color: var(--gold);
            margin-top: 12px;
        }
        .interview-block .role {
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .table-wrap {
            overflow-x: auto;
            margin: 28px 0;
            border-radius: var(--radius);
            border: 1px solid rgba(255, 70, 85, 0.15);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-card);
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        th {
            background: rgba(255, 70, 85, 0.15);
            color: var(--accent);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.85rem;
        }
        tr:hover td {
            background: rgba(255, 70, 85, 0.04);
        }
        .form-section {
            background: var(--bg-card);
            padding: 28px 32px;
            border-radius: var(--radius);
            margin: 36px 0;
            border: 1px solid rgba(255, 70, 85, 0.12);
        }
        .form-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            color: var(--accent);
            font-size: 0.95rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(0, 0, 0, 0.3);
            color: var(--text-light);
            font-size: 1rem;
            font-family: var(--font-sans);
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(255, 70, 85, 0.15);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            padding: 12px 32px;
            border: none;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            background: var(--secondary);
            color: #fff;
            letter-spacing: 0.3px;
        }
        .btn:hover {
            background: #e63e4d;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255, 70, 85, 0.3);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid var(--secondary);
            color: var(--secondary);
        }
        .btn-outline:hover {
            background: var(--secondary);
            color: #fff;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            direction: rtl;
            justify-content: flex-end;
            font-size: 1.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #38444d;
            transition: var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--gold);
        }
        .form-flex-row {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
        }
        .form-flex-row .form-group {
            flex: 1;
            min-width: 180px;
            margin-bottom: 0;
        }
        .related-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 16px;
            margin: 20px 0;
            padding: 16px 0;
            border-top: 1px solid rgba(255, 70, 85, 0.1);
            border-bottom: 1px solid rgba(255, 70, 85, 0.1);
        }
        .related-links a {
            font-size: 0.92rem;
            padding: 4px 12px;
            border-radius: 20px;
            background: rgba(255, 70, 85, 0.06);
            border: 1px solid rgba(255, 70, 85, 0.1);
        }
        .related-links a:hover {
            background: rgba(255, 70, 85, 0.15);
            text-decoration: none;
        }
        .site-footer {
            background: var(--primary);
            border-top: 2px solid var(--secondary);
            padding: 40px 0 24px;
            margin-top: auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            margin-bottom: 28px;
        }
        .footer-col h4 {
            color: var(--accent);
            margin-top: 0;
            font-size: 1.1rem;
            border-bottom: 1px solid rgba(255, 70, 85, 0.2);
            padding-bottom: 8px;
        }
        .footer-col a {
            display: block;
            padding: 4px 0;
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .footer-col a:hover {
            color: var(--secondary);
        }
        friend-link {
            display: block;
            padding: 4px 0;
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        friend-link a {
            display: inline;
            padding: 0;
            color: var(--text-muted);
        }
        friend-link a:hover {
            color: var(--secondary);
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 20px;
            text-align: center;
            color: var(--text-muted);
            font-size: 0.85rem;
        }
        .copyright strong {
            color: var(--accent);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
                padding-left: 16px;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-list {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 2px;
                padding: 12px 0 4px;
                border-top: 1px solid rgba(255, 70, 85, 0.15);
                margin-top: 8px;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list li a {
                padding: 10px 16px;
                border-radius: 8px;
                width: 100%;
            }
            .form-section {
                padding: 20px 16px;
            }
            .interview-block {
                padding: 20px 18px;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .stat-card .number {
                font-size: 2rem;
            }
            .site-footer .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .featured-image-wrapper img {
                max-height: 280px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.5rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .site-footer .footer-grid {
                grid-template-columns: 1fr;
            }
            .form-flex-row {
                flex-direction: column;
            }
            .form-flex-row .form-group {
                min-width: unset;
            }
            .star-rating {
                font-size: 1.4rem;
            }
        }
        .text-secondary {
            color: var(--secondary);
        }
        .text-gold {
            color: var(--gold);
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .gap-8 {
            gap: 8px;
        }
        .last-updated {
            font-size: 0.85rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 24px;
            padding: 8px 16px;
            background: rgba(255, 70, 85, 0.06);
            border-radius: 30px;
            width: fit-content;
        }
        .last-updated i {
            color: var(--secondary);
        }
        .tag {
            display: inline-block;
            padding: 2px 12px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            background: rgba(255, 70, 85, 0.15);
            color: var(--secondary);
        }
        .divider {
            border: none;
            border-top: 1px solid rgba(255, 70, 85, 0.12);
            margin: 32px 0;
        }
