        *,
        *::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, 'Helvetica Neue', Arial, sans-serif;
            background: #f8f6f2;
            color: #1a1a2e;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #9a7209;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #0d0d1a;
            margin-top: 0;
        }
        h1 {
            font-size: clamp(2rem, 5vw, 3.2rem);
            margin-bottom: 1.2rem;
            letter-spacing: -0.01em;
        }
        h2 {
            font-size: clamp(1.5rem, 3.5vw, 2.2rem);
            margin-top: 2.8rem;
            margin-bottom: 1rem;
            border-bottom: 3px solid #e0c9a0;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: clamp(1.2rem, 2.5vw, 1.6rem);
            margin-top: 2rem;
            margin-bottom: 0.8rem;
            color: #2d2d44;
        }
        h4 {
            font-size: clamp(1rem, 2vw, 1.25rem);
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
            color: #3d3d5c;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(145deg, #0d0d1a 0%, #1a1a2e 100%);
            color: #f5f0e8;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f7d875, #e0b030);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(231, 190, 60, 0.15);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f7d875;
            font-size: 1.6rem;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
            -webkit-text-fill-color: inherit;
        }
        .my-logo a:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f7d875;
            color: #f7d875;
            font-size: 1.4rem;
            padding: 0.4rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(247, 216, 117, 0.15);
        }
        .nav-menu {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #e8e0d0;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.92rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .nav-menu a:hover,
        .nav-menu a:focus {
            background: rgba(247, 216, 117, 0.12);
            color: #f7d875;
            text-decoration: none;
        }
        .nav-menu a.active {
            background: rgba(247, 216, 117, 0.18);
            color: #f7d875;
        }
        .breadcrumb {
            padding: 0.8rem 0 0.2rem 0;
            font-size: 0.85rem;
            color: #aaaac0;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #8888aa;
        }
        .breadcrumb a {
            color: #d4c8b0;
        }
        .breadcrumb a:hover {
            color: #f7d875;
        }
        .breadcrumb .current {
            color: #f0e0c0;
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(135deg, #0d0d1a 0%, #1f1f3a 50%, #0d0d1a 100%);
            color: #f5f0e8;
            padding: 2.5rem 0 3rem 0;
            margin-bottom: 1.5rem;
            border-bottom: 4px solid #e0c080;
        }
        .hero h1 {
            color: #f7e8c0;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 780px;
            color: #d8d0c8;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem 2.5rem;
            margin-top: 1.2rem;
            font-size: 0.92rem;
            color: #b0a898;
        }
        .hero-meta i {
            color: #f7d875;
            margin-right: 0.4rem;
        }
        .last-updated {
            font-weight: 600;
            color: #e0d0b0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 2.5rem;
            padding: 1.5rem 0 3rem 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        .widget {
            background: #ffffff;
            border-radius: 16px;
            padding: 1.5rem 1.2rem;
            margin-bottom: 1.8rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            border: 1px solid #e8e0d8;
        }
        .widget h3 {
            margin-top: 0;
            font-size: 1.1rem;
            border-bottom: 2px solid #e0c9a0;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
            color: #1a1a2e;
        }
        .widget ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .widget li {
            margin-bottom: 0.6rem;
            padding: 0.2rem 0;
        }
        .widget li a {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.4rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .widget li a:hover {
            background: #f5f0e8;
            text-decoration: none;
        }
        .widget li a i {
            color: #b8860b;
            width: 1.2rem;
            text-align: center;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin: 1.2rem 0;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.7rem 1rem;
            border: 2px solid #d8d0c8;
            border-radius: 10px;
            font-size: 1rem;
            background: #fcfcfc;
            transition: border 0.3s, box-shadow 0.3s;
            min-width: 0;
        }
        .search-form input[type="text"]:focus {
            outline: none;
            border-color: #b8860b;
            box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
        }
        .search-form button {
            padding: 0.7rem 1.4rem;
            background: #b8860b;
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
        }
        .search-form button:hover {
            background: #9a7209;
        }
        .search-form button:active {
            transform: scale(0.97);
        }
        .interaction-area {
            background: #ffffff;
            border-radius: 16px;
            padding: 1.8rem 1.5rem;
            margin: 2.5rem 0 1.5rem 0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #e8e0d8;
        }
        .interaction-area h2 {
            margin-top: 0;
            border-bottom: 3px solid #e0c9a0;
            padding-bottom: 0.5rem;
        }
        .comment-form,
        .score-form {
            margin-top: 1.2rem;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #d8d0c8;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            transition: border 0.3s;
        }
        .comment-form textarea:focus {
            outline: none;
            border-color: #b8860b;
            box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
        }
        .comment-form .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 0.8rem;
            align-items: center;
        }
        .comment-form input[type="text"] {
            flex: 1;
            min-width: 160px;
            padding: 0.6rem 1rem;
            border: 2px solid #d8d0c8;
            border-radius: 10px;
            font-size: 0.95rem;
        }
        .comment-form input[type="text"]:focus {
            outline: none;
            border-color: #b8860b;
        }
        .comment-form button,
        .score-form button {
            padding: 0.6rem 1.5rem;
            background: #b8860b;
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
        }
        .comment-form button:hover,
        .score-form button:hover {
            background: #9a7209;
        }
        .comment-form button:active,
        .score-form button:active {
            transform: scale(0.97);
        }
        .score-form .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.3rem;
            margin: 0.6rem 0;
        }
        .score-form .star-rating input {
            display: none;
        }
        .score-form .star-rating label {
            font-size: 1.8rem;
            color: #d0c8b8;
            cursor: pointer;
            transition: color 0.2s, transform 0.1s;
        }
        .score-form .star-rating label:hover,
        .score-form .star-rating label:hover~label {
            color: #f7c948;
        }
        .score-form .star-rating input:checked~label {
            color: #f7c948;
        }
        friend-link {
            display: block;
            padding: 1.5rem 0 0.8rem 0;
        }
        friend-link ul {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.8rem;
            list-style: none;
            padding: 0;
            margin: 0.6rem 0 0 0;
        }
        friend-link li a {
            color: #b8860b;
            font-weight: 500;
            padding: 0.2rem 0;
        }
        friend-link li a:hover {
            color: #9a7209;
        }
        .site-footer {
            background: #0d0d1a;
            color: #b0a898;
            padding: 2rem 0 1.5rem 0;
            margin-top: 2rem;
            border-top: 4px solid #e0c080;
        }
        .site-footer .copyright {
            font-size: 0.88rem;
            text-align: center;
            padding-top: 1.2rem;
            border-top: 1px solid #2a2a40;
            margin-top: 1rem;
            color: #8888aa;
        }
        .site-footer .copyright strong {
            color: #d0c8b0;
        }
        @media (max-width: 860px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: 2;
            }
            .main-content {
                order: 1;
            }
        }
        @media (max-width: 680px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #15152a;
                padding: 0.8rem 0.5rem;
                border-radius: 12px;
                margin-top: 0.5rem;
                border: 1px solid #2a2a50;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                width: 100%;
                padding: 0.7rem 1rem;
            }
            .header-inner {
                position: relative;
            }
            .hero {
                padding: 1.6rem 0 2rem 0;
            }
            .hero p {
                font-size: 1rem;
            }
            .hero-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .interaction-area {
                padding: 1.2rem 1rem;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .comment-form input[type="text"] {
                min-width: auto;
                width: 100%;
            }
            .score-form .star-rating label {
                font-size: 1.5rem;
            }
            friend-link ul {
                flex-direction: column;
                gap: 0.4rem;
            }
        }
        @media (min-width: 681px) {
            .nav-menu {
                display: flex !important;
            }
            .nav-toggle {
                display: none !important;
            }
        }
        .feature-box {
            background: #fcf9f4;
            border-left: 4px solid #b8860b;
            padding: 1.2rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .feature-box strong {
            color: #b8860b;
        }
        .stat-highlight {
            display: inline-block;
            background: #0d0d1a;
            color: #f7d875;
            padding: 0.1rem 0.8rem;
            border-radius: 6px;
            font-weight: 700;
            font-size: 0.95em;
        }
        .img-wrapper {
            margin: 1.8rem 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
        }
        .img-wrapper figcaption {
            padding: 0.8rem 1rem;
            background: #f5f0e8;
            font-size: 0.88rem;
            color: #555;
            text-align: center;
            font-style: italic;
        }
        .two-col-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.4rem 1.8rem;
        }
        @media (max-width: 540px) {
            .two-col-list {
                grid-template-columns: 1fr;
            }
        }
        .emoji-bullet {
            list-style: none;
            padding-left: 0;
        }
        .emoji-bullet li {
            padding-left: 1.8rem;
            position: relative;
        }
        .emoji-bullet li::before {
            position: absolute;
            left: 0;
            top: 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        .table-wrap table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        .table-wrap th,
        .table-wrap td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e0d8d0;
        }
        .table-wrap th {
            background: #0d0d1a;
            color: #f7e8c0;
            font-weight: 600;
        }
        .table-wrap tr:nth-child(even) {
            background: #faf6f0;
        }
        .table-wrap tr:hover {
            background: #f0e8dc;
        }
        .btn-top {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.4rem 1rem;
            background: #0d0d1a;
            color: #f7d875;
            border-radius: 8px;
            font-size: 0.85rem;
            margin-top: 0.5rem;
            transition: background 0.2s;
        }
        .btn-top:hover {
            background: #1a1a2e;
            color: #f7e8a0;
            text-decoration: none;
        }
