        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0f1218;
            color: #e4e8ee;
            line-height: 1.75;
            padding: 0 1rem;
            max-width: 1280px;
            margin: 0 auto;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f0b34b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
            color: #f5f7fc;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 3px solid #f0b34b;
            padding-bottom: 0.65rem;
            margin-top: 1.2rem;
        }
        h2 {
            font-size: 1.9rem;
            border-left: 6px solid #f0b34b;
            padding-left: 1rem;
            margin-top: 2.8rem;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 2rem;
            color: #f0d9b5;
        }
        h4 {
            font-size: 1.2rem;
            margin-top: 1.4rem;
            color: #d4c5a9;
        }
        p {
            margin-bottom: 1.25rem;
            font-size: 1.05rem;
            letter-spacing: 0.01em;
        }
        ul,
        ol {
            margin: 1rem 0 1.5rem 1.8rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        strong {
            color: #f5d996;
        }
        hr {
            border: none;
            border-top: 1px solid #2c3240;
            margin: 2.5rem 0;
        }
        .container {
            flex: 1;
            padding: 1rem 0 3rem;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 0 0.8rem;
            border-bottom: 1px solid #2a3040;
            position: relative;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(145deg, #f0b34b, #d4922a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(240, 179, 75, 0.15);
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #f0b34b;
            font-size: 1.6rem;
        }
        .my-logo a {
            text-decoration: none;
            -webkit-text-fill-color: transparent;
            background: inherit;
            -webkit-background-clip: text;
            background-clip: text;
        }
        .my-logo a:hover {
            opacity: 0.9;
        }
        .nav-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #e4e8ee;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #1e2530;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.2rem 0.1rem;
            align-items: center;
        }
        .main-nav a {
            padding: 0.5rem 1.1rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #c8ceda;
            transition: all 0.25s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: #f0b34b;
            color: #0f1218;
            text-decoration: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            padding: 0.85rem 0 0.3rem;
            font-size: 0.9rem;
            color: #8892a4;
            list-style: none;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.7rem;
            color: #555e70;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #b0bbd0;
        }
        .breadcrumb a:hover {
            color: #f0b34b;
        }
        .breadcrumb .current {
            color: #f0b34b;
            font-weight: 600;
        }
        .search-block {
            background: #1a202b;
            border-radius: 14px;
            padding: 2rem 2rem 2.2rem;
            margin: 2rem 0 2.5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
            border: 1px solid #2c3444;
        }
        .search-block label {
            font-weight: 600;
            font-size: 1.15rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            color: #f0d9b5;
        }
        .search-block form {
            display: flex;
            flex: 1;
            flex-wrap: wrap;
            gap: 0.7rem;
            min-width: 200px;
        }
        .search-block input[type="text"] {
            flex: 1;
            padding: 0.75rem 1.2rem;
            border-radius: 40px;
            border: none;
            background: #0f1218;
            color: #e4e8ee;
            font-size: 1rem;
            border: 1px solid #2f384a;
            transition: border 0.25s;
            min-width: 140px;
        }
        .search-block input[type="text"]:focus {
            outline: none;
            border-color: #f0b34b;
        }
        .search-block button {
            background: #f0b34b;
            border: none;
            border-radius: 40px;
            padding: 0.75rem 1.8rem;
            font-weight: 700;
            font-size: 1rem;
            color: #0f1218;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-block button:hover {
            background: #ffc86a;
            transform: scale(1.02);
        }
        .featured-figure {
            margin: 2rem 0 2.5rem;
            text-align: center;
        }
        .featured-figure img {
            width: 100%;
            max-width: 1100px;
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
            border: 1px solid #2f384a;
        }
        .featured-figure figcaption {
            margin-top: 0.7rem;
            font-size: 0.95rem;
            color: #9aa5b8;
            font-style: italic;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.8rem 0 2.5rem;
            background: #161d27;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #2a3244;
        }
        .stats-table th {
            background: #1e2735;
            color: #f0d9b5;
            font-weight: 700;
            padding: 1rem 1.2rem;
            text-align: left;
            border-bottom: 2px solid #f0b34b;
        }
        .stats-table td {
            padding: 0.9rem 1.2rem;
            border-bottom: 1px solid #252e3e;
        }
        .stats-table tr:last-child td {
            border-bottom: none;
        }
        .stats-table tr:hover td {
            background: #1c2533;
        }
        .interaction-area {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 3rem 0 2rem;
            padding: 2rem 0;
            border-top: 1px solid #2a3244;
            border-bottom: 1px solid #2a3244;
        }
        .comment-box,
        .score-box {
            flex: 1 1 280px;
            background: #161d27;
            border-radius: 14px;
            padding: 1.8rem 2rem;
            border: 1px solid #2c3548;
        }
        .comment-box h3,
        .score-box h3 {
            margin-top: 0;
            font-size: 1.3rem;
            color: #f0d9b5;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .comment-box form,
        .score-box form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }
        .comment-box textarea,
        .score-box select {
            width: 100%;
            padding: 0.75rem 1rem;
            border-radius: 10px;
            border: 1px solid #2f384a;
            background: #0f1218;
            color: #e4e8ee;
            font-size: 0.95rem;
            resize: vertical;
            font-family: inherit;
        }
        .comment-box textarea:focus,
        .score-box select:focus {
            outline: none;
            border-color: #f0b34b;
        }
        .comment-box button,
        .score-box button {
            align-self: flex-start;
            background: #f0b34b;
            border: none;
            border-radius: 40px;
            padding: 0.7rem 2rem;
            font-weight: 700;
            font-size: 1rem;
            color: #0f1218;
            cursor: pointer;
            transition: background 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-box button:hover,
        .score-box button:hover {
            background: #ffc86a;
        }
        friend-link {
            display: block;
            padding: 1.8rem 0 1rem;
            margin-top: 2rem;
            border-top: 1px solid #2a3244;
        }
        friend-link::before {
            content: "🔗 Friends & Resources";
            display: block;
            font-size: 1.2rem;
            font-weight: 700;
            color: #f0d9b5;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 0.6rem 0.3rem 0;
            padding: 0.35rem 1.2rem;
            background: #1a212e;
            border-radius: 30px;
            font-size: 0.95rem;
            color: #c8ceda;
            border: 1px solid #2a3244;
            transition: all 0.2s;
        }
        friend-link a:hover {
            background: #f0b34b;
            color: #0f1218;
            border-color: #f0b34b;
            text-decoration: none;
        }
        .site-footer {
            padding: 1.8rem 0 2.5rem;
            text-align: center;
            border-top: 1px solid #1e2533;
            margin-top: 2rem;
            font-size: 0.9rem;
            color: #7a859b;
        }
        .site-footer .copyright {
            font-size: 0.85rem;
            margin-top: 0.5rem;
            color: #5f6a80;
        }
        @media (max-width: 820px) {
            body {
                padding: 0 0.75rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .nav-toggle {
                display: inline-block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #161d27;
                padding: 1.2rem 0.8rem;
                border-radius: 14px;
                margin-top: 0.8rem;
                gap: 0.3rem;
                border: 1px solid #2c3548;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 1.2rem;
                width: 100%;
                border-radius: 10px;
            }
            .search-block {
                padding: 1.5rem 1.2rem;
                flex-direction: column;
                align-items: stretch;
            }
            .search-block form {
                flex-direction: column;
            }
            .interaction-area {
                flex-direction: column;
                gap: 1.5rem;
            }
            .stats-table {
                font-size: 0.85rem;
            }
            .stats-table th,
            .stats-table td {
                padding: 0.6rem 0.7rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
        }
        .highlight-box {
            background: #1a212e;
            border-left: 6px solid #f0b34b;
            padding: 1.5rem 2rem;
            border-radius: 0 12px 12px 0;
            margin: 1.8rem 0;
        }
        .emoji-lg {
            font-size: 1.3rem;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #7a859b;
            margin-top: 1rem;
            text-align: right;
            border-top: 1px dashed #252e3e;
            padding-top: 1rem;
        }
        .toc {
            background: #161d27;
            border-radius: 14px;
            padding: 1.8rem 2.2rem;
            margin: 2rem 0 2.5rem;
            border: 1px solid #2c3548;
        }
        .toc summary {
            font-size: 1.3rem;
            font-weight: 700;
            color: #f0d9b5;
            cursor: pointer;
            padding: 0.2rem 0;
        }
        .toc ol {
            margin: 1rem 0 0.2rem 1.4rem;
            columns: 2 260px;
        }
        .toc li {
            margin-bottom: 0.4rem;
            break-inside: avoid;
        }
        .toc a {
            color: #c8ceda;
        }
        .toc a:hover {
            color: #f0b34b;
        }
        @media (max-width: 600px) {
            .toc ol {
                columns: 1;
            }
            .highlight-box {
                padding: 1rem 1.2rem;
            }
        }
