        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f5f2ed;
            color: #1e1e1e;
            line-height: 1.75;
            padding: 0 16px;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #8a6508;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1.25rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #2c1810;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
            border-bottom: 4px solid #b8860b;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.9rem;
            border-left: 6px solid #b8860b;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.25rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #fffcf9;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.06);
            border-radius: 24px 24px 0 0;
            padding: 20px 28px 40px;
        }
        @media (max-width: 640px) {
            .container {
                padding: 12px 14px 30px;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0 12px;
            border-bottom: 2px solid #e8ddd0;
            margin-bottom: 20px;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(145deg, #8a1c1c, #b8860b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(184, 134, 11, 0.15);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #b8860b;
            font-size: 1.8rem;
        }
        .my-logo a {
            text-decoration: none;
            -webkit-text-fill-color: transparent;
            background: inherit;
            -webkit-background-clip: text;
            background-clip: text;
        }
        .my-logo a:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 6px 14px;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #2c1810;
            background: transparent;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            background: #b8860b;
            color: #fff;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 4px;
            font-size: 0.85rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #2c1810;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #eee5db;
        }
        #nav-toggle {
            display: none;
        }
        @media (max-width: 780px) {
            .hamburger {
                display: inline-block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: #fffcf9;
                border: 1px solid #e8ddd0;
                border-radius: 16px;
                padding: 12px 8px;
                margin-top: 12px;
                gap: 2px;
            }
            .main-nav a {
                padding: 10px 16px;
                border-radius: 12px;
            }
            #nav-toggle:checked~.main-nav {
                display: flex;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            font-size: 0.85rem;
            color: #6b5b4e;
            background: #f0ebe5;
            padding: 8px 16px;
            border-radius: 40px;
            margin-bottom: 24px;
            gap: 4px 8px;
        }
        .breadcrumb a {
            color: #6b5b4e;
        }
        .breadcrumb a:hover {
            color: #b8860b;
        }
        .breadcrumb .sep {
            color: #b8860b;
            font-weight: 300;
        }
        .search-block {
            background: #faf6f0;
            border-radius: 20px;
            padding: 18px 22px;
            margin: 28px 0 24px;
            border: 1px solid #e8ddd0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
        }
        .search-block label {
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
            color: #2c1810;
        }
        .search-block input[type="text"] {
            flex: 1 1 200px;
            padding: 10px 16px;
            border: 1px solid #d6cbbc;
            border-radius: 40px;
            font-size: 0.95rem;
            background: #fff;
            outline: none;
            transition: border 0.2s;
            min-width: 140px;
        }
        .search-block input[type="text"]:focus {
            border-color: #b8860b;
            box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
        }
        .search-block button {
            background: #b8860b;
            color: #fff;
            border: none;
            padding: 10px 26px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .search-block button:hover {
            background: #9a6f09;
            transform: scale(1.02);
        }
        .user-feedback {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0 30px;
        }
        @media (max-width: 680px) {
            .user-feedback {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #faf6f0;
            border-radius: 20px;
            padding: 22px 24px;
            border: 1px solid #e8ddd0;
        }
        .feedback-card h3 {
            margin-top: 0;
            border-left: none;
            padding-left: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .feedback-card textarea,
        .feedback-card input[type="text"] {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid #d6cbbc;
            border-radius: 14px;
            font-size: 0.95rem;
            background: #fff;
            outline: none;
            transition: border 0.2s;
            font-family: inherit;
            resize: vertical;
        }
        .feedback-card textarea:focus,
        .feedback-card input[type="text"]:focus {
            border-color: #b8860b;
            box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.12);
        }
        .feedback-card textarea {
            min-height: 80px;
            margin-bottom: 10px;
        }
        .feedback-card .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
            margin-top: 6px;
        }
        .feedback-card button {
            background: #b8860b;
            color: #fff;
            border: none;
            padding: 10px 22px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .feedback-card button:hover {
            background: #9a6f09;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 1.7rem;
            color: #d6cbbc;
            cursor: pointer;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b342;
        }
        friend-link {
            display: block;
            background: #f0ebe5;
            border-radius: 16px;
            padding: 18px 22px;
            margin: 32px 0 18px;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            padding: 4px 12px;
            margin: 2px 4px;
            background: #fff;
            border-radius: 40px;
            border: 1px solid #d6cbbc;
            font-weight: 500;
            transition: background 0.2s, border-color 0.2s;
        }
        friend-link a:hover {
            background: #b8860b;
            color: #fff;
            border-color: #b8860b;
            text-decoration: none;
        }
        .site-footer {
            border-top: 2px solid #e8ddd0;
            padding: 28px 0 16px;
            margin-top: 20px;
            text-align: center;
            font-size: 0.9rem;
            color: #5a4c3e;
        }
        .site-footer .copyright {
            margin-top: 12px;
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        .site-footer .copyright i {
            color: #b8860b;
        }
        .highlight-box {
            background: #fcf6ed;
            border-left: 6px solid #b8860b;
            border-radius: 0 16px 16px 0;
            padding: 18px 22px;
            margin: 24px 0;
        }
        .emoji-lg {
            font-size: 1.3em;
            margin-right: 4px;
        }
        .badge {
            display: inline-block;
            background: #b8860b;
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 2px 12px;
            border-radius: 40px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .two-col-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 20px 0;
        }
        @media (max-width: 640px) {
            .two-col-grid {
                grid-template-columns: 1fr;
            }
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.92rem;
            background: #fcfaf7;
            border-radius: 12px;
            overflow: hidden;
        }
        th {
            background: #2c1810;
            color: #f5ede4;
            padding: 10px 14px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 10px 14px;
            border-bottom: 1px solid #e8ddd0;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .featured-img {
            border-radius: 16px;
            margin: 28px 0;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }
        .featured-img figcaption {
            font-size: 0.85rem;
            color: #6b5b4e;
            text-align: center;
            margin-top: 6px;
            font-style: italic;
        }
        @media (max-width: 480px) {
            .search-block {
                flex-direction: column;
                align-items: stretch;
            }
            .search-block input[type="text"] {
                min-width: auto;
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 6px 12px;
            }
        }
        @media print {
            .search-block,
            .user-feedback,
            .hamburger,
            .main-nav {
                display: none !important;
            }
            body {
                background: #fff;
            }
            .container {
                box-shadow: none;
                padding: 0;
            }
        }
