        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0d0f14;
            color: #e8e6e3;
            line-height: 1.8;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #f0c27f;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffd9a3;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #1a1e26 0%, #0f1219 100%);
            border-bottom: 2px solid #2c323e;
            padding: 16px 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: -0.5px;
            background: linear-gradient(135deg, #f0c27f, #fc5c7d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(252, 92, 125, 0.15);
            display: inline-block;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: #888;
            color: #888;
            display: block;
            letter-spacing: 1px;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #ccc;
            transition: all 0.25s ease;
            border: 1px solid transparent;
        }
        .main-nav a:hover {
            background: rgba(240, 194, 127, 0.12);
            border-color: #f0c27f44;
            color: #f0c27f;
            text-decoration: none;
        }
        .main-nav .nav-active {
            background: rgba(240, 194, 127, 0.15);
            border-color: #f0c27f55;
            color: #f0c27f;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.05);
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #f0c27f;
            border-radius: 4px;
            transition: all 0.3s ease;
            transform-origin: center;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }
        .breadcrumb {
            background: #151a22;
            padding: 10px 0;
            border-bottom: 1px solid #222a36;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            align-items: center;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #666;
        }
        .breadcrumb a {
            color: #b0b8c8;
        }
        .breadcrumb a:hover {
            color: #f0c27f;
        }
        .breadcrumb .current {
            color: #f0c27f;
            font-weight: 500;
        }
        main {
            padding: 32px 0 60px;
        }
        .article-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media(max-width:992px) {
            .article-wrapper {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }
        .article-body h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #f0c27f, #fc5c7d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .article-body h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin-top: 48px;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid #2c323e;
            color: #f0d5a8;
        }
        .article-body h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-top: 32px;
            margin-bottom: 12px;
            color: #e0c090;
        }
        .article-body h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin-top: 24px;
            margin-bottom: 8px;
            color: #cfb07a;
        }
        .article-body p {
            margin-bottom: 18px;
            color: #d5d2ce;
            font-size: 1.05rem;
        }
        .article-body ul,
        .article-body ol {
            margin-bottom: 20px;
            padding-left: 28px;
            color: #d5d2ce;
        }
        .article-body li {
            margin-bottom: 8px;
        }
        .article-body strong {
            color: #f0d5a8;
            font-weight: 600;
        }
        .article-body em {
            color: #c9b594;
            font-style: italic;
        }
        .featured-image {
            margin: 28px 0 32px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
            background: #1a1e26;
            padding: 8px;
        }
        .featured-image img {
            border-radius: 10px;
            width: 100%;
            height: auto;
        }
        .featured-image figcaption {
            text-align: center;
            font-size: 0.85rem;
            color: #999;
            padding: 10px 0 4px;
            font-style: italic;
        }
        .last-updated {
            display: inline-block;
            background: #1f2630;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #b0b8c8;
            border: 1px solid #2c323e;
            margin-bottom: 24px;
        }
        .last-updated i {
            margin-right: 6px;
            color: #f0c27f;
        }
        .insight-box {
            background: linear-gradient(145deg, #1a1e2a, #11161f);
            border-left: 4px solid #f0c27f;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .insight-box p {
            margin-bottom: 0;
        }
        .table-of-contents {
            background: #151a22;
            border-radius: 14px;
            padding: 24px 28px;
            margin: 28px 0 36px;
            border: 1px solid #2c323e;
        }
        .table-of-contents h3 {
            margin-top: 0;
            font-size: 1.3rem;
            color: #f0c27f;
        }
        .table-of-contents ul {
            list-style: none;
            padding-left: 0;
            columns: 2;
            column-gap: 32px;
        }
        .table-of-contents li {
            margin-bottom: 6px;
            break-inside: avoid;
        }
        .table-of-contents a {
            color: #b0c0d0;
            display: inline-block;
            padding: 4px 0;
        }
        .table-of-contents a:hover {
            color: #f0c27f;
        }
        @media(max-width:600px) {
            .table-of-contents ul {
                columns: 1;
            }
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #151a22;
            border-radius: 14px;
            padding: 20px 22px;
            margin-bottom: 24px;
            border: 1px solid #2c323e;
        }
        .sidebar-card h4 {
            font-size: 1.1rem;
            color: #f0c27f;
            margin-bottom: 12px;
            border-bottom: 1px solid #2c323e;
            padding-bottom: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            padding-left: 0;
        }
        .sidebar-card li {
            margin-bottom: 8px;
        }
        .sidebar-card a {
            color: #b0b8c8;
            font-size: 0.92rem;
        }
        .sidebar-card a:hover {
            color: #f0c27f;
        }
        .sidebar-card .link-icon {
            margin-right: 8px;
            color: #fc5c7d;
            font-size: 0.8rem;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin: 20px 0 28px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 18px;
            border-radius: 30px;
            border: 1px solid #2c323e;
            background: #151a22;
            color: #e8e6e3;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .search-form input:focus {
            border-color: #f0c27f;
            box-shadow: 0 0 0 3px rgba(240, 194, 127, 0.15);
        }
        .search-form input::placeholder {
            color: #6a7282;
        }
        .search-form button {
            padding: 12px 24px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, #f0c27f, #fc5c7d);
            color: #0d0f14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.3s;
        }
        .search-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 20px rgba(252, 92, 125, 0.3);
        }
        .interaction-section {
            margin-top: 48px;
            padding-top: 32px;
            border-top: 2px solid #2c323e;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        @media(max-width:700px) {
            .interaction-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #2c323e;
            background: #151a22;
            color: #e8e6e3;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
            margin-bottom: 12px;
            font-family: inherit;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #f0c27f;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            padding: 10px 28px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, #f0c27f, #fc5c7d);
            color: #0d0f14;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.3s;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 16px rgba(252, 92, 125, 0.25);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #444;
            margin-bottom: 14px;
            cursor: pointer;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.2s;
        }
        .rating-stars i:hover,
        .rating-stars i.hover {
            color: #f0c27f;
            transform: scale(1.15);
        }
        .rating-stars i.active {
            color: #f0c27f;
        }
        .rating-form label {
            display: block;
            margin-bottom: 6px;
            font-weight: 500;
        }
        friend-link {
            display: block;
            background: #151a22;
            border-radius: 14px;
            padding: 20px 24px;
            margin-top: 32px;
            border: 1px solid #2c323e;
            font-style: normal;
        }
        friend-link::before {
            content: "🔗 Friend Links";
            display: block;
            font-weight: 700;
            font-size: 1.1rem;
            color: #f0c27f;
            margin-bottom: 12px;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            margin-right: 20px;
            margin-bottom: 6px;
            color: #b0b8c8;
        }
        friend-link a:hover {
            color: #f0c27f;
        }
        .site-footer {
            background: #0a0c11;
            border-top: 2px solid #1f2630;
            padding: 32px 0 24px;
            margin-top: 48px;
        }
        .site-footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }
        .site-footer p {
            color: #7a828e;
            font-size: 0.85rem;
        }
        .site-footer a {
            color: #b0b8c8;
        }
        .site-footer a:hover {
            color: #f0c27f;
        }
        @media(max-width:768px) {
            .hamburger {
                display: flex;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 12px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 18px;
                border-radius: 8px;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .article-body h1 {
                font-size: 1.9rem;
            }
            .article-body h2 {
                font-size: 1.5rem;
            }
            .article-body h3 {
                font-size: 1.2rem;
            }
            .article-body p {
                font-size: 0.98rem;
            }
            .breadcrumb ol {
                font-size: 0.78rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
        }
        @media(max-width:480px) {
            .container {
                padding: 0 14px;
            }
            .article-body h1 {
                font-size: 1.6rem;
            }
            .article-body h2 {
                font-size: 1.3rem;
            }
            .sidebar-card {
                padding: 16px;
            }
            .table-of-contents {
                padding: 16px 18px;
            }
            .interaction-grid {
                gap: 16px;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0d0f14;
        }
        ::-webkit-scrollbar-thumb {
            background: #2c323e;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3d4555;
        }
        .emoji-lg {
            font-size: 1.4em;
            line-height: 1;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(240, 194, 127, 0.12), rgba(252, 92, 125, 0.08));
            padding: 2px 8px;
            border-radius: 4px;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #2c323e, transparent);
            margin: 32px 0;
            border: none;
        }
