        *,
        *::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, sans-serif;
            background: #0f0a07;
            color: #f0e6d8;
            line-height: 1.75;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #dbb86a;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #f5d89a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
            width: 100%;
        }
        :root {
            --bg-primary: #0f0a07;
            --bg-secondary: #1a110c;
            --bg-card: #231712;
            --text-primary: #f0e6d8;
            --text-secondary: #cbb59e;
            --accent-gold: #dbb86a;
            --accent-gold-hover: #f5d89a;
            --border-color: #3a281e;
            --shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
            --radius: 8px;
            --transition: 0.3s ease;
        }
        .site-header {
            background: linear-gradient(145deg, #1a0f0a 0%, #0f0a07 100%);
            border-bottom: 2px solid var(--border-color);
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-family: 'Georgia', 'Times New Roman', serif;
            font-size: 1.75rem;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--accent-gold);
            text-shadow: 0 2px 8px rgba(219, 184, 106, 0.25);
            transition: var(--transition);
            line-height: 1.2;
        }
        .my-logo:hover {
            color: var(--accent-gold-hover);
            text-shadow: 0 2px 16px rgba(219, 184, 106, 0.45);
            text-decoration: none;
        }
        .my-logo small {
            display: block;
            font-size: 0.55rem;
            font-weight: 400;
            letter-spacing: 3px;
            color: var(--text-secondary);
            text-transform: uppercase;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 1px solid var(--border-color);
            color: var(--accent-gold);
            font-size: 1.5rem;
            padding: 0.4rem 0.8rem;
            border-radius: var(--radius);
            cursor: pointer;
            transition: var(--transition);
        }
        .nav-toggle:hover {
            background: var(--bg-card);
            border-color: var(--accent-gold);
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 0.25rem 0.75rem;
            list-style: none;
            padding: 0;
            align-items: center;
        }
        .nav-menu li a {
            padding: 0.3rem 0.6rem;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: 4px;
            transition: var(--transition);
            white-space: nowrap;
        }
        .nav-menu li a:hover,
        .nav-menu li a:focus {
            color: var(--accent-gold);
            background: rgba(219, 184, 106, 0.08);
            text-decoration: none;
        }
        .nav-menu li a i {
            margin-right: 0.35rem;
            font-size: 0.8rem;
        }
        .breadcrumb {
            padding: 0.6rem 0;
            font-size: 0.8rem;
            color: var(--text-secondary);
            border-bottom: 1px solid rgba(58, 40, 30, 0.4);
            margin-bottom: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .breadcrumb .sep {
            color: var(--border-color);
        }
        .breadcrumb .current {
            color: var(--accent-gold);
            font-weight: 500;
        }
        main {
            flex: 1;
            padding: 2rem 0 3rem;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--accent-gold);
            line-height: 1.25;
            margin-bottom: 1.25rem;
            letter-spacing: -0.5px;
            font-family: 'Georgia', serif;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #f0e0c8;
            margin-top: 3rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 0.5rem;
            font-family: 'Georgia', serif;
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 600;
            color: #e8d5b8;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #dcc8a8;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }
        p {
            margin-bottom: 1.15rem;
            color: var(--text-primary);
        }
        .info-box {
            background: var(--bg-card);
            border-left: 4px solid var(--accent-gold);
            padding: 1.25rem 1.5rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 1.5rem 0;
            box-shadow: var(--shadow);
        }
        .info-box p:last-child {
            margin-bottom: 0;
        }
        .highlight {
            background: rgba(219, 184, 106, 0.12);
            padding: 0.1rem 0.4rem;
            border-radius: 3px;
            font-weight: 600;
            color: #f0d89a;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-card);
            font-size: 0.9rem;
        }
        th,
        td {
            padding: 0.75rem 1rem;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }
        th {
            background: #2a1b14;
            color: var(--accent-gold);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.8rem;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: rgba(219, 184, 106, 0.05);
        }
        .form-group {
            margin-bottom: 1.25rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.35rem;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            background: #1f1510;
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            color: var(--text-primary);
            font-size: 0.95rem;
            transition: var(--transition);
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(219, 184, 106, 0.15);
        }
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.8rem;
            background: var(--accent-gold);
            color: #0f0a07;
            font-weight: 700;
            font-size: 0.95rem;
            border: none;
            border-radius: var(--radius);
            cursor: pointer;
            transition: var(--transition);
            font-family: inherit;
        }
        .btn:hover {
            background: var(--accent-gold-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(219, 184, 106, 0.3);
        }
        .btn:active {
            transform: translateY(0);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.15rem;
            font-size: 1.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: var(--border-color);
            transition: color 0.2s ease;
        }
        .star-rating label::before {
            content: '\f005';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: var(--accent-gold);
        }
        .comment-item {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 1rem 1.25rem;
            margin-bottom: 1rem;
            border: 1px solid var(--border-color);
        }
        .comment-item .meta {
            font-size: 0.8rem;
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .comment-item .meta strong {
            color: var(--accent-gold);
        }
        friend-link {
            display: block;
            padding: 1.5rem 0 0.5rem;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem 1.5rem;
        }
        friend-link ul li a {
            font-size: 0.9rem;
            color: var(--text-secondary);
            border-bottom: 1px dotted transparent;
            transition: var(--transition);
        }
        friend-link ul li a:hover {
            color: var(--accent-gold);
            border-bottom-color: var(--accent-gold);
            text-decoration: none;
        }
        .site-footer {
            background: #0a0604;
            border-top: 2px solid var(--border-color);
            padding: 2rem 0 1.5rem;
            margin-top: 3rem;
            font-size: 0.85rem;
            color: var(--text-secondary);
        }
        .site-footer .copyright {
            text-align: center;
            padding-top: 1.25rem;
            border-top: 1px solid var(--border-color);
            margin-top: 1.25rem;
            font-size: 0.8rem;
        }
        .site-footer .copyright a {
            color: var(--accent-gold);
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--bg-secondary);
                padding: 1rem;
                border-radius: var(--radius);
                border: 1px solid var(--border-color);
                margin-top: 0.5rem;
                gap: 0.4rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                display: block;
                padding: 0.5rem 0.75rem;
                font-size: 1rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .header-inner {
                gap: 0.5rem;
            }
            .container {
                padding: 0 1rem;
            }
            .star-rating {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo small {
                font-size: 0.45rem;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
            .breadcrumb {
                font-size: 0.7rem;
            }
        }
        .text-gold {
            color: var(--accent-gold);
        }
        .text-muted {
            color: var(--text-secondary);
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .flex {
            display: flex;
        }
        .flex-wrap {
            flex-wrap: wrap;
        }
        .gap-1 {
            gap: 1rem;
        }
        .items-center {
            align-items: center;
        }
        .featured-img {
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin: 1.5rem 0;
            border: 1px solid var(--border-color);
            background: var(--bg-card);
            overflow: hidden;
        }
        .featured-img img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .featured-img figcaption {
            padding: 0.75rem 1rem;
            font-size: 0.85rem;
            color: var(--text-secondary);
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-color);
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1rem;
            background: #1f1510;
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            color: var(--text-primary);
            font-size: 0.95rem;
        }
        .search-form input[type="text"]:focus {
            border-color: var(--accent-gold);
            outline: none;
        }
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: var(--accent-gold);
            color: #0f0a07;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
            z-index: 50;
            border: none;
            cursor: pointer;
        }
        .scroll-top:hover {
            background: var(--accent-gold-hover);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(219, 184, 106, 0.35);
        }
        @media (max-width: 480px) {
            .scroll-top {
                bottom: 1rem;
                right: 1rem;
                width: 38px;
                height: 38px;
                font-size: 1rem;
            }
        }
        section {
            margin-bottom: 2.5rem;
        }
        blockquote {
            border-left: 4px solid var(--accent-gold);
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            background: var(--bg-card);
            border-radius: 0 var(--radius) var(--radius) 0;
            font-style: italic;
            color: var(--text-secondary);
        }
        blockquote cite {
            display: block;
            margin-top: 0.5rem;
            font-size: 0.85rem;
            color: var(--accent-gold);
            font-style: normal;
        }
        .interview-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow);
        }
        .interview-card .avatar {
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin-bottom: 0.5rem;
        }
