        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            background: #0a0a1a;
            color: #e8e4de;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #f0c040;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #ffd966;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.25rem;
        }
        li {
            margin-bottom: 0.35rem;
        }
        h1 {
            font-size: 2.75rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #f0c040, #d4a030, #f5d76e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f0c040;
            border-left: 4px solid #f0c040;
            padding-left: 1rem;
            margin: 2.5rem 0 1.25rem 0;
            line-height: 1.3;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #f5d76e;
            margin: 2rem 0 0.75rem 0;
            line-height: 1.4;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #e8d5a3;
            margin: 1.5rem 0 0.5rem 0;
            line-height: 1.4;
        }
        p {
            margin-bottom: 1.15rem;
            font-size: 1.0625rem;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 300;
            color: #cfc9c0;
            max-width: 800px;
        }
        strong {
            color: #f5d76e;
            font-weight: 600;
        }
        em {
            color: #c9b896;
        }
        .text-gold {
            color: #f0c040;
        }
        .text-muted {
            color: #98948c;
        }
        .small {
            font-size: 0.875rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(180deg, #0f0f2a 0%, #0a0a1a 100%);
            border-bottom: 2px solid #2a2a4a;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0c040, #d4a030, #f5d76e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.03em;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            text-decoration: none;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .my-logo i {
            -webkit-text-fill-color: #f0c040;
            font-size: 1.8rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f0c040;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(240, 192, 64, 0.1);
        }
        .primary-nav {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            flex-wrap: wrap;
        }
        .primary-nav a {
            padding: 0.5rem 0.9rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #cfc9c0;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .primary-nav a:hover,
        .primary-nav a:focus {
            background: rgba(240, 192, 64, 0.12);
            color: #f0c040;
            text-decoration: none;
        }
        .primary-nav a.active {
            background: rgba(240, 192, 64, 0.15);
            color: #f0c040;
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.03);
            padding: 0.6rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #6a6a8a;
            font-weight: 300;
        }
        .breadcrumb a {
            color: #9a9ab0;
        }
        .breadcrumb a:hover {
            color: #f0c040;
        }
        .breadcrumb .current {
            color: #f0c040;
            font-weight: 500;
        }
        .hero {
            padding: 3rem 0 2.5rem 0;
            background: radial-gradient(ellipse at 30% 20%, #1a1a3a 0%, #0a0a1a 70%);
            border-bottom: 1px solid #2a2a4a;
        }
        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            align-items: center;
        }
        .hero-image-wrap {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
            border: 1px solid #3a3a5a;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .hero-image-wrap:hover {
            transform: scale(1.01);
            box-shadow: 0 30px 80px rgba(240, 192, 64, 0.15);
        }
        .hero-image-wrap img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .section {
            padding: 2.5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .section:last-of-type {
            border-bottom: none;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .card {
            background: linear-gradient(145deg, #12122a, #0e0e22);
            border-radius: 14px;
            padding: 1.5rem 1.25rem;
            border: 1px solid #2a2a4a;
            transition: all 0.3s ease;
        }
        .card:hover {
            border-color: #f0c040;
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(240, 192, 64, 0.08);
        }
        .card h3 {
            margin-top: 0;
            font-size: 1.25rem;
        }
        .card h3 a {
            color: #f5d76e;
        }
        .card p {
            font-size: 0.95rem;
            color: #b8b4ac;
        }
        .interview-block {
            background: #11112a;
            border-radius: 16px;
            padding: 2rem;
            margin: 2rem 0;
            border-left: 4px solid #f0c040;
            border: 1px solid #2a2a4a;
            border-left-width: 4px;
        }
        .interview-block .quote {
            font-style: italic;
            font-size: 1.1rem;
            color: #d8d0c0;
            padding-left: 1.5rem;
            border-left: 2px solid #f0c04040;
        }
        .interview-block .attribution {
            margin-top: 0.75rem;
            font-weight: 500;
            color: #f0c040;
        }
        .data-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.25rem;
            margin: 1.5rem 0;
        }
        .data-item {
            background: #0e0e24;
            border-radius: 12px;
            padding: 1.25rem 1rem;
            text-align: center;
            border: 1px solid #2a2a4a;
        }
        .data-item .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f0c040;
            line-height: 1.2;
        }
        .data-item .label {
            font-size: 0.85rem;
            color: #9a9ab0;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .form-group {
            margin-bottom: 1.25rem;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            color: #d8d0c0;
            margin-bottom: 0.35rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.75rem 1rem;
            border-radius: 8px;
            border: 1px solid #3a3a5a;
            background: #0e0e22;
            color: #e8e4de;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.2s ease, box-shadow 0.2s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #f0c040;
            box-shadow: 0 0 0 3px rgba(240, 192, 64, 0.15);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.6rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s ease;
            background: linear-gradient(135deg, #f0c040, #d4a030);
            color: #0a0a1a;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(240, 192, 64, 0.25);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f0c040;
            color: #f0c040;
        }
        .btn-outline:hover {
            background: rgba(240, 192, 64, 0.1);
        }
        .search-form {
            display: flex;
            gap: 0.75rem;
            max-width: 600px;
            margin: 1rem 0;
        }
        .search-form input {
            flex: 1;
            padding: 0.75rem 1.25rem;
            border-radius: 50px;
            border: 1px solid #3a3a5a;
            background: #0e0e22;
            color: #e8e4de;
            font-size: 1rem;
        }
        .search-form input:focus {
            border-color: #f0c040;
            box-shadow: 0 0 0 3px rgba(240, 192, 64, 0.12);
            outline: none;
        }
        .search-form button {
            border-radius: 50px;
            padding: 0.75rem 1.6rem;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            font-size: 1.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #4a4a6a;
            transition: color 0.2s ease;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f0c040;
        }
        .comment-list {
            margin: 1.5rem 0;
        }
        .comment-item {
            background: #0e0e24;
            border-radius: 10px;
            padding: 1rem 1.25rem;
            margin-bottom: 1rem;
            border: 1px solid #2a2a4a;
        }
        .comment-item .meta {
            font-size: 0.8rem;
            color: #7a7a9a;
            display: flex;
            gap: 1rem;
            margin-bottom: 0.3rem;
        }
        .comment-item .body {
            color: #d8d4cc;
        }
        .site-footer {
            background: #0a0a1a;
            border-top: 2px solid #2a2a4a;
            padding: 2.5rem 0 1.5rem 0;
            margin-top: 1.5rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-grid h4 {
            color: #f0c040;
            margin-top: 0;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
        }
        .footer-grid li {
            margin-bottom: 0.4rem;
        }
        .footer-grid a {
            color: #9a9ab0;
            font-size: 0.9rem;
        }
        .footer-grid a:hover {
            color: #f0c040;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            border-top: 1px solid #1a1a3a;
            color: #7a7a9a;
            font-size: 0.85rem;
        }
        friend-link {
            display: block;
            margin-top: 1rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.6rem 0.2rem 0;
            padding: 0.2rem 0.8rem;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 20px;
            font-size: 0.85rem;
            color: #b0acb0;
            border: 1px solid #2a2a4a;
        }
        friend-link a:hover {
            border-color: #f0c040;
            color: #f0c040;
            background: rgba(240, 192, 64, 0.06);
        }
        @media (max-width: 992px) {
            .hero .container {
                grid-template-columns: 1fr;
            }
            .hero-image-wrap {
                order: -1;
            }
            h1 {
                font-size: 2.2rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 0.75rem 0 0.25rem 0;
                gap: 0.15rem;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                width: 100%;
                padding: 0.6rem 0.8rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .data-grid {
                grid-template-columns: 1fr 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .interview-block {
                padding: 1.25rem;
            }
        }
        @media (max-width: 480px) {
            .data-grid {
                grid-template-columns: 1fr;
            }
            .star-rating {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
            .container {
                padding: 0 0.9rem;
            }
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex {
            display: flex;
        }
        .flex-wrap {
            flex-wrap: wrap;
        }
        .gap-1 {
            gap: 1rem;
        }
        .items-center {
            align-items: center;
        }
        .justify-between {
            justify-content: space-between;
        }
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .fade-up {
            animation: fadeUp 0.6s ease forwards;
        }
        .updated-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(240, 192, 64, 0.1);
            border: 1px solid #f0c04030;
            padding: 0.3rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            color: #f0c040;
        }
        .updated-badge i {
            font-size: 0.75rem;
        }
