* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #f5f7fc;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #fff;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.04);
            border-radius: 24px;
            padding: 20px 24px 40px;
        }
        a {
            color: #b45f3a;
            text-decoration: none;
            transition: 0.2s;
        }
        a:hover {
            color: #7a3e24;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 16px;
            display: block;
        }
        .header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0 8px;
            border-bottom: 2px solid #ede8e0;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #1e1e2a;
            text-decoration: none;
            background: linear-gradient(145deg, #b45f3a, #7a3e24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo small {
            font-size: 0.8rem;
            font-weight: 400;
            letter-spacing: 0.3px;
            color: #5a5a6e;
            background: none;
            -webkit-text-fill-color: #5a5a6e;
            display: block;
            line-height: 1.2;
        }
        .my-logo:hover {
            text-decoration: none;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 8px 18px;
            flex-wrap: wrap;
        }
        .nav-list a {
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 0;
            color: #2c2c3e;
            border-bottom: 2px solid transparent;
        }
        .nav-list a:hover {
            border-bottom-color: #b45f3a;
            color: #b45f3a;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #1e1e2a;
            padding: 4px 8px;
        }
        .breadcrumb {
            padding: 12px 0 8px;
            font-size: 0.9rem;
            color: #6a6a7e;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb span {
            color: #6a6a7e;
        }
        .breadcrumb a {
            color: #b45f3a;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            margin: 24px 0 12px;
            line-height: 1.2;
            color: #0f0f1a;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 40px 0 14px;
            padding-bottom: 6px;
            border-bottom: 3px solid #ede8e0;
            color: #1a1a2e;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 28px 0 10px;
            color: #2c2c42;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 20px 0 8px;
            color: #3a3a52;
        }
        p {
            margin: 0 0 18px;
            font-size: 1.05rem;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #7a7a8e;
            background: #f0ede8;
            display: inline-block;
            padding: 4px 16px;
            border-radius: 40px;
            margin: 6px 0 18px;
        }
        .featured-image {
            margin: 28px 0 32px;
            border-radius: 16px;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
        }
        .highlight {
            background: #faf3ed;
            border-left: 4px solid #b45f3a;
            padding: 14px 20px;
            border-radius: 0 12px 12px 0;
            margin: 22px 0;
        }
        .search-section {
            background: #f8f6f2;
            border-radius: 20px;
            padding: 24px 28px;
            margin: 32px 0 20px;
        }
        .search-section form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .search-section input[type="text"] {
            flex: 1 1 240px;
            padding: 14px 18px;
            border: 1px solid #d6cec4;
            border-radius: 60px;
            font-size: 1rem;
            outline: none;
            background: #fff;
        }
        .search-section input[type="text"]:focus {
            border-color: #b45f3a;
        }
        .search-section button {
            background: #b45f3a;
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 60px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
        }
        .search-section button:hover {
            background: #7a3e24;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 32px 0 20px;
        }
        .feedback-card {
            background: #f8f6f2;
            border-radius: 20px;
            padding: 24px 28px;
        }
        .feedback-card h3 {
            margin-top: 0;
            border-bottom: none;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 12px 16px;
            border: 1px solid #d6cec4;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            background: #fff;
        }
        .feedback-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-card button {
            background: #b45f3a;
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 60px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: #7a3e24;
        }
        .star-select {
            display: flex;
            gap: 8px;
            font-size: 1.6rem;
            color: #d6cec4;
            cursor: pointer;
        }
        .star-select i {
            transition: 0.2s;
        }
        .star-select i.active,
        .star-select i:hover {
            color: #f5b342;
        }
        friend-link {
            display: block;
            background: #f0ede8;
            border-radius: 20px;
            padding: 20px 28px;
            margin: 32px 0 16px;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            padding: 4px 0;
            font-weight: 500;
        }
        .footer {
            border-top: 2px solid #ede8e0;
            padding: 24px 0 12px;
            text-align: center;
            font-size: 0.9rem;
            color: #5a5a6e;
        }
        .footer a {
            color: #b45f3a;
        }
        @media (max-width: 768px) {
            .container {
                padding: 12px 14px 30px;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .header {
                padding: 10px 0 4px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fff;
                padding: 12px 0 16px;
                gap: 4px;
            }
            .nav-list.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .search-section form {
                flex-direction: column;
                align-items: stretch;
            }
            .search-section input[type="text"] {
                flex: 1 1 auto;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            friend-link a {
                display: block;
                margin: 6px 0;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 8px 10px 24px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .feedback-card {
                padding: 16px 18px;
            }
        }
        .emoji-big {
            font-size: 1.3em;
            margin-right: 4px;
        }
        .inline-list {
            list-style: disc;
            padding-left: 24px;
            margin: 12px 0 20px;
        }
        .inline-list li {
            margin: 6px 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 12px 16px;
            border: 1px solid #e2dbd2;
            text-align: left;
        }
        th {
            background: #f0ede8;
            font-weight: 600;
        }
        .btn-small {
            background: #b45f3a20;
            color: #b45f3a;
            border-radius: 40px;
            padding: 2px 14px;
            font-size: 0.8rem;
            font-weight: 600;
        }
