        *,
        *::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, 'Helvetica Neue', sans-serif;
            background: #0b0d11;
            color: #e8e6e3;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f5c842;
            text-decoration: none;
            transition: color 0.25s ease, text-shadow 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffdf7e;
            text-shadow: 0 0 8px rgba(245, 200, 66, 0.3);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 600;
            line-height: 1.25;
            color: #f0ede8;
            letter-spacing: 0.01em;
        }
        h1 {
            font-size: 2.4rem;
            margin: 0 0 0.75rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.2rem 0 0.9rem;
            border-bottom: 2px solid #2a2e38;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.35rem;
            margin: 1.6rem 0 0.6rem;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.2rem 0 0.4rem;
            color: #cbc8c0;
        }
        p {
            margin: 0 0 1.1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .skip-link {
            position: absolute;
            top: -100px;
            left: 16px;
            background: #f5c842;
            color: #0b0d11;
            padding: 8px 18px;
            border-radius: 0 0 8px 8px;
            font-weight: 600;
            z-index: 1000;
            transition: top 0.25s ease;
        }
        .skip-link:focus {
            top: 0;
        }
        .site-header {
            background: #14181f;
            border-bottom: 1px solid #2a2e38;
            position: sticky;
            top: 0;
            z-index: 900;
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.6rem 20px;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .my-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #f5c842;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #f5c842, #d9a62e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(245, 200, 66, 0.15);
            transition: transform 0.25s ease;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo i {
            -webkit-text-fill-color: #f5c842;
            font-size: 1.6rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 1px solid #3a3f4a;
            color: #e8e6e3;
            font-size: 1.5rem;
            padding: 0.3rem 0.7rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover,
        .nav-toggle:focus-visible {
            background: #1f2530;
        }
        .primary-nav {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .primary-nav a {
            padding: 0.5rem 0.9rem;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #cbc8c0;
            transition: background 0.2s, color 0.2s;
        }
        .primary-nav a:hover,
        .primary-nav a:focus-visible {
            background: #1f2530;
            color: #f5c842;
        }
        .primary-nav a.active {
            color: #f5c842;
            background: #1f2530;
        }
        .breadcrumb-wrap {
            background: #0f1218;
            padding: 0.6rem 0;
            border-bottom: 1px solid #1e222b;
            font-size: 0.85rem;
        }
        .breadcrumb-wrap nav ol {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb-wrap nav ol li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #6b7280;
            font-weight: 600;
        }
        .breadcrumb-wrap a {
            color: #a0a7b5;
        }
        .breadcrumb-wrap a:hover {
            color: #f5c842;
        }
        .breadcrumb-wrap .current {
            color: #e8e6e3;
            font-weight: 500;
        }
        .search-section {
            background: #0f1218;
            padding: 1.2rem 0;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            max-width: 600px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }
        .search-form input[type="search"] {
            flex: 1 1 260px;
            padding: 0.7rem 1rem;
            border-radius: 30px;
            border: 1px solid #2a2e38;
            background: #1a1f29;
            color: #e8e6e3;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .search-form input[type="search"]:focus {
            border-color: #f5c842;
            box-shadow: 0 0 0 3px rgba(245, 200, 66, 0.15);
        }
        .search-form button {
            padding: 0.7rem 1.6rem;
            border-radius: 30px;
            border: none;
            background: #f5c842;
            color: #0b0d11;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover,
        .search-form button:focus-visible {
            background: #ffd966;
            transform: scale(1.02);
        }
        .main-content {
            flex: 1;
            padding: 2rem 0 3rem;
        }
        .featured-image-wrapper {
            margin: 1.2rem 0 2rem;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
            background: #1a1f29;
            position: relative;
        }
        .featured-image-wrapper img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image-wrapper .img-caption {
            padding: 0.7rem 1rem;
            font-size: 0.85rem;
            color: #a0a7b5;
            background: #0f1218;
            border-top: 1px solid #1e222b;
        }
        .article-body {
            max-width: 880px;
            margin: 0 auto;
        }
        .article-body .lead {
            font-size: 1.15rem;
            color: #d4d0c8;
            border-left: 4px solid #f5c842;
            padding-left: 1.2rem;
            margin-bottom: 1.8rem;
        }
        .highlight-box {
            background: #1a1f29;
            border-radius: 12px;
            padding: 1.2rem 1.6rem;
            margin: 1.6rem 0;
            border-left: 4px solid #f5c842;
        }
        .highlight-box strong {
            color: #f5c842;
        }
        .insight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.2rem;
            margin: 1.6rem 0;
        }
        .insight-card {
            background: #14181f;
            border-radius: 10px;
            padding: 1.2rem;
            border: 1px solid #2a2e38;
            transition: transform 0.2s, border-color 0.2s;
        }
        .insight-card:hover {
            transform: translateY(-3px);
            border-color: #f5c84255;
        }
        .insight-card i {
            font-size: 1.8rem;
            color: #f5c842;
            margin-bottom: 0.5rem;
        }
        .insight-card h4 {
            margin: 0.3rem 0 0.4rem;
        }
        .interaction-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #2a2e38;
        }
        .comment-form,
        .rating-form {
            background: #14181f;
            border-radius: 14px;
            padding: 1.6rem 2rem;
            margin-bottom: 2rem;
            border: 1px solid #2a2e38;
        }
        .comment-form h3,
        .rating-form h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 0.3rem;
            font-size: 0.9rem;
            color: #cbc8c0;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 8px;
            border: 1px solid #2a2e38;
            background: #1a1f29;
            color: #e8e6e3;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: border-color 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #f5c842;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn-primary {
            background: #f5c842;
            color: #0b0d11;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-primary:hover,
        .btn-primary:focus-visible {
            background: #ffd966;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            font-size: 2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #3a3f4a;
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c842;
        }
        .star-rating label:hover {
            transform: scale(1.1);
        }
        .site-footer {
            background: #0c0f15;
            border-top: 1px solid #1e222b;
            padding: 2.5rem 0 1.5rem;
            margin-top: auto;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.8rem;
        }
        .footer-col h4 {
            color: #f0ede8;
            margin-bottom: 0.6rem;
            font-size: 1rem;
        }
        .footer-col a {
            display: block;
            padding: 0.25rem 0;
            font-size: 0.88rem;
            color: #a0a7b5;
        }
        .footer-col a:hover {
            color: #f5c842;
        }
        .copyright-bar {
            text-align: center;
            padding-top: 1.8rem;
            margin-top: 1.8rem;
            border-top: 1px solid #1e222b;
            font-size: 0.82rem;
            color: #6b7280;
        }
        .copyright-bar strong {
            color: #a0a7b5;
        }
        friend-link {
            display: block;
            margin-top: 0.8rem;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
            font-size: 0.88rem;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 0.6rem;
                gap: 0.1rem;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 0.6rem 0.8rem;
                border-radius: 4px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .comment-form,
            .rating-form {
                padding: 1.2rem 1.2rem;
            }
            .star-rating {
                font-size: 1.6rem;
            }
            .featured-image-wrapper img {
                max-height: 240px;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .header-inner {
                padding: 0.4rem 12px;
            }
            .my-logo {
                font-size: 1.15rem;
            }
            .search-form input[type="search"] {
                flex: 1 1 100%;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
            .insight-grid {
                grid-template-columns: 1fr;
            }
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        .last-updated {
            font-size: 0.82rem;
            color: #6b7280;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            margin-bottom: 1.2rem;
        }
        .last-updated i {
            color: #f5c842;
        }
        .emoji-lg {
            font-size: 1.3em;
        }
        .text-accent {
            color: #f5c842;
        }
        .mt-1 {
            margin-top: 0.5rem;
        }
        .mb-1 {
            margin-bottom: 0.5rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
