* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f5f3ee;
            color: #1e1e1e;
            line-height: 1.7;
            padding: 0 16px;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            background: #fffcf9;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
            border-radius: 28px;
            padding: 20px 24px 32px;
        }
        header {
            padding: 12px 0 8px;
            border-bottom: 2px solid #f0e6d8;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #c0392b, #e67e22);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #e67e22;
            font-size: 2rem;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #c0392b;
            border-radius: 10px;
            padding: 6px 12px;
            font-size: 1.6rem;
            color: #c0392b;
            cursor: pointer;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
            list-style: none;
            align-items: center;
        }
        .nav-menu li a {
            text-decoration: none;
            color: #3d2c1f;
            font-weight: 600;
            font-size: 0.98rem;
            padding: 6px 2px;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-menu li a:hover {
            border-bottom-color: #c0392b;
            color: #c0392b;
        }
        .breadcrumb {
            width: 100%;
            padding: 10px 0 6px;
            font-size: 0.88rem;
            color: #7a6a5a;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #b85c3a;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #a08674;
        }
        .hero-img {
            margin: 20px 0 16px;
            border-radius: 24px;
            overflow: hidden;
            background: #e8ddd0;
            position: relative;
        }
        .hero-img img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            max-height: 420px;
        }
        .hero-img .caption {
            padding: 10px 18px;
            background: rgba(0, 0, 0, 0.6);
            color: #f5ede4;
            font-size: 0.9rem;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            color: #2b1b0e;
            margin: 20px 0 8px;
            letter-spacing: -0.3px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #3d2415;
            margin: 40px 0 12px;
            border-left: 6px solid #c0392b;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #4d3222;
            margin: 28px 0 10px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #5c3f2e;
            margin: 20px 0 8px;
        }
        p {
            margin-bottom: 16px;
            font-size: 1.05rem;
            color: #2d241c;
        }
        .highlight {
            background: #fef0d2;
            padding: 2px 8px;
            border-radius: 6px;
            font-weight: 600;
        }
        .desi-tag {
            color: #c0392b;
            font-weight: 700;
        }
        .emoji-big {
            font-size: 1.4rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0 28px;
            border-radius: 16px;
            border: 1px solid #ece3d9;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.98rem;
            background: #fdfaf7;
        }
        th {
            background: #d9c6b4;
            color: #1f140e;
            padding: 12px 14px;
            text-align: left;
            font-weight: 700;
        }
        td {
            padding: 10px 14px;
            border-bottom: 1px solid #ece3d9;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f7efe7;
        }
        .search-box {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0 30px;
            background: #f7f0e9;
            padding: 16px 20px;
            border-radius: 60px;
            align-items: center;
        }
        .search-box input[type="text"] {
            flex: 1;
            min-width: 180px;
            border: none;
            background: transparent;
            padding: 12px 4px;
            font-size: 1rem;
            outline: none;
            color: #2d1e13;
        }
        .search-box input[type="text"]::placeholder {
            color: #9f897a;
        }
        .search-box button {
            background: #c0392b;
            border: none;
            color: #fff;
            padding: 10px 26px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            background: #a02a1e;
            transform: scale(1.02);
        }
        .comment-area,
        .score-area {
            background: #fcf8f4;
            border-radius: 24px;
            padding: 24px 24px 20px;
            margin: 30px 0 16px;
            border: 1px solid #e8dbd0;
        }
        .comment-area h3,
        .score-area h3 {
            margin-top: 0;
        }
        .comment-area textarea {
            width: 100%;
            border: 2px solid #e0d2c4;
            border-radius: 16px;
            padding: 14px 16px;
            font-size: 0.98rem;
            resize: vertical;
            min-height: 90px;
            background: #fffcf9;
            transition: 0.2s;
        }
        .comment-area textarea:focus {
            border-color: #c0392b;
            outline: none;
        }
        .comment-area button,
        .score-area button {
            background: #c0392b;
            color: #fff;
            border: none;
            padding: 10px 28px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.2s;
            margin-top: 12px;
        }
        .comment-area button:hover,
        .score-area button:hover {
            background: #9e2b1f;
        }
        .score-stars {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #d4b8a4;
            cursor: pointer;
            margin: 8px 0 12px;
        }
        .score-stars i.active {
            color: #f39c12;
        }
        .score-stars i:hover {
            color: #f1c40f;
            transform: scale(1.1);
        }
        footer {
            border-top: 2px solid #f0e6d8;
            padding: 28px 0 14px;
            margin-top: 40px;
            font-size: 0.94rem;
            color: #5f4d3d;
        }
        friend-link {
            display: block;
            background: #f8f2eb;
            border-radius: 20px;
            padding: 18px 22px;
            margin: 10px 0 18px;
            font-weight: 500;
            line-height: 2;
        }
        friend-link a {
            color: #b85c3a;
            text-decoration: none;
            margin: 0 10px 0 4px;
            display: inline-block;
        }
        friend-link a:hover {
            text-decoration: underline;
            color: #8a2f1a;
        }
        .copyright {
            text-align: center;
            padding-top: 14px;
            color: #8d7a68;
            font-size: 0.88rem;
        }
        @media (max-width: 768px) {
            .container {
                padding: 12px 14px 20px;
                border-radius: 18px;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.6rem;
                padding-left: 12px;
            }
            h3 {
                font-size: 1.25rem;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 12px 0 6px;
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-toggle {
                display: inline-block;
            }
            .search-box {
                border-radius: 30px;
                padding: 12px 16px;
            }
            .search-box button {
                padding: 8px 18px;
                font-size: 0.88rem;
            }
            .score-stars {
                font-size: 1.6rem;
            }
            .hero-img .caption {
                font-size: 0.78rem;
                padding: 6px 12px;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            p {
                font-size: 0.98rem;
            }
            .container {
                padding: 8px 10px 16px;
            }
        }
        a {
            transition: 0.2s;
        }
        ::selection {
            background: #dbb6a2;
            color: #1a0f09;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #c0392b;
            color: #c0392b;
        }
        .btn-outline:hover {
            background: #c0392b;
            color: #fff;
        }
        .fa-solid,
        .fa-regular {
            margin-right: 4px;
        }
