        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #0b0d15;
            color: #e0e6f0;
            line-height: 1.75;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f0c940;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffde7a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #151a24;
        }
        ::-webkit-scrollbar-thumb {
            background: #f0c940;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #ffde7a;
        }
        .site-header {
            background: linear-gradient(135deg, #0f1219 0%, #1a1f2e 100%);
            border-bottom: 2px solid #f0c94033;
            padding: 0.75rem 1.5rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .header-inner {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem 1rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: #f0c940;
            text-shadow: 0 0 20px #f0c94055, 0 0 6px #f0c94033;
            transition: transform 0.3s ease, text-shadow 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-shadow: 0 0 30px #f0c94088, 0 0 12px #f0c94055;
            text-decoration: none;
        }
        .my-logo i {
            font-size: 1.6rem;
            margin-right: 0.2rem;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.25rem 0.5rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 0.4rem 0.9rem;
            border-radius: 40px;
            font-size: 0.92rem;
            font-weight: 500;
            color: #c8d0dc;
            background: transparent;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a:focus-visible {
            background: #f0c94018;
            color: #f0c940;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #f0c94022;
            color: #f0c940;
            border: 1px solid #f0c94044;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #f0c940;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            transition: transform 0.2s;
        }
        .hamburger:hover {
            transform: rotate(90deg);
        }
        .breadcrumb-wrap {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0.6rem 1.5rem 0.2rem;
            font-size: 0.85rem;
            color: #8892a8;
        }
        .breadcrumb-wrap ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.35rem 0.5rem;
        }
        .breadcrumb-wrap li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #f0c94088;
        }
        .breadcrumb-wrap a {
            color: #b0b8cc;
        }
        .breadcrumb-wrap a:hover {
            color: #f0c940;
        }
        .breadcrumb-wrap .current {
            color: #f0c940;
            font-weight: 600;
        }
        .page-wrap {
            flex: 1;
            max-width: 1280px;
            margin: 0 auto;
            padding: 1rem 1.5rem 2.5rem;
            width: 100%;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem 2rem;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 90px;
            align-self: start;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            color: #f0c940;
            margin: 0.5rem 0 1.2rem;
            text-shadow: 0 2px 20px #f0c94033;
            letter-spacing: -0.01em;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f5d97a;
            margin: 2.5rem 0 0.8rem;
            padding-bottom: 0.4rem;
            border-bottom: 2px solid #f0c94033;
            letter-spacing: -0.01em;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #e8d080;
            margin: 1.8rem 0 0.6rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #d4c47a;
            margin: 1.2rem 0 0.4rem;
        }
        p {
            margin-bottom: 1rem;
            color: #d0d8e6;
        }
        .lead {
            font-size: 1.2rem;
            line-height: 1.7;
            color: #e8eef8;
            font-weight: 400;
            border-left: 4px solid #f0c940;
            padding-left: 1.2rem;
            margin-bottom: 1.8rem;
        }
        strong,
        b {
            color: #f5e8c8;
            font-weight: 700;
        }
        .featured-image {
            border-radius: 16px;
            overflow: hidden;
            margin: 1.8rem 0 2rem;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
            border: 1px solid #f0c94022;
            background: #121724;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            aspect-ratio: 1200/630;
        }
        .featured-image figcaption {
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            color: #8892a8;
            background: #0d111b;
            border-top: 1px solid #f0c94022;
        }
        .context-link {
            font-weight: 600;
            color: #f0c940;
            border-bottom: 1px dotted #f0c94066;
            padding-bottom: 0.1rem;
        }
        .context-link:hover {
            border-bottom-style: solid;
        }
        ul,
        ol {
            margin: 0.6rem 0 1.2rem 1.6rem;
            color: #c8d0de;
        }
        li {
            margin-bottom: 0.35rem;
        }
        .search-block {
            background: #131824;
            border: 1px solid #f0c94033;
            border-radius: 60px;
            padding: 0.2rem 0.2rem 0.2rem 1.2rem;
            display: flex;
            align-items: center;
            max-width: 480px;
            margin: 1.2rem 0 1.8rem;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .search-block:focus-within {
            border-color: #f0c94088;
            box-shadow: 0 0 20px #f0c94022;
        }
        .search-block input {
            flex: 1;
            background: none;
            border: none;
            padding: 0.7rem 0.5rem;
            font-size: 1rem;
            color: #e0e6f0;
            outline: none;
            min-width: 0;
        }
        .search-block input::placeholder {
            color: #6a7488;
        }
        .search-block button {
            background: #f0c940;
            border: none;
            border-radius: 40px;
            padding: 0.55rem 1.4rem;
            font-weight: 600;
            color: #0b0d15;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            white-space: nowrap;
        }
        .search-block button:hover {
            background: #ffde7a;
            transform: scale(1.02);
        }
        .feedback-section {
            background: #11161f;
            border: 1px solid #f0c94022;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            margin: 2.5rem 0 1.5rem;
        }
        .feedback-section h3 {
            margin-top: 0;
        }
        .rating-stars {
            display: flex;
            gap: 0.2rem;
            font-size: 2rem;
            color: #3a4050;
            cursor: pointer;
            margin: 0.6rem 0 1rem;
            flex-wrap: wrap;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f0c940;
            transform: scale(1.1);
        }
        .rating-stars i.active~i {
            color: #3a4050;
        }
        .comment-form textarea {
            width: 100%;
            background: #0b0d15;
            border: 1px solid #2a3344;
            border-radius: 12px;
            padding: 0.8rem 1rem;
            font-size: 0.95rem;
            color: #e0e6f0;
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
            transition: border-color 0.3s;
        }
        .comment-form textarea:focus {
            border-color: #f0c94088;
            outline: none;
        }
        .comment-form .btn-row {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            margin-top: 0.8rem;
        }
        .comment-form button {
            background: #f0c940;
            border: none;
            border-radius: 40px;
            padding: 0.55rem 1.6rem;
            font-weight: 600;
            color: #0b0d15;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
            font-size: 0.95rem;
        }
        .comment-form button:hover {
            background: #ffde7a;
            transform: scale(1.02);
        }
        .comment-form button.secondary {
            background: #2a3344;
            color: #c8d0dc;
        }
        .comment-form button.secondary:hover {
            background: #3a4860;
        }
        .score-display {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-wrap: wrap;
            margin: 0.4rem 0 0.8rem;
            font-size: 0.95rem;
        }
        .score-display .badge {
            background: #f0c94022;
            padding: 0.2rem 0.8rem;
            border-radius: 40px;
            color: #f0c940;
            font-weight: 600;
        }
        .sidebar-card {
            background: #11161f;
            border: 1px solid #f0c94022;
            border-radius: 16px;
            padding: 1.2rem 1.2rem 1.4rem;
            margin-bottom: 1.5rem;
        }
        .sidebar-card h4 {
            margin-top: 0;
            font-size: 1.1rem;
            border-bottom: 1px solid #f0c94022;
            padding-bottom: 0.4rem;
        }
        .sidebar-link-list {
            list-style: none;
            margin: 0.4rem 0 0;
        }
        .sidebar-link-list li {
            padding: 0.25rem 0;
            border-bottom: 1px solid #1a2230;
        }
        .sidebar-link-list li:last-child {
            border-bottom: none;
        }
        .sidebar-link-list a {
            font-size: 0.9rem;
            color: #c0c8da;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .sidebar-link-list a:hover {
            color: #f0c940;
        }
        .sidebar-link-list i {
            width: 1.1rem;
            color: #f0c94088;
            font-size: 0.8rem;
        }
        .update-badge {
            display: inline-block;
            background: #f0c94018;
            padding: 0.2rem 0.9rem;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #f0c940;
            border: 1px solid #f0c94033;
        }
        friend-link {
            display: block;
            margin-top: 2.5rem;
            padding: 1.2rem 0 0.8rem;
            border-top: 2px solid #f0c94033;
        }
        friend-link::before {
            content: "🔗 Friend Links";
            display: block;
            font-size: 1.1rem;
            font-weight: 700;
            color: #f0c940;
            margin-bottom: 0.6rem;
            letter-spacing: 0.02em;
        }
        .friend-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.2rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .friend-list li {
            margin: 0;
        }
        .friend-list a {
            font-size: 0.9rem;
            color: #b0b8cc;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .friend-list a:hover {
            color: #f0c940;
        }
        .site-footer {
            background: #0a0d15;
            border-top: 2px solid #f0c94022;
            padding: 1.2rem 1.5rem;
            text-align: center;
            font-size: 0.85rem;
            color: #6a7488;
            margin-top: 2rem;
        }
        .site-footer .copyright {
            letter-spacing: 0.02em;
        }
        .site-footer a {
            color: #b0b8cc;
        }
        .site-footer a:hover {
            color: #f0c940;
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
            .sidebar .sidebar-card {
                margin-bottom: 0;
            }
        }
        @media (max-width: 768px) {
            .site-header {
                padding: 0.5rem 1rem;
            }
            .header-inner {
                gap: 0.4rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .my-logo i {
                font-size: 1.3rem;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 0.5rem 0 0.2rem;
                gap: 0.2rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.5rem 1rem;
                border-radius: 8px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            h4 {
                font-size: 1.05rem;
            }
            .page-wrap {
                padding: 0.5rem 1rem 1.5rem;
            }
            .breadcrumb-wrap {
                padding: 0.4rem 1rem 0.1rem;
                font-size: 0.78rem;
            }
            .feedback-section {
                padding: 1.2rem 1rem;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
            .search-block {
                max-width: 100%;
                flex-wrap: wrap;
                border-radius: 16px;
                padding: 0.3rem;
            }
            .search-block input {
                padding: 0.5rem 0.8rem;
                font-size: 0.9rem;
                width: 100%;
            }
            .search-block button {
                width: 100%;
                justify-content: center;
                padding: 0.5rem;
                border-radius: 12px;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .featured-image {
                margin: 1rem 0;
            }
            .lead {
                font-size: 1.05rem;
                padding-left: 0.8rem;
            }
            friend-link .friend-list {
                flex-direction: column;
                gap: 0.2rem 0.6rem;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.25rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            .breadcrumb-wrap ol {
                gap: 0.2rem 0.3rem;
                font-size: 0.75rem;
            }
            .feedback-section {
                padding: 1rem 0.8rem;
            }
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        .text-glow {
            text-shadow: 0 0 30px #f0c94033;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
