        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #fbf9f4;
            color: #1e1e2a;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            padding: 0 1rem;
        }
        a {
            color: #c75b2c;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #9a411f;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 0 0 0.75rem 0;
            color: #1e1e2a;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 2.0rem;
            font-weight: 700;
            margin: 2.8rem 0 1rem 0;
            color: #2b2b3e;
            border-bottom: 4px solid #f0c27a;
            padding-bottom: 0.4rem;
            letter-spacing: -0.01em;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 2.0rem 0 0.75rem 0;
            color: #3a3a4e;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 1.5rem 0 0.5rem 0;
            color: #4a4a5e;
        }
        p {
            margin: 0 0 1.2rem 0;
            font-size: 1.05rem;
            color: #2d2d3a;
        }
        ul,
        ol {
            margin: 0 0 1.5rem 2rem;
            font-size: 1.05rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .lead {
            font-size: 1.25rem;
            font-weight: 400;
            color: #3d3d50;
            line-height: 1.8;
        }
        .text-muted {
            color: #6b6b7a;
            font-size: 0.95rem;
        }
        .emoji {
            font-size: 1.3em;
            line-height: 1;
            margin-right: 0.15em;
        }
        .site-header {
            padding: 1.2rem 0;
            border-bottom: 2px solid #ece6da;
            margin-bottom: 1.8rem;
            background: #fffcf7;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #e67e22, #d35400);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.03em;
            line-height: 1.2;
            transition: opacity 0.2s;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            -webkit-text-fill-color: #5a5a6a;
            color: #5a5a6a;
            display: block;
            letter-spacing: 0.02em;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #d35400;
            border-radius: 8px;
            padding: 0.4rem 0.8rem;
            font-size: 1.6rem;
            color: #d35400;
            cursor: pointer;
            line-height: 1;
            transition: background 0.2s, color 0.2s;
        }
        .nav-toggle:hover {
            background: #d35400;
            color: #fff;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.8rem;
            list-style: none;
            margin: 0;
            padding: 0;
            align-items: center;
        }
        .nav-menu li a {
            display: inline-block;
            padding: 0.4rem 0.9rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #2d2d3a;
            background: transparent;
            transition: background 0.2s, color 0.2s, transform 0.1s;
        }
        .nav-menu li a:hover {
            background: #f0c27a;
            color: #1e1e2a;
            text-decoration: none;
            transform: translateY(-1px);
        }
        .nav-menu li a.active {
            background: #d35400;
            color: #fff;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.6rem;
            list-style: none;
            padding: 0.6rem 0 0.2rem 0;
            margin: 0 0 0.8rem 0;
            font-size: 0.9rem;
            color: #7a7a8a;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #b0b0be;
            font-weight: 300;
        }
        .breadcrumb a {
            color: #c75b2c;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hero-figure {
            margin: 2rem 0 2.5rem 0;
            border-radius: 16px;
            overflow: hidden;
            background: #e8dfd1;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }
        .hero-figure img {
            width: 100%;
            max-height: 460px;
            object-fit: cover;
            border-radius: 16px;
        }
        .hero-figure figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.95rem;
            color: #4a4a5e;
            background: #fffcf7;
            border-top: 1px solid #ece6da;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.2rem;
            margin: 2rem 0 2.5rem 0;
        }
        .feature-card {
            background: #fffcf7;
            border-radius: 16px;
            padding: 1.5rem 1.2rem;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            border: 1px solid #ece6da;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
        }
        .feature-card i {
            font-size: 2rem;
            color: #d35400;
            margin-bottom: 0.6rem;
            display: inline-block;
        }
        .feature-card h4 {
            margin: 0.2rem 0 0.4rem 0;
            font-size: 1.1rem;
        }
        .feature-card p {
            font-size: 0.95rem;
            margin: 0;
            color: #5a5a6a;
        }
        .values-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.8rem 0 2.2rem 0;
            background: #fffcf7;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
            font-size: 0.98rem;
        }
        .values-table thead {
            background: #d35400;
            color: #fff;
        }
        .values-table th {
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .values-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #ece6da;
        }
        .values-table tbody tr:hover {
            background: #f8f2e8;
        }
        .values-table .rarity-legend {
            display: inline-block;
            font-size: 0.75rem;
            background: #f0c27a;
            padding: 0.1rem 0.6rem;
            border-radius: 20px;
            font-weight: 600;
            color: #1e1e2a;
        }
        .form-section {
            background: #fffcf7;
            border-radius: 20px;
            padding: 2rem 1.8rem;
            margin: 2.5rem 0;
            border: 1px solid #ece6da;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
        }
        .form-section h3 {
            margin-top: 0;
            border-bottom: 2px solid #f0c27a;
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            font-size: 0.95rem;
            color: #2d2d3a;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #e0d8ca;
            border-radius: 10px;
            font-size: 1rem;
            background: #fff;
            transition: border-color 0.2s, box-shadow 0.2s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #d35400;
            box-shadow: 0 0 0 3px rgba(211, 84, 0, 0.12);
            outline: none;
        }
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        .btn {
            display: inline-block;
            padding: 0.7rem 1.8rem;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
            background: #d35400;
            color: #fff;
        }
        .btn:hover {
            background: #b84700;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(211, 84, 0, 0.25);
        }
        .btn-secondary {
            background: #f0c27a;
            color: #1e1e2a;
        }
        .btn-secondary:hover {
            background: #e5b064;
            box-shadow: 0 6px 20px rgba(240, 194, 122, 0.3);
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #d0c8b8;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5a623;
        }
        .comment-item {
            padding: 1rem 1.2rem;
            background: #f8f4ee;
            border-radius: 12px;
            margin-bottom: 1rem;
            border-left: 4px solid #f0c27a;
        }
        .comment-item strong {
            color: #2b2b3e;
        }
        .comment-item .date {
            font-size: 0.8rem;
            color: #8a8a9a;
        }
        .site-footer {
            margin-top: 3.5rem;
            padding: 2.5rem 0 1.8rem 0;
            border-top: 2px solid #ece6da;
            background: #fffcf7;
            border-radius: 20px 20px 0 0;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 2rem;
        }
        .footer-inner h4 {
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
            color: #2b2b3e;
        }
        .footer-inner ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-inner ul li {
            margin-bottom: 0.4rem;
        }
        .footer-inner ul li a {
            font-size: 0.95rem;
            color: #5a5a6a;
        }
        .footer-inner ul li a:hover {
            color: #c75b2c;
        }
        .friend-link {
            display: block;
            padding: 0.8rem 1.2rem;
            background: #f8f4ee;
            border-radius: 12px;
            margin: 1.2rem 0 1.8rem 0;
            font-size: 0.95rem;
            border: 1px solid #ece6da;
        }
        .friend-link a {
            font-weight: 500;
            margin: 0 0.6rem 0 0.2rem;
        }
        .copyright {
            text-align: center;
            color: #7a7a8a;
            font-size: 0.9rem;
            padding-top: 1.5rem;
            border-top: 1px solid #ece6da;
            margin-top: 1.5rem;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.6rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fffcf7;
                padding: 1rem 0.5rem;
                border-radius: 12px;
                border: 1px solid #ece6da;
                margin-top: 0.5rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                width: 100%;
                padding: 0.6rem 1rem;
            }
            .feature-grid {
                grid-template-columns: 1fr 1fr;
            }
            .values-table {
                font-size: 0.85rem;
            }
            .values-table th,
            .values-table td {
                padding: 0.5rem 0.6rem;
            }
            .form-section {
                padding: 1.5rem 1rem;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .star-rating {
                font-size: 1.5rem;
            }
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.8rem;
        }
        .last-updated {
            display: inline-block;
            background: #f0c27a;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 500;
            color: #1e1e2a;
        }
        .inline-link-icon {
            margin: 0 0.2rem;
        }
        .anchor-offset {
            scroll-margin-top: 90px;
        }
