*,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --bg-dark: #0a0e1a;
            --bg-mid: #111826;
            --bg-light: #1a2335;
            --card: #16202e;
            --accent: #f5a623;
            --accent-2: #f7d045;
            --danger: #e74c3c;
            --text: #e8edf5;
            --text-muted: #97a3b5;
            --border-glow: rgba(245, 166, 35, .25);
            --radius: 12px;
            --shadow: 0 8px 28px rgba(0, 0, 0, .4);
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            background: var(--bg-dark);
            color: var(--text);
            line-height: 1.75;
            font-size: 16px;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        a {
            color: var(--accent-2);
            text-decoration: none;
            transition: color .2s ease, border-color .2s ease;
        }
        a:hover {
            color: var(--accent);
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }
        .site-header {
            background: linear-gradient(135deg, #0f1523 0%, #0a0f1a 100%);
            border-bottom: 1px solid #1e2a3a;
            padding: 13px 0;
            position: sticky;
            top: 0;
            z-index: 500;
            backdrop-filter: blur(8px);
        }
        .header-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
        }
        .my-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.9rem;
            font-weight: 700;
            letter-spacing: .5px;
            text-transform: uppercase;
            color: var(--accent-2);
            text-shadow: 0 0 18px rgba(245, 166, 35, .5);
            cursor: pointer;
            transition: transform .25s;
        }
        .my-logo i {
            font-size: 2.1rem;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .header-tag {
            font-size: .7rem;
            color: var(--text-muted);
            display: block;
            letter-spacing: 1.5px;
            text-transform: none;
            font-family: 'Inter', sans-serif;
        }
        .nav-links {
            display: flex;
            gap: 4px 20px;
            flex-wrap: wrap;
            align-items: center;
            justify-content: flex-end;
        }
        .nav-links a {
            font-size: .9rem;
            font-weight: 500;
            padding: 6px 4px;
            position: relative;
            color: var(--text);
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: var(--accent);
            text-decoration: none;
            border-bottom: 2px solid var(--accent);
        }
        .nav-search-mob {
            display: none;
        }
        .mob-toggle {
            display: none;
            background: transparent;
            border: 1px solid #2a3850;
            color: var(--text);
            width: 44px;
            height: 40px;
            border-radius: 8px;
            font-size: 1.3rem;
            cursor: pointer;
            align-items: center;
            justify-content: center;
        }
        .breadcrumb-wrap {
            background: #0d1322;
            border-bottom: 1px solid #1b2438;
            padding: 12px 0;
            font-size: .85rem;
        }
        .breadcrumb-list {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 6px;
        }
        .breadcrumb-list li+li::before {
            content: "/";
            margin: 0 6px;
            color: #5a677c;
        }
        .breadcrumb-list li:last-child {
            color: var(--accent-2);
        }
        .breadcrumb-list a {
            color: var(--text-muted);
        }
        .breadcrumb-list a:hover {
            color: var(--accent);
        }
        .hero-section {
            padding: 45px 0 10px;
            background: radial-gradient(circle at 60% 20%, #1d2c46 0%, #0a0f1a 75%);
        }
        .eyebrow {
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: .75rem;
            color: var(--accent);
            font-weight: 600;
        }
        h1 {
            font-family: 'Rajdhani', sans-serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            color: #fff;
            line-height: 1.1;
            letter-spacing: -.5px;
            text-shadow: 0 2px 20px rgba(0, 0, 0, .25);
            margin: 10px 0 12px;
        }
        .h1-underline {
            width: 110px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), transparent);
            border-radius: 2px;
        }
        .meta-line {
            font-size: .9rem;
            color: var(--text-muted);
            margin-top: 15px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px 28px;
            align-items: center;
        }
        .meta-line i {
            color: var(--accent);
            margin-right: 6px;
        }
        .two-col {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            padding: 25px 0 50px;
        }
        .content-area {
            display: flow-root;
            min-width: 0;
            flex: 1 1 auto;
        }
        .side-area {
            min-width: 0;
        }
        .section-card {
            background: var(--bg-mid);
            border: 1px solid #1e2c3d;
            border-radius: var(--radius);
            padding: 28px 24px;
            margin: 25px 0;
            box-shadow: var(--shadow);
            transition: box-shadow .3s;
        }
        .section-card:hover {
            box-shadow: 0 10px 31px rgba(0, 0, 0, .5), 0 0 0 1px rgba(245, 166, 35, .08);
        }
        h2 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.6rem;
            color: var(--accent-2);
            margin: 15px 0 10px;
            border-left: 4px solid var(--accent);
            padding-left: 16px;
            line-height: 1.3;
        }
        h3 {
            font-size: 1.15rem;
            color: #fff;
            font-weight: 600;
            margin: 20px 0 10px;
        }
        h4 {
            font-size: 1rem;
            color: var(--accent);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .5px;
        }
        p {
            margin-bottom: 1rem;
        }
        .lineSpace {
            margin: 1.2rem 0;
        }
        .block-emoji {
            font-size: 1.2rem;
            font-style: normal;
            margin-right: 3px;
        }
        .callout {
            background: #1a2437;
            border-left: 4px solid var(--accent);
            border-radius: 4px 12px 12px 4px;
            padding: 16px 18px;
            margin: 20px 0;
            font-size: .95rem;
        }
        .callout.warning {
            border-left-color: var(--danger);
        }
        .img-frame {
            border-radius: var(--radius);
            overflow: hidden;
            background: #101724;
            margin: 20px 0;
            position: relative;
            line-height: 0;
        }
        .img-frame img {
            width: 100%;
            object-fit: cover;
            transition: transform .4s ease;
        }
        .img-frame:hover img {
            transform: scale(1.015);
        }
        .img-desc {
            font-size: .8rem;
            color: var(--text-muted);
            padding: 12px 8px;
            background: #111a29;
            margin: 0;
            text-align: center;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: .88rem;
            margin: 20px 0;
        }
        th {
            background: #1c2740;
            color: #f0c864;
            text-align: left;
            padding: 10px 12px;
        }
        td {
            border-bottom: 1px solid #1a2540;
            padding: 9px 12px;
            color: #d0d8e5;
        }
        tr:hover td {
            background: #1c2337;
        }
        .widget {
            background: var(--bg-mid);
            border: 1px solid #1f2b3d;
            border-radius: 16px;
            padding: 24px 18px;
            margin: 30px 0;
        }
        .searchForm {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .searchForm input {
            flex: 1 1 220px;
            padding: 12px 16px;
            border-radius: 30px;
            border: 1px solid #2c3b50;
            background: #0d1420;
            color: var(--text);
        }
        .btn {
            background: var(--accent);
            color: #0a0e1a;
            font-weight: 700;
            border: none;
            padding: 12px 22px;
            border-radius: 30px;
            cursor: pointer;
            transition: background .2s ease, transform .2s ease;
            font-size: .9rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .btn:hover {
            background: var(--accent-2);
            color: #111;
            transform: translateY(-2px);
        }
        .commentBox,
        .scoreBox {
            border-top: 1px solid #243245;
            margin-top: 18px;
            padding-top: 16px;
        }
        textarea {
            width: 100%;
            background: #0e1523;
            border: 1px solid #2a3c4f;
            border-radius: 12px;
            color: var(--text);
            padding: 14px;
            resize: vertical;
            min-height: 90px;
        }
        select {
            background: #0e1523;
            color: var(--text);
            border: 1px solid #2a3c4f;
            padding: 9px 14px;
            border-radius: 8px;
        }
        ul.check-list {
            list-style: none;
            padding-left: 5px;
        }
        ul.check-list li {
            padding: 5px 0 5px 24px;
            position: relative;
        }
        ul.check-list li::before {
            content: "🏁";
            position: absolute;
            left: 0;
            top: 4px;
            font-size: .9rem;
            opacity: .8;
        }
        .star-widget {
            display: inline-flex;
            flex-direction: row-reverse;
            gap: 2px;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .star-widget input {
            display: none;
        }
        .star-widget label {
            color: #3d4d63;
            transition: transform .1s;
        }
        .star-widget input:checked~label,
        .star-widget label:hover,
        .star-widget label:hover~label {
            color: var(--accent);
            text-shadow: 0 0 12px rgba(245, 166, 35, .6);
        }
        friend-link {
            display: block;
            background: #131f2c;
            border: 1px solid #273947;
            border-radius: 14px;
            padding: 16px 24px;
            margin: 30px 0 5px;
            font-size: .9rem;
        }
        friend-link a {
            font-weight: 500;
            margin: 0 6px;
        }
        .site-footer {
            background: #0b101d;
            border-top: 1px solid #202b3f;
            padding: 28px 0 35px;
            margin-top: 30px;
            font-size: .85rem;
            color: var(--text-muted);
        }
        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            justify-content: space-between;
        }
        .copyright {
            text-align: center;
            margin-top: 36px;
            border-top: 1px solid #1b2634;
            padding-top: 20px;
            width: 100%;
        }
        .toc-box {
            background: #111a28;
            border-radius: 14px;
            border: 1px solid #203349;
            padding: 18px 22px;
            margin-bottom: 25px;
        }
        .toc-title {
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
        }
        .toc-box ol {
            padding-left: 20px;
            margin-top: 6px;
            columns: 1;
            gap: 20px;
        }
        @media (min-width:650px) {
            .toc-box ol {
                columns: 2;
            }
        }
        .toc-box a {
            color: #b7c0d3;
            font-size: .9rem;
        }
        @media (max-width: 860px) {
            .header-top {
                flex-wrap: wrap;
            }
            .nav-links {
                display: flex;
                flex-basis: 100%;
                flex-direction: column;
                max-height: 0;
                overflow: hidden;
                transition: max-height .3s ease-out;
                width: 100%;
                background: #0d1320;
                border-radius: 10px;
                padding: 0 8px;
            }
            .nav-links.open {
                max-height: 600px;
                padding: 10px 8px;
            }
            .mob-toggle {
                display: flex;
            }
            .search-desk {
                display: none;
            }
            .two-col {
                grid-template-columns: 1fr;
                gap: 15px;
                padding: 10px 0 25px;
            }
            .section-card {
                padding: 18px;
            }
        }
        @media (min-width: 960px) {
            .two-col {
                grid-template-columns: 1fr minmax(260px, 340px);
            }
        }
        .rating-display:empty::before {
            content: "–";
            color: var(--text-muted);
        }
        .highlight-yellow {
            background: linear-gradient(120deg, rgba(245, 166, 35, .18) 0%, rgba(245, 166, 35, .03) 70%);
            padding: 2px 8px;
            border-radius: 6px;
        }
