* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f5f3ef;
            color: #2b2b2b;
            line-height: 1.7;
            font-size: 16px;
            padding: 0 16px;
        }
        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
            border-radius: 28px 28px 0 0;
            overflow: hidden;
            padding: 0 24px 40px;
        }
        header {
            padding: 20px 0 12px;
            border-bottom: 2px solid #e8e3dc;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 700;
            text-decoration: none;
            color: #2c3e50;
            letter-spacing: -0.02em;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            color: #e67e22;
            font-size: 2rem;
        }
        .my-logo span {
            background: linear-gradient(135deg, #2c3e50, #e67e22);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #2c3e50;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #eee9e3;
        }
        nav {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            align-items: center;
        }
        nav a {
            text-decoration: none;
            color: #3d3d3d;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 40px;
            transition: all 0.2s;
            font-size: 0.95rem;
        }
        nav a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        nav a:hover {
            background: #e67e22;
            color: #fff;
            transform: translateY(-1px);
        }
        .breadcrumb {
            width: 100%;
            margin-top: 12px;
            padding: 8px 0 4px;
            font-size: 0.85rem;
            color: #6f6f6f;
            display: flex;
            flex-wrap: wrap;
            gap: 4px 8px;
        }
        .breadcrumb a {
            color: #e67e22;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #999;
        }
        main {
            padding: 32px 0 20px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 0 0 16px;
            color: #1e2a36;
        }
        h1 i {
            color: #e67e22;
            margin-right: 10px;
        }
        .last-updated {
            display: inline-block;
            background: #f0ebe4;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #5a5a5a;
            margin-bottom: 24px;
        }
        .last-updated i {
            margin-right: 6px;
            color: #e67e22;
        }
        .hero-img {
            width: 100%;
            border-radius: 20px;
            margin: 16px 0 32px;
            overflow: hidden;
            background: #e8e3dc;
            position: relative;
        }
        .hero-img img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            max-height: 420px;
        }
        .hero-img .img-credit {
            position: absolute;
            bottom: 8px;
            right: 12px;
            background: rgba(0, 0, 0, 0.5);
            color: #fff;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            backdrop-filter: blur(4px);
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #e67e22;
            color: #1e2a36;
        }
        h2 i {
            color: #e67e22;
            margin-right: 10px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #2c3e50;
        }
        h3 i {
            color: #e67e22;
            margin-right: 8px;
            font-size: 1.3rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: #3d3d3d;
        }
        h4 i {
            color: #e67e22;
            margin-right: 6px;
        }
        p {
            margin: 0 0 18px;
            font-size: 1.05rem;
            color: #2f2f2f;
        }
        .highlight {
            background: #fcf8f3;
            border-left: 4px solid #e67e22;
            padding: 16px 20px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .highlight strong {
            color: #c0392b;
        }
        ul,
        ol {
            margin: 0 0 20px 24px;
            font-size: 1.05rem;
        }
        li {
            margin-bottom: 8px;
        }
        a {
            color: #d35400;
            text-decoration: none;
            font-weight: 500;
        }
        a:hover {
            text-decoration: underline;
            color: #e67e22;
        }
        .btn {
            display: inline-block;
            padding: 8px 20px;
            background: #e67e22;
            color: #fff;
            border-radius: 40px;
            font-weight: 600;
            transition: all 0.25s;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
        }
        .btn:hover {
            background: #c0392b;
            transform: translateY(-2px);
            text-decoration: none;
            color: #fff;
        }
        .btn i {
            margin-right: 8px;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin: 40px 0 20px;
        }
        .feedback-card {
            background: #faf8f5;
            border-radius: 20px;
            padding: 24px 28px;
            border: 1px solid #e8e3dc;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.4rem;
            border-bottom: 2px solid #e8e3dc;
            padding-bottom: 12px;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 12px 16px;
            border: 1px solid #d5cfc7;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            background: #fff;
            transition: border 0.2s;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            outline: none;
            border-color: #e67e22;
            box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.15);
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.2s;
            color: #ddd;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f1c40f;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.98rem;
            background: #fcfaf8;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #e8e3dc;
        }
        th {
            background: #e67e22;
            color: #fff;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f5efe8;
        }
        friend-link {
            display: block;
            padding: 24px 0 8px;
            border-top: 2px solid #e8e3dc;
            margin-top: 40px;
            font-style: normal;
        }
        friend-link .fl-head {
            font-weight: 700;
            font-size: 1.1rem;
            color: #2c3e50;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
        }
        friend-link .fl-list a {
            color: #d35400;
            font-weight: 500;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s;
        }
        friend-link .fl-list a:hover {
            border-bottom-color: #e67e22;
            text-decoration: none;
        }
        footer {
            margin-top: 32px;
            padding: 24px 0 16px;
            border-top: 2px solid #e8e3dc;
            font-size: 0.9rem;
            color: #6f6f6f;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }
        footer .copy {
            font-weight: 400;
        }
        footer .copy i {
            color: #e67e22;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 8px;
            }
            .wrapper {
                padding: 0 12px 32px;
                border-radius: 16px 16px 0 0;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 12px 0 8px;
                gap: 4px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 16px;
                border-radius: 12px;
                background: #f8f5f1;
            }
            nav a:hover {
                background: #e67e22;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .hero-img img {
                max-height: 220px;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (min-width: 769px) {
            nav {
                display: flex !important;
            }
        }
        .search-inline {
            display: flex;
            gap: 8px;
            margin: 16px 0 24px;
            max-width: 520px;
        }
        .search-inline input {
            flex: 1;
            padding: 12px 18px;
            border: 1px solid #d5cfc7;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            transition: border 0.2s;
        }
        .search-inline input:focus {
            border-color: #e67e22;
            outline: none;
            box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
        }
        .search-inline button {
            padding: 12px 24px;
            border-radius: 40px;
            border: none;
            background: #e67e22;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
            font-size: 1rem;
        }
        .search-inline button:hover {
            background: #c0392b;
            transform: scale(1.02);
        }
        .tag {
            display: inline-block;
            background: #e8e3dc;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #3d3d3d;
            margin-right: 4px;
        }
        .quote {
            font-style: italic;
            background: #f5f0ea;
            padding: 16px 24px;
            border-radius: 16px;
            position: relative;
            margin: 24px 0;
        }
        .quote::before {
            content: "“";
            font-size: 3rem;
            color: #e67e22;
            position: absolute;
            top: -4px;
            left: 12px;
            line-height: 1;
        }
        .quote p {
            margin: 0 0 0 28px;
        }
        .quote .author {
            font-weight: 600;
            color: #2c3e50;
            margin-top: 8px;
            display: block;
        }
        .grid-2col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 24px 0;
        }
        @media (max-width: 600px) {
            .grid-2col {
                grid-template-columns: 1fr;
            }
        }
        .emoji-big {
            font-size: 2rem;
            vertical-align: middle;
        }
