*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --gold: #d4af37;
            --gold-light: #f0d060;
            --dark: #0d0d0d;
            --dark-card: #1a1a1a;
            --dark-surface: #242424;
            --text: #e8e8e8;
            --text-muted: #a0a0a0;
            --accent: #e63946;
            --success: #2ecc71;
            --warning: #f39c12;
            --border: #333;
            --radius: 12px;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--dark);
            color: var(--text);
            line-height: 1.7;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: var(--gold);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover,
        a:focus-visible {
            color: var(--gold-light);
            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;
        }
        .site-header {
            background: linear-gradient(135deg, #0d0d0d 0%, #1a0f0a 100%);
            border-bottom: 2px solid var(--gold);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(135deg, var(--gold), #fff4c0, var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            display: inline-block;
            line-height: 1.2;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.6rem;
            -webkit-text-fill-color: var(--text-muted);
            display: block;
            font-weight: 400;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid var(--gold);
            color: var(--gold);
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
        }
        .nav-toggle:hover {
            background: var(--gold);
            color: var(--dark);
        }
        .main-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text);
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .main-nav a:hover,
        .main-nav a:focus-visible {
            background: rgba(212, 175, 55, 0.12);
            border-color: var(--gold);
            color: var(--gold);
            text-decoration: none;
        }
        .main-nav a.active {
            background: var(--gold);
            color: var(--dark);
            font-weight: 700;
        }
        .breadcrumb {
            padding: 14px 0 6px;
            font-size: 0.85rem;
            color: var(--text-muted);
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 8px;
            color: var(--gold);
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--gold);
        }
        .breadcrumb .current {
            color: var(--gold);
            font-weight: 600;
        }
        .hero {
            padding: 48px 0 40px;
            text-align: center;
            background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
        }
        .hero h1 {
            font-size: clamp(2.2rem, 6vw, 3.8rem);
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 16px;
            background: linear-gradient(135deg, var(--gold), #fff4c0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 720px;
            margin: 0 auto 24px;
        }
        .hero .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--dark-card);
            border: 1px solid var(--border);
            padding: 10px 28px;
            border-radius: 60px;
            font-size: 1.05rem;
        }
        .status-badge .dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--success);
            animation: pulse-dot 2s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.6);
            }
            50% {
                box-shadow: 0 0 0 12px rgba(46, 204, 113, 0);
            }
        }
        .status-badge .label {
            font-weight: 600;
        }
        .status-badge .sub {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .last-updated {
            margin-top: 12px;
            font-size: 0.9rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }
        .last-updated i {
            color: var(--gold);
        }
        .content-section {
            padding: 36px 0;
        }
        .content-section h2 {
            font-size: clamp(1.6rem, 3.5vw, 2.4rem);
            font-weight: 800;
            color: var(--gold);
            margin-bottom: 20px;
            border-left: 4px solid var(--gold);
            padding-left: 18px;
        }
        .content-section h3 {
            font-size: clamp(1.2rem, 2.5vw, 1.7rem);
            font-weight: 700;
            color: var(--gold-light);
            margin: 28px 0 12px;
        }
        .content-section h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text);
            margin: 20px 0 8px;
            border-bottom: 1px solid var(--border);
            padding-bottom: 4px;
        }
        .content-section p {
            margin-bottom: 16px;
            color: var(--text);
            font-size: 1rem;
            max-width: 800px;
        }
        .content-section p.lead {
            font-size: 1.12rem;
            color: var(--text-muted);
            border-left: 3px solid var(--gold);
            padding-left: 18px;
            font-style: italic;
        }
        .content-section ul,
        .content-section ol {
            margin: 12px 0 20px 24px;
            color: var(--text);
        }
        .content-section li {
            margin-bottom: 8px;
        }
        .content-section .highlight-box {
            background: var(--dark-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px 28px;
            margin: 24px 0;
            box-shadow: var(--shadow);
        }
        .highlight-box.gold-border {
            border-left: 4px solid var(--gold);
        }
        .highlight-box.success-border {
            border-left: 4px solid var(--success);
        }
        .highlight-box.warning-border {
            border-left: 4px solid var(--warning);
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
            margin: 16px 0 24px;
            padding: 0;
            list-style: none;
        }
        .link-list-inline li a {
            font-weight: 500;
            padding: 4px 0;
            border-bottom: 1px solid transparent;
            transition: var(--transition);
        }
        .link-list-inline li a:hover {
            border-bottom-color: var(--gold);
        }
        .featured-image {
            margin: 28px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: var(--dark-card);
            padding: 8px;
        }
        .featured-image img {
            width: 100%;
            border-radius: calc(var(--radius) - 4px);
        }
        .featured-image figcaption {
            text-align: center;
            padding: 12px 8px 4px;
            font-size: 0.9rem;
            color: var(--text-muted);
            font-style: italic;
        }
        .interview-block {
            background: var(--dark-card);
            border-radius: var(--radius);
            padding: 28px 30px;
            margin: 28px 0;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            position: relative;
        }
        .interview-block::before {
            content: "“";
            font-size: 4rem;
            color: var(--gold);
            opacity: 0.2;
            position: absolute;
            top: 4px;
            left: 12px;
            font-family: serif;
            line-height: 1;
        }
        .interview-block .interviewee {
            font-weight: 700;
            color: var(--gold);
            margin-top: 12px;
        }
        .interview-block .interviewee span {
            font-weight: 400;
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .search-box {
            background: var(--dark-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 28px 30px;
            margin: 28px 0;
            box-shadow: var(--shadow);
        }
        .search-box form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-box input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 18px;
            border-radius: 8px;
            border: 1px solid var(--border);
            background: var(--dark-surface);
            color: var(--text);
            font-size: 1rem;
            transition: var(--transition);
            outline: none;
        }
        .search-box input[type="text"]:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
        }
        .search-box button {
            padding: 14px 32px;
            border: none;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--gold), #c9a227);
            color: var(--dark);
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
        }
        .comment-section {
            background: var(--dark-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 28px 30px;
            margin: 28px 0;
            box-shadow: var(--shadow);
        }
        .comment-section form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .comment-section input,
        .comment-section textarea {
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid var(--border);
            background: var(--dark-surface);
            color: var(--text);
            font-size: 1rem;
            font-family: var(--font);
            transition: var(--transition);
            outline: none;
        }
        .comment-section input:focus,
        .comment-section textarea:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
        }
        .comment-section textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-section button {
            align-self: flex-start;
            padding: 12px 32px;
            border: none;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--gold), #c9a227);
            color: var(--dark);
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-section button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
        }
        .rating-section {
            background: var(--dark-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 28px 30px;
            margin: 28px 0;
            box-shadow: var(--shadow);
            text-align: center;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin: 12px 0 18px;
            font-size: 2.2rem;
            color: var(--border);
            cursor: pointer;
            flex-wrap: wrap;
        }
        .rating-stars i {
            transition: var(--transition);
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: var(--gold);
            transform: scale(1.15);
        }
        .rating-section button {
            padding: 12px 32px;
            border: none;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--gold), #c9a227);
            color: var(--dark);
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-section button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
        }
        .faq-item {
            border-bottom: 1px solid var(--border);
            padding: 18px 0;
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-item .question {
            font-weight: 700;
            font-size: 1.08rem;
            color: var(--gold-light);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }
        .faq-item .question i {
            transition: var(--transition);
            color: var(--gold);
        }
        .faq-item .question.open i {
            transform: rotate(180deg);
        }
        .faq-item .answer {
            margin-top: 10px;
            color: var(--text-muted);
            line-height: 1.7;
        }
        friend-link {
            display: block;
            padding: 24px 0;
            border-top: 1px solid var(--border);
            margin-top: 24px;
        }
        friend-link .friend-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            list-style: none;
            padding: 0;
            margin: 12px 0 0;
        }
        friend-link .friend-list li a {
            color: var(--text-muted);
            font-size: 0.95rem;
            padding: 4px 0;
            border-bottom: 1px solid transparent;
            transition: var(--transition);
        }
        friend-link .friend-list li a:hover {
            color: var(--gold);
            border-bottom-color: var(--gold);
            text-decoration: none;
        }
        friend-link .friend-label {
            font-weight: 700;
            color: var(--gold);
            font-size: 1.1rem;
            letter-spacing: 1px;
        }
        .site-footer {
            background: linear-gradient(135deg, #0d0d0d, #1a0f0a);
            border-top: 2px solid var(--gold);
            padding: 28px 0 20px;
            text-align: center;
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .site-footer .copyright {
            margin-top: 12px;
            letter-spacing: 0.5px;
        }
        .site-footer .copyright i {
            color: var(--gold);
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 4px;
                background: var(--dark-card);
                padding: 16px 12px;
                border-radius: var(--radius);
                border: 1px solid var(--border);
                margin-top: 8px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                width: 100%;
                text-align: center;
                padding: 12px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .search-box form {
                flex-direction: column;
            }
            .search-box input[type="text"] {
                min-width: unset;
            }
            .rating-stars {
                font-size: 1.8rem;
            }
            .interview-block {
                padding: 20px 18px;
            }
            .comment-section,
            .rating-section,
            .search-box {
                padding: 20px 18px;
            }
            .content-section h2 {
                padding-left: 12px;
            }
            .link-list-inline {
                flex-direction: column;
                gap: 6px;
            }
        }
        @media (max-width: 480px) {
            .header-inner {
                gap: 8px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo small {
                font-size: 0.5rem;
            }
            .hero {
                padding: 28px 0 24px;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .status-badge {
                font-size: 0.9rem;
                padding: 8px 18px;
            }
            .status-badge .dot {
                width: 10px;
                height: 10px;
            }
            .content-section p {
                font-size: 0.95rem;
            }
        }
        .faq-item .answer {
            display: none;
        }
        .faq-item .answer.open {
            display: block;
        }
        :focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 2px;
        }
        ::selection {
            background: var(--gold);
            color: var(--dark);
        }
