* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: #f5f3ef;
            color: #1e1e1e;
            line-height: 1.7;
            font-size: 16px;
            padding: 0 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
            border-radius: 28px;
            padding: 20px 24px 12px;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0 16px;
            border-bottom: 2px solid #eae6df;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            text-decoration: none;
            color: #c4452b;
            background: linear-gradient(145deg, #c4452b, #a1321d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }
        .my-logo span {
            font-weight: 300;
            color: #2b2b2b;
            -webkit-text-fill-color: #2b2b2b;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #2b2b2b;
            cursor: pointer;
            padding: 4px 10px;
        }
        nav {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            text-decoration: none;
            color: #2b2b2b;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 10px;
            border-radius: 40px;
            transition: background 0.25s, color 0.25s;
        }
        nav a:hover {
            background: #c4452b;
            color: #fff;
        }
        .breadcrumb {
            width: 100%;
            margin-top: 8px;
            font-size: 0.82rem;
            color: #6b6b6b;
            padding: 6px 0 2px;
            border-top: 1px solid #f0ede8;
        }
        .breadcrumb a {
            color: #c4452b;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hero {
            margin: 28px 0 32px;
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            background: #1e1e1e;
            min-height: 340px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hero img {
            width: 100%;
            height: auto;
            min-height: 340px;
            object-fit: cover;
            opacity: 0.55;
            display: block;
        }
        .hero-text {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 24px;
            text-align: center;
            color: #fff;
            background: rgba(0, 0, 0, 0.3);
        }
        .hero-text h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            max-width: 800px;
        }
        .hero-text p {
            font-size: 1.2rem;
            margin-top: 12px;
            opacity: 0.92;
            max-width: 640px;
        }
        .hero-badge {
            display: inline-block;
            background: #c4452b;
            padding: 6px 20px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.85rem;
            margin-top: 16px;
            letter-spacing: 0.3px;
        }
        .search-section {
            background: #f8f6f2;
            padding: 28px 24px;
            border-radius: 20px;
            margin: 32px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
            justify-content: center;
        }
        .search-section form {
            display: flex;
            flex: 1 1 360px;
            max-width: 560px;
            border-radius: 60px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        }
        .search-section input {
            flex: 1;
            padding: 14px 20px;
            border: none;
            font-size: 1rem;
            outline: none;
            background: #fff;
        }
        .search-section button {
            background: #c4452b;
            color: #fff;
            border: none;
            padding: 0 28px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
        }
        .search-section button:hover {
            background: #a1321d;
        }
        .content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 32px 0;
        }
        .main {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        .main h2 {
            font-size: 2.0rem;
            font-weight: 700;
            margin: 40px 0 16px;
            color: #1e1e1e;
            border-left: 6px solid #c4452b;
            padding-left: 18px;
        }
        .main h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #2b2b2b;
        }
        .main h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: #3d3d3d;
        }
        .main p {
            margin-bottom: 18px;
            color: #2e2e2e;
        }
        .main ul,
        .main ol {
            margin: 12px 0 20px 24px;
        }
        .main li {
            margin-bottom: 8px;
        }
        .main strong {
            color: #c4452b;
        }
        .main .highlight-box {
            background: #f8f6f2;
            padding: 24px 28px;
            border-radius: 18px;
            margin: 28px 0;
            border-left: 6px solid #c4452b;
        }
        .main .emoji-big {
            font-size: 2rem;
            line-height: 1;
        }
        .main img {
            max-width: 100%;
            border-radius: 16px;
            margin: 24px 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        }
        .sidebar-card {
            background: #f8f6f2;
            border-radius: 18px;
            padding: 20px 18px;
            margin-bottom: 24px;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 12px;
            border-bottom: 2px solid #e0dbd2;
            padding-bottom: 8px;
        }
        .sidebar-card a {
            display: block;
            padding: 7px 0;
            color: #2b2b2b;
            text-decoration: none;
            border-bottom: 1px solid #eae6df;
            font-size: 0.92rem;
            transition: color 0.2s;
        }
        .sidebar-card a:hover {
            color: #c4452b;
            padding-left: 4px;
        }
        .sidebar-card .tag {
            display: inline-block;
            background: #c4452b10;
            color: #c4452b;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 2px 10px;
            border-radius: 30px;
            margin-left: 6px;
        }
        .interaction-area {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin: 36px 0;
            padding: 28px 0;
            border-top: 2px solid #eae6df;
            border-bottom: 2px solid #eae6df;
        }
        .rating-box,
        .comment-box {
            flex: 1 1 280px;
            background: #f8f6f2;
            padding: 24px 22px;
            border-radius: 20px;
        }
        .rating-box h3,
        .comment-box h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .star-group {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #e0d5c5;
            cursor: pointer;
            margin: 8px 0 12px;
        }
        .star-group .star {
            transition: color 0.2s;
        }
        .star-group .star:hover,
        .star-group .star.active {
            color: #f5b342;
        }
        .rating-box form,
        .comment-box form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .rating-box input,
        .comment-box input,
        .comment-box textarea {
            padding: 10px 14px;
            border: 1px solid #dcd6cc;
            border-radius: 40px;
            font-size: 0.95rem;
            outline: none;
            background: #fff;
            width: 100%;
        }
        .comment-box textarea {
            border-radius: 16px;
            min-height: 80px;
            resize: vertical;
        }
        .rating-box button,
        .comment-box button {
            background: #c4452b;
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            align-self: flex-start;
        }
        .rating-box button:hover,
        .comment-box button:hover {
            background: #a1321d;
        }
        .rating-display {
            margin-top: 10px;
            font-weight: 600;
            color: #2b2b2b;
        }
        footer {
            margin-top: 48px;
            padding: 28px 0 16px;
            border-top: 2px solid #eae6df;
        }
        friend-link {
            display: block;
            padding: 16px 0;
            font-size: 0.95rem;
        }
        friend-link a {
            color: #c4452b;
            text-decoration: none;
            font-weight: 500;
            margin: 0 6px;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            color: #6b6b6b;
            font-size: 0.85rem;
            padding-top: 12px;
            border-top: 1px solid #f0ede8;
            text-align: center;
        }
        .copyright strong {
            color: #2b2b2b;
        }
        @media (max-width: 860px) {
            .container {
                padding: 12px 14px 8px;
                border-radius: 18px;
            }
            .content {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .hero-text h1 {
                font-size: 2rem;
            }
            .hero-text p {
                font-size: 1rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 12px 0 6px;
                gap: 6px;
            }
            nav.open {
                display: flex;
            }
            .nav-toggle {
                display: block;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .search-section {
                padding: 18px 14px;
            }
            .search-section form {
                flex: 1 1 100%;
            }
            .interaction-area {
                flex-direction: column;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 6px;
            }
            .container {
                padding: 8px 10px 6px;
            }
            .hero-text h1 {
                font-size: 1.6rem;
            }
            .hero {
                min-height: 220px;
            }
            .hero img {
                min-height: 220px;
            }
            .main h2 {
                font-size: 1.5rem;
                padding-left: 12px;
            }
            .main h3 {
                font-size: 1.2rem;
            }
            .rating-box,
            .comment-box {
                padding: 16px 14px;
            }
            .sidebar-card {
                padding: 14px 12px;
            }
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .text-small {
            font-size: 0.85rem;
            color: #6b6b6b;
        }
        .updated-badge {
            display: inline-block;
            background: #eae6df;
            padding: 4px 16px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 500;
            color: #2b2b2b;
        }
        .mt-2 {
            margin-top: 12px;
        }
        .gap-1 {
            gap: 8px;
        }
