*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f5f0e1;
            color: #1c1a1a;
            line-height: 1.7;
            padding: 0 1rem;
            max-width: 1280px;
            margin: 0 auto;
        }
        a {
            color: #740001;
            text-decoration: none;
            transition: color .25s;
        }
        a:hover,
        a:focus {
            color: #d3a625;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        i,
        em {
            font-style: italic;
        }
        strong,
        b {
            font-weight: 700;
            color: #2c1b0e;
        }
        header {
            background: linear-gradient(145deg, #0d1b2a 0%, #1a2a3a 100%);
            padding: 1.2rem 2rem;
            border-radius: 0 0 24px 24px;
            margin-bottom: 1.8rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
            box-shadow: 0 8px 32px rgba(0, 0, 0, .25);
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -.02em;
            color: #d3a625;
            text-shadow: 0 2px 12px rgba(211, 166, 37, .3);
            font-family: 'Georgia', 'Times New Roman', serif;
            transition: transform .3s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: .75rem;
            display: block;
            color: #b8b0a0;
            font-weight: 400;
            letter-spacing: .02em;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 2rem;
            color: #d3a625;
            cursor: pointer;
            padding: .2rem .6rem;
            border-radius: 8px;
            transition: background .2s;
        }
        .hamburger:hover {
            background: rgba(211, 166, 37, .15);
        }
        @media (max-width:768px) {
            .hamburger {
                display: block;
            }
            nav#main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #0d1b2a;
                padding: 1.2rem 0 .6rem 0;
                border-top: 1px solid #2a3a4a;
                margin-top: .8rem;
            }
            nav#main-nav.open {
                display: flex;
            }
            nav#main-nav a {
                padding: .6rem 1rem;
                border-bottom: 1px solid #1f2e3e;
            }
        }
        nav#main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: .2rem 0.8rem;
            align-items: center;
        }
        nav#main-nav a {
            color: #e8e0d0;
            font-weight: 500;
            padding: .3rem .7rem;
            border-radius: 40px;
            font-size: .92rem;
            transition: background .25s, color .25s;
            white-space: nowrap;
        }
        nav#main-nav a:hover,
        nav#main-nav a:focus {
            background: rgba(211, 166, 37, .15);
            color: #d3a625;
            text-decoration: none;
        }
        .nav-cta {
            background: #d3a625;
            color: #0d1b2a !important;
            font-weight: 700;
        }
        .nav-cta:hover {
            background: #e8b830 !important;
            color: #0d1b2a !important;
        }
        .breadcrumb {
            background: transparent;
            padding: .6rem 0 .4rem 0;
            font-size: .85rem;
            color: #5a4a3a;
            display: flex;
            flex-wrap: wrap;
            gap: .3rem .6rem;
            margin-bottom: .6rem;
            border-bottom: 1px solid #ddd6c8;
        }
        .breadcrumb a {
            color: #740001;
        }
        .breadcrumb a:hover {
            color: #d3a625;
        }
        .breadcrumb span {
            color: #8a7a6a;
        }
        .container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.2rem;
            margin: 2rem 0;
        }
        @media (max-width:960px) {
            .container {
                grid-template-columns: 1fr;
                gap: 1.8rem;
            }
        }
        main {
            min-width: 0;
        }
        aside.sidebar {
            background: #f0eadc;
            padding: 1.6rem 1.4rem;
            border-radius: 20px;
            border: 1px solid #e0d6c4;
            box-shadow: 0 4px 16px rgba(0, 0, 0, .05);
            height: fit-content;
            position: sticky;
            top: 1rem;
        }
        @media (max-width:960px) {
            aside.sidebar {
                position: static;
            }
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #0d1b2a;
            line-height: 1.2;
            margin: 1rem 0 1.6rem 0;
            letter-spacing: -.02em;
            border-left: 6px solid #d3a625;
            padding-left: 1.2rem;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #2c1b0e;
            margin: 2.2rem 0 1rem 0;
            border-bottom: 2px solid #d3a625;
            padding-bottom: .4rem;
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 600;
            color: #3a2a1a;
            margin: 1.8rem 0 .8rem 0;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #4a3a2a;
            margin: 1.2rem 0 .5rem 0;
        }
        p {
            margin-bottom: 1.2rem;
            color: #2a221a;
        }
        ul,
        ol {
            margin: .6rem 0 1.2rem 1.6rem;
        }
        li {
            margin-bottom: .4rem;
        }
        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: .8rem 2rem;
            color: #6a5a4a;
            font-size: .9rem;
            margin: .4rem 0 1.8rem 0;
            padding: .6rem 0;
            border-top: 1px dashed #d0c8b8;
            border-bottom: 1px dashed #d0c8b8;
        }
        .article-meta i {
            margin-right: .3rem;
            color: #d3a625;
        }
        .hero-img-wrap {
            margin: 1.6rem 0 2rem 0;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
            background: #1a1a2e;
            position: relative;
        }
        .hero-img-wrap img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
            display: block;
        }
        .hero-img-wrap figcaption {
            background: rgba(13, 27, 42, .8);
            color: #f0eadc;
            padding: .6rem 1.2rem;
            font-size: .9rem;
            text-align: center;
        }
        .search-form,
        .comment-form,
        .score-form {
            background: #faf6ee;
            padding: 1.4rem 1.6rem;
            border-radius: 16px;
            border: 1px solid #e0d6c4;
            margin: 1.8rem 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
        }
        .search-form label,
        .comment-form label,
        .score-form label {
            font-weight: 600;
            display: block;
            margin-bottom: .3rem;
            color: #2c1b0e;
        }
        .search-form input[type="text"],
        .comment-form textarea,
        .comment-form input[type="text"],
        .score-form select {
            width: 100%;
            padding: .7rem 1rem;
            border: 1px solid #ccc4b4;
            border-radius: 10px;
            font-size: 1rem;
            background: #fffdf9;
            transition: border .3s, box-shadow .3s;
            font-family: inherit;
        }
        .search-form input[type="text"]:focus,
        .comment-form textarea:focus,
        .comment-form input[type="text"]:focus,
        .score-form select:focus {
            outline: none;
            border-color: #d3a625;
            box-shadow: 0 0 0 3px rgba(211, 166, 37, .2);
        }
        .search-form button,
        .comment-form button,
        .score-form button {
            background: #740001;
            color: #fff;
            border: none;
            padding: .7rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background .3s, transform .2s;
            margin-top: .6rem;
            width: auto;
        }
        .search-form button:hover,
        .comment-form button:hover,
        .score-form button:hover {
            background: #a00a0a;
            transform: translateY(-2px);
        }
        .search-form button i,
        .comment-form button i,
        .score-form button i {
            margin-right: .4rem;
        }
        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: .8rem;
        }
        .form-row>* {
            flex: 1 1 200px;
        }
        blockquote {
            background: #f0eadc;
            border-left: 5px solid #d3a625;
            padding: 1.2rem 1.8rem;
            margin: 1.6rem 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #2c1b0e;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
        }
        blockquote strong {
            color: #740001;
        }
        .interview-badge {
            display: inline-block;
            background: #740001;
            color: #fff;
            padding: .2rem 1rem;
            border-radius: 40px;
            font-size: .75rem;
            font-weight: 700;
            letter-spacing: .04em;
            text-transform: uppercase;
            margin-bottom: .4rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 1.2rem;
            margin: 1.6rem 0;
        }
        .stat-card {
            background: #fffdf9;
            border: 1px solid #e0d6c4;
            border-radius: 16px;
            padding: 1.2rem 1rem;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
            transition: transform .2s, box-shadow .2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
        }
        .stat-card .stat-number {
            font-size: 2.4rem;
            font-weight: 800;
            color: #740001;
            line-height: 1.1;
        }
        .stat-card .stat-label {
            font-size: .85rem;
            color: #5a4a3a;
            font-weight: 500;
        }
        .sidebar-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .sidebar-links li {
            margin-bottom: .4rem;
            border-bottom: 1px solid #e0d6c4;
            padding: .4rem 0;
        }
        .sidebar-links a {
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: .5rem;
        }
        .sidebar-links a i {
            color: #d3a625;
            width: 1.1rem;
            text-align: center;
        }
        .sidebar-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #0d1b2a;
            margin-bottom: .8rem;
            border-bottom: 2px solid #d3a625;
            padding-bottom: .3rem;
        }
        friend-link {
            display: block;
            background: #e8e0d2;
            padding: 1.4rem 1.8rem;
            border-radius: 16px;
            margin: 2.4rem 0 1.2rem 0;
            border: 1px solid #d0c8b8;
        }
        friend-link .fl-title {
            font-weight: 700;
            font-size: 1rem;
            color: #2c1b0e;
            margin-bottom: .6rem;
            letter-spacing: .02em;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: .4rem 1.6rem;
        }
        friend-link .fl-list a {
            color: #5a3a2a;
            font-weight: 500;
            font-size: .92rem;
        }
        friend-link .fl-list a:hover {
            color: #740001;
        }
        footer {
            background: #0d1b2a;
            color: #c8c0b0;
            padding: 2rem 2rem 1.4rem;
            border-radius: 24px 24px 0 0;
            margin-top: 2.8rem;
            font-size: .9rem;
            text-align: center;
        }
        footer a {
            color: #d3a625;
        }
        footer a:hover {
            color: #e8c840;
        }
        footer .copyright {
            border-top: 1px solid #2a3a4a;
            padding-top: 1.2rem;
            margin-top: 1.2rem;
            font-size: .82rem;
            color: #9a9288;
        }
        @media (max-width:600px) {
            h1 {
                font-size: 1.8rem;
                padding-left: .8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            header {
                padding: .8rem 1rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb {
                font-size: .75rem;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .sidebar {
                padding: 1rem;
            }
            .search-form,
            .comment-form,
            .score-form {
                padding: 1rem;
            }
        }
        @media (max-width:420px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .form-row {
                flex-direction: column;
            }
        }
        .tag {
            display: inline-block;
            background: #e8e0d2;
            padding: .1rem .8rem;
            border-radius: 40px;
            font-size: .75rem;
            font-weight: 600;
            color: #4a3a2a;
            margin-right: .3rem;
        }
        .emoji-lg {
            font-size: 1.6rem;
            line-height: 1;
        }
        .spell-highlight {
            background: linear-gradient(to right, #faf6ee, #f0eadc);
            padding: .2rem .6rem;
            border-radius: 6px;
            font-weight: 600;
            color: #740001;
        }
        .back-to-top {
            display: inline-block;
            margin-top: 1rem;
            font-weight: 600;
            color: #740001;
        }
        .back-to-top i {
            margin-right: .3rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #faf6ee;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: .6rem 1rem;
            border-bottom: 1px solid #e0d6c4;
            text-align: left;
        }
        th {
            background: #740001;
            color: #fff;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f0eadc;
        }
