        *,
        *::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', Arial, sans-serif;
            background: #0a0e17;
            color: #e8e6e3;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: #c8a84e;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #f0d78a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 600;
            line-height: 1.3;
            color: #f5f2ed;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 1.2rem;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 2.8rem;
            margin-bottom: 0.8rem;
            border-bottom: 2px solid #c8a84e33;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 1.8rem;
            margin-bottom: 0.5rem;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.2rem;
            margin-bottom: 0.3rem;
            color: #d4cfc9;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: #0f1623;
            border-bottom: 2px solid #c8a84e33;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            background-color: rgba(15, 22, 35, 0.94);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            background: linear-gradient(135deg, #c8a84e, #f0d78a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #c8a84e;
            font-size: 1.6rem;
            color: #c8a84e;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }
        .main-nav a {
            font-size: 0.92rem;
            font-weight: 500;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            color: #cfcdc8;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            background: #c8a84e22;
            color: #f0d78a;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #e8e6e3;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
        }
        .nav-toggle:focus-visible {
            outline: 2px solid #c8a84e;
            outline-offset: 2px;
            border-radius: 4px;
        }
        .breadcrumbs {
            padding: 0.8rem 0 0.4rem;
            font-size: 0.85rem;
            color: #9a9792;
        }
        .breadcrumbs ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
        }
        .breadcrumbs li+li::before {
            content: "/";
            margin-right: 0.6rem;
            color: #555;
        }
        .breadcrumbs a {
            color: #b8a87a;
        }
        .breadcrumbs a:hover {
            color: #f0d78a;
        }
        .search-section {
            margin: 1.8rem 0 1.2rem;
        }
        .search-form {
            display: flex;
            max-width: 520px;
            border-radius: 40px;
            overflow: hidden;
            border: 1px solid #c8a84e44;
            background: #141c2b;
            transition: border-color 0.3s;
        }
        .search-form:focus-within {
            border-color: #c8a84e;
            box-shadow: 0 0 0 3px #c8a84e22;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border: none;
            background: transparent;
            color: #e8e6e3;
            font-size: 0.95rem;
            outline: none;
        }
        .search-form input[type="text"]::placeholder {
            color: #7a7873;
        }
        .search-form button {
            background: #c8a84e;
            border: none;
            padding: 0.7rem 1.4rem;
            color: #0a0e17;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-weight: 600;
        }
        .search-form button:hover {
            background: #f0d78a;
        }
        .hero-image {
            margin: 1.5rem 0 2rem;
            border-radius: 12px;
            overflow: hidden;
            background: #141c2b;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
        }
        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            min-height: 200px;
            max-height: 460px;
        }
        .hero-caption {
            padding: 0.8rem 1.2rem;
            background: #0f1623;
            font-size: 0.85rem;
            color: #a7a49e;
            border-top: 1px solid #c8a84e22;
        }
        .hero-caption strong {
            color: #d4cfc9;
        }
        .content-area {
            padding: 0.4rem 0 2rem;
        }
        .content-area p,
        .content-area li {
            font-size: 1.05rem;
            color: #d6d3cd;
        }
        .content-area li {
            margin-bottom: 0.4rem;
        }
        .highlight-box {
            background: #141c2b;
            border-left: 4px solid #c8a84e;
            padding: 1rem 1.4rem;
            margin: 1.4rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .insight-card {
            background: #111a29;
            border-radius: 10px;
            padding: 1.2rem 1.5rem;
            margin: 1.5rem 0;
            border: 1px solid #c8a84e22;
        }
        .insight-card h4 {
            margin-top: 0;
            color: #c8a84e;
        }
        .insight-card i {
            color: #c8a84e;
            margin-right: 0.4rem;
        }
        .interview-block {
            background: #0f1623;
            border-radius: 12px;
            padding: 1.4rem 1.8rem;
            margin: 1.8rem 0;
            border: 1px solid #2a3447;
        }
        .interview-block blockquote {
            font-style: italic;
            border-left: 3px solid #c8a84e;
            padding-left: 1.2rem;
            margin: 0.8rem 0;
            color: #d4cfc9;
        }
        .interview-block .attribution {
            font-size: 0.9rem;
            color: #a7a49e;
            margin-top: 0.6rem;
            text-align: right;
        }
        .rating-section {
            margin: 2.2rem 0 1.8rem;
            padding: 1.4rem 1.8rem;
            background: #111a29;
            border-radius: 12px;
            border: 1px solid #c8a84e33;
        }
        .rating-stars {
            display: flex;
            gap: 0.4rem;
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            direction: rtl;
            justify-content: flex-end;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            transition: color 0.2s, transform 0.15s;
            color: #555;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: #f0d78a;
            transform: scale(1.1);
        }
        .rating-stars label i {
            font-size: 1.8rem;
        }
        .rating-form button {
            margin-top: 0.8rem;
            background: #c8a84e;
            border: none;
            padding: 0.5rem 1.6rem;
            border-radius: 30px;
            font-weight: 600;
            color: #0a0e17;
            cursor: pointer;
            transition: background 0.25s;
        }
        .rating-form button:hover {
            background: #f0d78a;
        }
        .comments-section {
            margin: 2.2rem 0 1.8rem;
            padding: 1.4rem 1.8rem;
            background: #111a29;
            border-radius: 12px;
            border: 1px solid #2a3447;
        }
        .comments-section textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border-radius: 8px;
            border: 1px solid #2a3447;
            background: #0a0e17;
            color: #e8e6e3;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
            transition: border-color 0.3s;
        }
        .comments-section textarea:focus {
            outline: none;
            border-color: #c8a84e;
        }
        .comments-section input[type="text"] {
            width: 100%;
            max-width: 360px;
            padding: 0.6rem 1rem;
            border-radius: 8px;
            border: 1px solid #2a3447;
            background: #0a0e17;
            color: #e8e6e3;
            font-size: 0.95rem;
            margin: 0.5rem 0 0.8rem;
            transition: border-color 0.3s;
        }
        .comments-section input[type="text"]:focus {
            outline: none;
            border-color: #c8a84e;
        }
        .comments-section .btn-submit {
            background: #c8a84e;
            border: none;
            padding: 0.6rem 1.8rem;
            border-radius: 30px;
            font-weight: 600;
            color: #0a0e17;
            cursor: pointer;
            transition: background 0.25s;
        }
        .comments-section .btn-submit:hover {
            background: #f0d78a;
        }
        .site-footer {
            background: #0b101c;
            border-top: 2px solid #c8a84e22;
            padding: 2rem 0 1.2rem;
            margin-top: 2.5rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-col h4 {
            color: #c8a84e;
            margin-top: 0;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        .footer-col a {
            display: block;
            padding: 0.2rem 0;
            font-size: 0.92rem;
            color: #a7a49e;
        }
        .footer-col a:hover {
            color: #f0d78a;
        }
        friend-link {
            display: block;
            margin-top: 0.6rem;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
            margin-bottom: 0.3rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.8rem;
            margin-top: 1.8rem;
            border-top: 1px solid #1e2a3a;
            font-size: 0.85rem;
            color: #7a7873;
        }
        .copyright strong {
            color: #a7a49e;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #8a8780;
            margin: 0.6rem 0 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .last-updated i {
            color: #c8a84e;
        }
        @media (max-width: 820px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 640px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 1rem 0 0.5rem;
                gap: 0.4rem;
                background: #0f1623;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.5rem 0.8rem;
                border-radius: 6px;
                width: 100%;
            }
            .header-inner {
                align-items: center;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
            .rating-stars label i {
                font-size: 1.5rem;
            }
            .container {
                padding: 0 0.9rem;
            }
            .interview-block {
                padding: 1rem 1.2rem;
            }
            .highlight-box {
                padding: 0.8rem 1rem;
            }
            .search-form {
                max-width: 100%;
            }
        }
        @media (max-width: 400px) {
            .my-logo {
                font-size: 1.1rem;
            }
            .my-logo i {
                font-size: 1.2rem;
            }
            .search-form button span {
                display: none;
            }
        }
        :focus-visible {
            outline: 2px solid #c8a84e;
            outline-offset: 2px;
        }
        .skip-link {
            position: absolute;
            top: -100%;
            left: 1rem;
            background: #c8a84e;
            color: #0a0e17;
            padding: 0.5rem 1.2rem;
            border-radius: 0 0 6px 6px;
            font-weight: 600;
            z-index: 200;
            transition: top 0.25s;
        }
        .skip-link:focus {
            top: 0;
            text-decoration: none;
        }
        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }
            *,
            *::before,
            *::after {
                transition-duration: 0.01ms !important;
                animation-duration: 0.01ms !important;
            }
        }
