* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #fef9f0;
            color: #1e2a2f;
            line-height: 1.7;
            padding: 0 16px;
        }
        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
            border-radius: 28px;
            padding: 20px 28px 32px;
            margin-top: 18px;
            margin-bottom: 30px;
        }
        a {
            color: #b84a2c;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7a2e1a;
            text-decoration: underline;
        }
        .header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 12px;
            border-bottom: 2px solid #e8d9cc;
            position: relative;
        }
        .my-logo {
            font-size: 2.1rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #9c3a1e;
            background: linear-gradient(145deg, #b64a2a, #7a2e18);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #9c3a1e;
            color: #9c3a1e;
            font-size: 1.8rem;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: #5f4c42;
            color: #5f4c42;
            letter-spacing: 0.3px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #4d342b;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #f0e3da;
        }
        .navbar {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
            align-items: center;
        }
        .navbar a {
            font-weight: 500;
            color: #3f2f27;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        .navbar a:hover {
            border-bottom-color: #b84a2c;
            color: #b84a2c;
            text-decoration: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 14px;
            font-size: 0.85rem;
            padding: 12px 0 6px;
            color: #6b5a50;
            width: 100%;
        }
        .breadcrumb a {
            color: #6b5a50;
        }
        .breadcrumb a::after {
            content: "›";
            margin-left: 8px;
            color: #b89e8e;
        }
        .breadcrumb span {
            color: #3f2f27;
            font-weight: 500;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #6b2c18;
            margin: 28px 0 16px;
            line-height: 1.2;
            letter-spacing: -0.3px;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #7a341e;
            margin: 42px 0 16px;
            padding-bottom: 6px;
            border-bottom: 3px solid #ecdccf;
        }
        h3 {
            font-size: 1.45rem;
            font-weight: 600;
            color: #8c422a;
            margin: 32px 0 12px;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #9c4f35;
            margin: 24px 0 8px;
        }
        p {
            margin-bottom: 18px;
            font-size: 1rem;
            color: #2a1f1a;
        }
        .content-img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            margin: 24px 0 18px;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
            display: block;
        }
        .callout {
            background: #f6ede7;
            padding: 18px 24px;
            border-left: 5px solid #b84a2c;
            border-radius: 12px;
            margin: 24px 0;
            font-style: normal;
        }
        .btn {
            display: inline-block;
            background: #b84a2c;
            color: #fff;
            padding: 10px 28px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
        }
        .btn:hover {
            background: #8f361e;
            transform: scale(1.02);
            text-decoration: none;
            color: #fff;
        }
        .btn i {
            margin-right: 8px;
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 44px 0 32px;
        }
        .interact-card {
            background: #faf4ef;
            border-radius: 20px;
            padding: 22px 24px;
            border: 1px solid #e8d9cc;
        }
        .interact-card h3 {
            margin-top: 0;
            font-size: 1.25rem;
            color: #5f3a2a;
            border-bottom: 2px solid #e0cdbd;
            padding-bottom: 8px;
            margin-bottom: 16px;
        }
        .interact-card form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .interact-card input,
        .interact-card textarea,
        .interact-card select {
            padding: 10px 14px;
            border: 1px solid #d6c2b4;
            border-radius: 12px;
            font-size: 0.95rem;
            background: #fff;
            transition: border 0.2s;
            font-family: inherit;
        }
        .interact-card input:focus,
        .interact-card textarea:focus,
        .interact-card select:focus {
            outline: none;
            border-color: #b84a2c;
            box-shadow: 0 0 0 3px rgba(184, 74, 44, 0.15);
        }
        .interact-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .interact-card .btn {
            align-self: flex-start;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 4px;
            justify-content: flex-end;
            margin: 4px 0 8px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.6rem;
            color: #d6c2b4;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #e6a817;
        }
        friend-link {
            display: block;
            background: #f4ece6;
            border-radius: 18px;
            padding: 20px 24px;
            margin-top: 40px;
            border: 1px solid #e0cdbd;
            font-style: normal;
        }
        friend-link::before {
            content: "🔗 \00a0 Friend Links";
            display: block;
            font-weight: 700;
            font-size: 1.1rem;
            color: #5f3a2a;
            margin-bottom: 12px;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 2px 0;
            color: #7a3f2a;
            font-weight: 500;
        }
        friend-link a:hover {
            color: #b84a2c;
        }
        .footer {
            margin-top: 36px;
            padding-top: 20px;
            border-top: 2px solid #e8d9cc;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            color: #6b5a50;
        }
        .footer .copy {
            font-size: 0.85rem;
        }
        .footer a {
            color: #6b5a50;
        }
        @media (max-width: 820px) {
            .wrapper {
                padding: 16px 16px 24px;
                border-radius: 18px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .interact-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .navbar {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 10px;
            }
            .navbar.open {
                display: flex;
            }
            .nav-toggle {
                display: block;
            }
            .header {
                align-items: center;
            }
            .my-logo {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            .wrapper {
                padding: 12px 12px 20px;
                margin-top: 10px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
                gap: 4px 10px;
            }
            .btn {
                padding: 8px 20px;
                font-size: 0.85rem;
            }
            .interact-card {
                padding: 16px;
            }
            friend-link {
                padding: 16px;
            }
        }
        .last-updated {
            font-size: 0.8rem;
            color: #8f7a6e;
            text-align: right;
            margin-top: 10px;
            border-top: 1px dashed #e0cdbd;
            padding-top: 12px;
        }
        .last-updated i {
            margin-right: 4px;
        }
        .spacer {
            height: 8px;
        }
        .emoji-big {
            font-size: 1.8rem;
            line-height: 1;
        }
        ul,
        ol {
            padding-left: 24px;
            margin-bottom: 18px;
        }
        li {
            margin-bottom: 6px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 10px 14px;
            border: 1px solid #e0cdbd;
            text-align: left;
        }
        th {
            background: #f4ece6;
            font-weight: 600;
            color: #4d342b;
        }
        .highlight {
            background: #fdf6e3;
            padding: 2px 6px;
            border-radius: 6px;
            font-weight: 600;
        }
        .tag {
            display: inline-block;
            background: #e8d9cc;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #4d342b;
            margin: 2px 4px 2px 0;
        }
