* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #faf7f2;
            color: #2d2a24;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #c44536;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #8b2c1a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 16px;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #1e1b16 0%, #2c2720 100%);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f5e6d3;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 8px rgba(196, 69, 54, 0.3);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #f5e6d3;
        }
        .my-logo span {
            color: #c44536;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            display: block;
            color: #b8a99a;
            letter-spacing: 1px;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
        }
        .nav-menu a {
            color: #e8ddd2;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-menu a:hover {
            color: #f5e6d3;
            border-bottom-color: #c44536;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #f5e6d3;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px 8px;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: #efe9e0;
            padding: 12px 0;
            font-size: 0.9rem;
            color: #5e5548;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: #b8a99a;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #7a3e2e;
        }
        .breadcrumb .current {
            color: #2d2a24;
            font-weight: 600;
        }
        .hero-image {
            margin: 32px 0 24px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            background: #e8ddd2;
        }
        .hero-image img {
            width: 100%;
            aspect-ratio: 1200/630;
            object-fit: cover;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #1e1b16;
            margin: 40px 0 12px;
            line-height: 1.2;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #2c2720;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 4px solid #c44536;
            display: inline-block;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #3d352c;
            margin: 32px 0 12px;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #4a4036;
            margin: 24px 0 10px;
        }
        p {
            margin: 0 0 18px;
            font-size: 1.05rem;
        }
        .lead {
            font-size: 1.2rem;
            color: #3d352c;
            font-weight: 400;
            border-left: 4px solid #c44536;
            padding-left: 20px;
            margin: 24px 0 32px;
        }
        .highlight {
            background: #f5ebe0;
            padding: 2px 8px;
            border-radius: 6px;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.6rem;
            margin-right: 6px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin: 28px 0;
        }
        .stat-card {
            background: #fff;
            padding: 20px 16px;
            border-radius: 16px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            text-align: center;
            border: 1px solid #e8ddd2;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
        }
        .stat-card .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #c44536;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #5e5548;
            margin-top: 4px;
        }
        .blockquote-interview {
            background: #f5ebe0;
            border-left: 6px solid #c44536;
            padding: 20px 24px;
            border-radius: 12px;
            margin: 28px 0;
            font-style: italic;
            font-size: 1.05rem;
        }
        .blockquote-interview cite {
            display: block;
            margin-top: 12px;
            font-weight: 600;
            font-style: normal;
            color: #2c2720;
        }
        .tip-box {
            background: #e6f0ea;
            border-radius: 16px;
            padding: 20px 24px;
            margin: 24px 0;
            border-left: 6px solid #2a7a5e;
        }
        .tip-box strong {
            color: #1a5c45;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }
        th {
            background: #2c2720;
            color: #f5e6d3;
            padding: 14px 16px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 12px 16px;
            border-bottom: 1px solid #efe9e0;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #faf7f2;
        }
        .search-section {
            background: #fffbf7;
            border-radius: 20px;
            padding: 32px;
            margin: 40px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #e8ddd2;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #e0d5c8;
            border-radius: 50px;
            font-size: 1rem;
            background: #fff;
            transition: border-color 0.2s;
            outline: none;
        }
        .search-form input:focus {
            border-color: #c44536;
        }
        .search-form button {
            padding: 14px 32px;
            background: #c44536;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-form button:hover {
            background: #a33326;
            transform: scale(1.02);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0;
        }
        @media (max-width:768px) {
            .interaction-grid {
                grid-template-columns: 1fr;
            }
        }
        .comment-box,
        .rating-box {
            background: #fffbf7;
            border-radius: 20px;
            padding: 28px 28px 32px;
            border: 1px solid #e8ddd2;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
            border-bottom: none;
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e0d5c8;
            border-radius: 14px;
            font-size: 1rem;
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
            transition: border-color 0.2s;
            outline: none;
            background: #fff;
        }
        .comment-form textarea:focus {
            border-color: #c44536;
        }
        .comment-form input[type="text"] {
            width: 100%;
            padding: 12px 18px;
            border: 2px solid #e0d5c8;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.2s;
            background: #fff;
        }
        .comment-form input[type="text"]:focus {
            border-color: #c44536;
        }
        .comment-form .field-group {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 16px;
        }
        .comment-form button,
        .rating-form button {
            padding: 12px 28px;
            background: #c44536;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #a33326;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 6px;
            margin: 16px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2.2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.15s, transform 0.1s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b342;
            transform: scale(1.05);
        }
        .rating-form .current-score {
            margin-top: 12px;
            font-weight: 600;
            color: #2c2720;
        }
        .inline-links {
            background: #f5ebe0;
            border-radius: 16px;
            padding: 20px 24px;
            margin: 28px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
        }
        .inline-links a {
            font-weight: 500;
            padding: 4px 0;
            border-bottom: 1px dotted #c44536;
        }
        .inline-links a:hover {
            border-bottom-style: solid;
            text-decoration: none;
        }
        footer {
            background: #1e1b16;
            color: #d4c9bc;
            padding: 40px 0 24px;
            margin-top: 56px;
        }
        footer a {
            color: #d4c9bc;
        }
        footer a:hover {
            color: #f5e6d3;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 28px;
        }
        @media (max-width:768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        footer .my-logo {
            font-size: 1.4rem;
        }
        .friend-link {
            display: block;
            padding: 8px 0;
            font-weight: 400;
            border-bottom: 1px solid #3d352c;
        }
        .friend-link:hover {
            border-bottom-color: #c44536;
            text-decoration: none;
        }
        .copyright {
            border-top: 1px solid #3d352c;
            padding-top: 20px;
            margin-top: 12px;
            font-size: 0.9rem;
            text-align: center;
            color: #b8a99a;
        }
        @media (max-width:768px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 8px;
                padding: 16px 0 8px;
                border-top: 1px solid #3d352c;
                margin-top: 8px;
            }
            #nav-toggle:checked+.hamburger+.nav-menu {
                display: flex;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .hero-image {
                margin: 20px 0 16px;
            }
            .search-section {
                padding: 20px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .inline-links {
                flex-direction: column;
                gap: 8px;
            }
        }
        @media (max-width:480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .text-center {
            text-align: center;
        }
        .tag {
            display: inline-block;
            background: #efe9e0;
            padding: 2px 14px;
            border-radius: 50px;
            font-size: 0.8rem;
            color: #5e5548;
            margin: 2px 4px 2px 0;
        }
        .updated-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #e8ddd2;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            color: #2c2720;
            margin: 16px 0 24px;
        }
        .updated-badge i {
            color: #c44536;
        }
