        *,
        *::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, sans-serif;
            background: #0b0e14;
            color: #e8e6e3;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #f0b34b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffd966;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin-bottom: 0.5rem;
            color: #f5d98a;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-top: 2.8rem;
            margin-bottom: 1rem;
            color: #e9c46a;
            border-bottom: 2px solid #2a2f3a;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
            color: #d4a840;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
            color: #c99b3c;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .text-muted {
            color: #9a9ea8;
        }
        .text-small {
            font-size: 0.875rem;
        }
        .site-header {
            background: #13181f;
            border-bottom: 1px solid #2a2f3a;
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 0 20px;
        }
        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
        }
        .my-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: #f5d98a;
            letter-spacing: -0.02em;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo:hover {
            color: #ffd966;
            text-decoration: none;
        }
        .my-logo i {
            font-size: 1.8rem;
            color: #d4a840;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 8px;
        }
        .nav-list li a {
            padding: 8px 14px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #c8cbd0;
            transition: background 0.2s ease, color 0.2s ease;
        }
        .nav-list li a:hover {
            background: #1f2630;
            color: #f5d98a;
            text-decoration: none;
        }
        .nav-list li a.active {
            background: #1f2630;
            color: #f5d98a;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }
        .hamburger span {
            display: block;
            width: 26px;
            height: 3px;
            background: #e8e6e3;
            border-radius: 4px;
            transition: 0.25s ease;
        }
        .hamburger.open span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        .hamburger.open span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.open span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }
        .breadcrumb {
            background: #0f131a;
            padding: 10px 0;
            border-bottom: 1px solid #1e232c;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 0.85rem;
            color: #9a9ea8;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 12px;
            color: #555;
        }
        .breadcrumb a {
            color: #b8bcc6;
        }
        .breadcrumb a:hover {
            color: #f0b34b;
        }
        .hero-image {
            margin: 2rem 0 1.5rem;
            border-radius: 12px;
            overflow: hidden;
            background: #1a2028;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
        }
        .hero-image img {
            width: 100%;
            min-height: 280px;
            object-fit: cover;
        }
        .hero-caption {
            font-size: 0.85rem;
            color: #9a9ea8;
            padding: 8px 16px 12px;
            font-style: italic;
        }
        .info-box {
            background: #1a2028;
            border-left: 4px solid #f0b34b;
            padding: 1.25rem 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 1.8rem 0;
        }
        .info-box p:last-child {
            margin-bottom: 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.2rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: #171d26;
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            border: 1px solid #2a2f3a;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        }
        .stat-card .number {
            font-size: 2.4rem;
            font-weight: 800;
            color: #f5d98a;
            display: block;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #b0b4be;
            margin-top: 4px;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            color: #d4d6db;
        }
        input,
        textarea,
        select {
            width: 100%;
            padding: 12px 16px;
            background: #171d26;
            border: 1px solid #2f3542;
            border-radius: 8px;
            color: #e8e6e3;
            font-size: 1rem;
            transition: border 0.2s ease;
        }
        input:focus,
        textarea:focus,
        select:focus {
            outline: none;
            border-color: #f0b34b;
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: #d4a840;
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s ease, transform 0.15s ease;
        }
        .btn:hover {
            background: #e9c46a;
            transform: scale(1.02);
        }
        .btn:active {
            transform: scale(0.98);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #d4a840;
            color: #d4a840;
        }
        .btn-outline:hover {
            background: #d4a840;
            color: #0b0e14;
        }
        .comment-box,
        .score-box {
            background: #13181f;
            border: 1px solid #2a2f3a;
            border-radius: 12px;
            padding: 1.5rem 2rem;
            margin: 2rem 0;
        }
        .score-stars {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            margin: 0.5rem 0 1rem;
        }
        .score-stars i {
            transition: color 0.2s ease, transform 0.15s ease;
        }
        .score-stars i:hover,
        .score-stars i.active {
            color: #f5d98a;
            transform: scale(1.15);
        }
        friend-link {
            display: block;
            padding: 0.75rem 1rem;
            background: #171d26;
            border-radius: 8px;
            border: 1px solid #2a2f3a;
            margin: 0.4rem 0;
            transition: background 0.2s ease;
        }
        friend-link a {
            font-weight: 500;
        }
        friend-link:hover {
            background: #1f2630;
        }
        .friend-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 0.8rem;
            margin: 1.5rem 0;
        }
        .site-footer {
            background: #0d1117;
            border-top: 1px solid #1e232c;
            padding: 3rem 20px 2rem;
            margin-top: 4rem;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
        }
        .footer-bottom {
            max-width: 1200px;
            margin: 2rem auto 0;
            padding-top: 1.5rem;
            border-top: 1px solid #1e232c;
            text-align: center;
            font-size: 0.85rem;
            color: #9a9ea8;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin: 1.5rem 0;
        }
        .search-form input {
            flex: 1;
        }
        .search-form .btn {
            flex-shrink: 0;
        }
        .toc {
            background: #13181f;
            border: 1px solid #2a2f3a;
            border-radius: 12px;
            padding: 1.5rem 2rem;
            margin: 2rem 0;
        }
        .toc ol {
            list-style: none;
            counter-reset: toc-counter;
        }
        .toc ol li {
            counter-increment: toc-counter;
            margin: 0.4rem 0;
        }
        .toc ol li::before {
            content: counter(toc-counter) ". ";
            color: #f0b34b;
            font-weight: 600;
            margin-right: 6px;
        }
        .toc a {
            color: #c8cbd0;
        }
        .toc a:hover {
            color: #f5d98a;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header-inner {
                height: 56px;
            }
            .nav-list {
                display: none;
                position: absolute;
                top: 56px;
                left: 0;
                right: 0;
                background: #13181f;
                flex-direction: column;
                padding: 12px 20px 20px;
                border-bottom: 1px solid #2a2f3a;
                gap: 4px;
            }
            .nav-list.open {
                display: flex;
            }
            .hamburger {
                display: flex;
            }
            .hero-image img {
                min-height: 180px;
            }
            .comment-box,
            .score-box {
                padding: 1rem 1.2rem;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .breadcrumb ol {
                font-size: 0.75rem;
                gap: 4px 8px;
            }
            .breadcrumb ol li+li::before {
                margin-right: 8px;
            }
            .search-form {
                flex-direction: column;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .stat-card .number {
                font-size: 2rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mt-3 {
            margin-top: 3rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .flex {
            display: flex;
        }
        .flex-wrap {
            flex-wrap: wrap;
        }
        .gap-1 {
            gap: 1rem;
        }
        .align-center {
            align-items: center;
        }
        .justify-between {
            justify-content: space-between;
        }
        .text-center {
            text-align: center;
        }
        .hidden {
            display: none;
        }
        @media print {
            .site-header,
            .breadcrumb,
            .search-form,
            .comment-box,
            .score-box,
            .site-footer {
                display: none;
            }
            body {
                background: #fff;
                color: #111;
            }
            h1,
            h2,
            h3,
            h4 {
                color: #111;
            }
            a {
                color: #0055aa;
            }
            .info-box {
                border-left-color: #111;
                background: #f5f5f5;
            }
        }
