        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f8f7f2;
            color: #1e2a2f;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #c44536;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #8a2a1f;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #f7f3e9 0%, #efe9db 100%);
            border-bottom: 3px solid #d9cdb3;
            padding: 16px 0 12px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px 20px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #2b3a42;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #2b3a42;
        }
        .my-logo i {
            color: #c44536;
            font-size: 2rem;
        }
        .my-logo span {
            background: linear-gradient(135deg, #c44536, #e67e22);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #2b3a42;
            border-radius: 8px;
            padding: 8px 12px;
            font-size: 1.4rem;
            color: #2b3a42;
            cursor: pointer;
            transition: background 0.2s ease;
        }
        .nav-toggle:hover {
            background: rgba(203, 69, 54, 0.08);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 8px 16px;
            flex-wrap: wrap;
        }
        .nav-menu a {
            font-weight: 600;
            font-size: 0.95rem;
            padding: 6px 12px;
            border-radius: 40px;
            color: #2b3a42;
            transition: background 0.2s ease, color 0.2s ease;
        }
        .nav-menu a:hover {
            background: #c44536;
            color: #fff;
            text-decoration: none;
        }
        .nav-menu a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .breadcrumb {
            padding: 14px 0 6px;
            font-size: 0.88rem;
            color: #5f6b72;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
            list-style: none;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #b0a690;
            font-size: 1.2rem;
            margin-right: 6px;
        }
        .breadcrumb a {
            color: #5f6b72;
        }
        .breadcrumb a:hover {
            color: #c44536;
        }
        .breadcrumb .active {
            color: #2b3a42;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #f0eadc 0%, #e3d9c4 100%);
            border-radius: 28px;
            padding: 40px 40px 48px;
            margin: 28px 0 40px;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "🍬";
            position: absolute;
            right: 20px;
            bottom: 10px;
            font-size: 8rem;
            opacity: 0.12;
            pointer-events: none;
            line-height: 1;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            letter-spacing: -0.02em;
            color: #1e2a2f;
            max-width: 780px;
            line-height: 1.2;
        }
        .hero h1 i {
            color: #c44536;
        }
        .hero p {
            font-size: 1.2rem;
            color: #3f4e56;
            max-width: 700px;
            margin-top: 16px;
            font-weight: 400;
        }
        .hero .meta-line {
            display: flex;
            flex-wrap: wrap;
            gap: 18px 30px;
            margin-top: 24px;
            font-size: 0.95rem;
            color: #5a6a72;
        }
        .hero .meta-line i {
            margin-right: 6px;
            color: #c44536;
        }
        .content-layout {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px 48px;
            margin: 30px 0 50px;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        .sidebar-widget {
            background: #fff;
            border-radius: 20px;
            padding: 24px 22px;
            margin-bottom: 28px;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
            border: 1px solid #eae5d8;
        }
        .sidebar-widget h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 14px;
            color: #2b3a42;
            border-left: 4px solid #c44536;
            padding-left: 12px;
        }
        .sidebar-widget ul {
            list-style: none;
        }
        .sidebar-widget li {
            padding: 6px 0;
            border-bottom: 1px dashed #ece7db;
        }
        .sidebar-widget li:last-child {
            border-bottom: none;
        }
        .sidebar-widget a {
            font-weight: 500;
            display: block;
            padding: 4px 0;
        }
        .sidebar-widget a i {
            margin-right: 8px;
            color: #c44536;
            font-size: 0.8rem;
        }
        .main-content section {
            margin-bottom: 48px;
        }
        .main-content h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #1e2a2f;
            margin: 40px 0 16px;
            letter-spacing: -0.01em;
            border-bottom: 3px solid #e3d9c4;
            padding-bottom: 10px;
        }
        .main-content h2 i {
            color: #c44536;
            margin-right: 10px;
        }
        .main-content h3 {
            font-size: 1.45rem;
            font-weight: 700;
            color: #2b3a42;
            margin: 28px 0 12px;
        }
        .main-content h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #3f4e56;
            margin: 20px 0 8px;
        }
        .main-content p {
            margin-bottom: 16px;
            color: #2d3a41;
        }
        .main-content ul,
        .main-content ol {
            margin: 12px 0 20px 24px;
        }
        .main-content li {
            margin-bottom: 8px;
        }
        .main-content .highlight-box {
            background: #f0eadc;
            border-left: 6px solid #c44536;
            padding: 18px 24px;
            border-radius: 12px;
            margin: 24px 0;
            font-size: 1.05rem;
        }
        .main-content .highlight-box i {
            color: #c44536;
            margin-right: 10px;
        }
        .featured-img-wrap {
            margin: 28px 0 32px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            background: #fff;
            padding: 8px;
        }
        .featured-img-wrap img {
            border-radius: 14px;
            width: 100%;
            object-fit: cover;
        }
        .featured-img-wrap figcaption {
            padding: 12px 12px 6px;
            font-size: 0.9rem;
            color: #5f6b72;
            text-align: center;
            font-style: italic;
        }
        .rarity-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0 30px;
            font-size: 0.95rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
        }
        .rarity-table th {
            background: #2b3a42;
            color: #fff;
            font-weight: 600;
            padding: 14px 16px;
            text-align: left;
        }
        .rarity-table td {
            padding: 12px 16px;
            border-bottom: 1px solid #ece7db;
            background: #fff;
        }
        .rarity-table tr:last-child td {
            border-bottom: none;
        }
        .rarity-table .rarity-tag {
            display: inline-block;
            padding: 2px 14px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.8rem;
        }
        .rarity-legendary {
            background: #f7d44a;
            color: #4f3b00;
        }
        .rarity-rare {
            background: #c4a4e6;
            color: #2d1b4a;
        }
        .rarity-uncommon {
            background: #a8d5e2;
            color: #143240;
        }
        .rarity-common {
            background: #d9d0bd;
            color: #3d3428;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin: 20px 0 30px;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 12px 18px;
            border: 2px solid #d9cdb3;
            border-radius: 50px;
            font-size: 1rem;
            background: #fff;
            outline: none;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        .search-form input:focus {
            border-color: #c44536;
            box-shadow: 0 0 0 4px rgba(196, 69, 54, 0.12);
        }
        .search-form button {
            padding: 12px 28px;
            background: #c44536;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s ease, transform 0.15s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #a83227;
            transform: translateY(-2px);
        }
        .comment-box,
        .score-box {
            background: #fff;
            border-radius: 20px;
            padding: 28px 30px;
            margin: 20px 0 30px;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
            border: 1px solid #eae5d8;
        }
        .comment-box h3,
        .score-box h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-box textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #d9cdb3;
            border-radius: 14px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 110px;
            outline: none;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        .comment-box textarea:focus {
            border-color: #c44536;
            box-shadow: 0 0 0 4px rgba(196, 69, 54, 0.08);
        }
        .comment-box .form-actions,
        .score-box .form-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 14px;
        }
        .btn-primary {
            padding: 10px 32px;
            background: #c44536;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s ease, transform 0.15s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-primary:hover {
            background: #a83227;
            transform: translateY(-2px);
        }
        .btn-secondary {
            padding: 10px 32px;
            background: #eae5d8;
            color: #2b3a42;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s ease, transform 0.15s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-secondary:hover {
            background: #d9cdb3;
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            color: #d9cdb3;
            cursor: pointer;
            transition: color 0.2s ease;
            margin: 6px 0 10px;
        }
        .star-rating i {
            transition: color 0.2s ease, transform 0.15s ease;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #f7b731;
            transform: scale(1.1);
        }
        .site-footer {
            background: #2b3a42;
            color: #d9d0bd;
            padding: 40px 0 30px;
            margin-top: 60px;
            border-radius: 28px 28px 0 0;
        }
        .site-footer .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 36px 48px;
        }
        .site-footer h4 {
            color: #f0eadc;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 14px;
        }
        .site-footer a {
            color: #b8ad98;
        }
        .site-footer a:hover {
            color: #f0eadc;
        }
        .site-footer ul {
            list-style: none;
        }
        .site-footer li {
            padding: 4px 0;
        }
        .site-footer .copyright {
            border-top: 1px solid #3f4e56;
            margin-top: 28px;
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
            color: #8d9ba3;
            grid-column: 1 / -1;
        }
        friend-link {
            display: block;
            background: #364851;
            border-radius: 12px;
            padding: 16px 20px;
            margin-top: 12px;
            font-size: 0.95rem;
            line-height: 1.8;
        }
        friend-link a {
            color: #d9d0bd;
            font-weight: 500;
        }
        friend-link a:hover {
            color: #f7d44a;
        }
        @media (max-width: 1024px) {
            .content-layout {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .sidebar {
                order: 2;
            }
            .site-footer .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 12px;
                border-top: 2px solid #d9cdb3;
                margin-top: 8px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 12px 16px;
                border-radius: 12px;
                font-size: 1rem;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .hero {
                padding: 28px 20px 32px;
            }
            .hero p {
                font-size: 1rem;
            }
            .main-content h2 {
                font-size: 1.6rem;
            }
            .main-content h3 {
                font-size: 1.2rem;
            }
            .site-footer .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .rarity-table {
                font-size: 0.8rem;
            }
            .rarity-table th,
            .rarity-table td {
                padding: 8px 10px;
            }
            .comment-box,
            .score-box {
                padding: 20px 16px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .breadcrumb {
                font-size: 0.78rem;
            }
            .search-form input {
                min-width: 120px;
                padding: 10px 14px;
            }
            .search-form button {
                padding: 10px 18px;
                font-size: 0.9rem;
            }
            .star-rating {
                font-size: 1.6rem;
            }
        }
        :target {
            scroll-margin-top: 90px;
        }
