        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #faf7f2;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #b85c2e;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #7a3b1a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0.5rem;
        }
        :root {
            --saffron: #e87a2a;
            --deep-saffron: #c9601a;
            --green: #1f7a3b;
            --white: #ffffff;
            --cream: #fef9f0;
            --dark: #1e1e2a;
            --warm-gray: #4a3f3a;
            --gold: #d4a847;
            --light-bg: #f5efe8;
            --card-bg: #ffffff;
            --border-light: #e4dcd2;
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.10);
            --radius: 16px;
            --transition: all 0.25s ease;
        }
        header {
            background: var(--cream);
            border-bottom: 3px solid var(--saffron);
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem 1.5rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: var(--dark);
            background: linear-gradient(135deg, var(--saffron), var(--deep-saffron));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: var(--saffron);
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid var(--saffron);
            color: var(--saffron);
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
        }
        .nav-toggle:hover {
            background: var(--saffron);
            color: #fff;
        }
        .navbar {
            display: flex;
            flex-wrap: wrap;
            gap: 0.2rem 1.2rem;
            align-items: center;
        }
        .navbar a {
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0.2rem;
            border-bottom: 2px solid transparent;
            color: var(--warm-gray);
        }
        .navbar a:hover {
            border-bottom-color: var(--saffron);
            color: var(--deep-saffron);
            text-decoration: none;
        }
        .navbar .active {
            border-bottom-color: var(--saffron);
            color: var(--deep-saffron);
            font-weight: 600;
        }
        .breadcrumb {
            padding: 0.6rem 0 0.2rem 0;
            font-size: 0.85rem;
            color: #6b5e55;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            background: transparent;
            border-radius: 0;
        }
        .breadcrumb a {
            color: #6b5e55;
        }
        .breadcrumb a:hover {
            color: var(--saffron);
        }
        .breadcrumb .sep {
            color: #b8a99a;
        }
        .hero {
            background: linear-gradient(145deg, #f5efe8 0%, #e8ddd0 100%);
            padding: 2.8rem 1.5rem;
            border-radius: var(--radius);
            margin: 1.5rem 0 2rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "♛♚♝";
            font-size: 8rem;
            opacity: 0.04;
            position: absolute;
            right: -2rem;
            bottom: -2rem;
            transform: rotate(-12deg);
            pointer-events: none;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--dark);
            letter-spacing: -0.5px;
            line-height: 1.2;
        }
        .hero h1 span {
            color: var(--saffron);
        }
        .hero p {
            font-size: 1.15rem;
            color: var(--warm-gray);
            max-width: 720px;
            margin: 1rem auto 0;
        }
        .hero .badge {
            display: inline-block;
            background: var(--saffron);
            color: #fff;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            margin-bottom: 0.8rem;
        }
        section {
            margin-bottom: 3rem;
        }
        .section-title {
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--dark);
            border-left: 5px solid var(--saffron);
            padding-left: 1rem;
            margin-bottom: 1.2rem;
        }
        .section-title i {
            color: var(--saffron);
            margin-right: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-top: 2.4rem;
            margin-bottom: 0.8rem;
            color: #1e1e2a;
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 600;
            margin-top: 1.8rem;
            margin-bottom: 0.5rem;
            color: #2d2d3f;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-top: 1.2rem;
            margin-bottom: 0.3rem;
            color: #3d3d52;
        }
        p {
            margin-bottom: 1rem;
            color: #2e2e3a;
        }
        .highlight {
            background: #fdf0e6;
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.8rem;
            margin: 1.5rem 0;
        }
        .card {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 1.8rem 1.4rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-light);
            transition: var(--transition);
        }
        .card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }
        .card i {
            font-size: 2rem;
            color: var(--saffron);
            margin-bottom: 0.6rem;
        }
        .card h3 {
            margin-top: 0;
            font-size: 1.2rem;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            background: #ede4d8;
            padding: 0.5rem;
        }
        .featured-image figcaption {
            text-align: center;
            font-size: 0.85rem;
            color: #6b5e55;
            padding: 0.6rem 0 0.2rem 0;
            font-style: italic;
        }
        .search-box {
            background: var(--cream);
            border-radius: var(--radius);
            padding: 2rem 1.5rem;
            border: 1px solid var(--border-light);
            margin: 1.8rem 0;
        }
        .search-box form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-box input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.75rem 1.2rem;
            border: 2px solid #ddd2c6;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            outline: none;
            transition: var(--transition);
        }
        .search-box input[type="text"]:focus {
            border-color: var(--saffron);
            box-shadow: 0 0 0 3px rgba(232, 122, 42, 0.15);
        }
        .search-box button {
            background: var(--saffron);
            color: #fff;
            border: none;
            padding: 0.75rem 1.8rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-box button:hover {
            background: var(--deep-saffron);
            transform: scale(1.02);
        }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .feedback-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 1.8rem 1.5rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-light);
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 1rem;
        }
        .feedback-card input,
        .feedback-card textarea {
            padding: 0.7rem 1rem;
            border: 2px solid #ddd2c6;
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: inherit;
            background: #fff;
            outline: none;
            transition: var(--transition);
            resize: vertical;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus {
            border-color: var(--saffron);
            box-shadow: 0 0 0 3px rgba(232, 122, 42, 0.12);
        }
        .feedback-card button {
            background: var(--green);
            color: #fff;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: #135f2d;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ddd2c6;
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--gold);
        }
        footer {
            background: #1e1e2a;
            color: #d9d0c5;
            padding: 2.5rem 0 1.2rem 0;
            border-radius: var(--radius) var(--radius) 0 0;
            margin-top: 3rem;
        }
        footer .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 2rem;
        }
        footer h4 {
            color: #f5efe8;
            font-weight: 600;
            margin-bottom: 0.8rem;
            font-size: 1.05rem;
        }
        footer a {
            color: #cbb7a8;
        }
        footer a:hover {
            color: var(--saffron);
        }
        footer ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }
        footer .copyright {
            grid-column: 1 / -1;
            text-align: center;
            border-top: 1px solid #3d3d52;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            font-size: 0.85rem;
            color: #a09082;
        }
        friend-link {
            display: block;
            margin-top: 0.8rem;
            font-size: 0.9rem;
            color: #cbb7a8;
        }
        friend-link a {
            color: #cbb7a8;
            margin: 0 0.4rem;
        }
        friend-link a:hover {
            color: var(--saffron);
        }
        @media (max-width: 820px) {
            .feedback-section {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .navbar {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 1rem 0 0.4rem 0;
                gap: 0.5rem 0;
            }
            .navbar.show {
                display: flex;
            }
            .navbar a {
                width: 100%;
                padding: 0.5rem 0.2rem;
                border-bottom: 1px solid #e4dcd2;
            }
            .navbar a:last-child {
                border-bottom: none;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero {
                padding: 1.8rem 1rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            footer .container {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (min-width: 821px) {
            .nav-toggle {
                display: none !important;
            }
            .navbar {
                display: flex !important;
            }
        }
        .tag {
            display: inline-block;
            background: #ede4d8;
            color: #4a3f3a;
            padding: 0.15rem 0.8rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 500;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, var(--saffron), transparent);
            margin: 2rem 0;
            border: none;
        }
        .quote {
            background: #f5efe8;
            border-left: 4px solid var(--saffron);
            padding: 1rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
            font-style: italic;
            color: #3d3d52;
        }
        .quote cite {
            display: block;
            text-align: right;
            font-style: normal;
            font-weight: 600;
            margin-top: 0.5rem;
            color: var(--deep-saffron);
        }
        .last-updated {
            display: inline-block;
            background: #ede4d8;
            padding: 0.25rem 1.2rem;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #5e4f44;
            margin-bottom: 1rem;
        }
        .last-updated i {
            margin-right: 0.4rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        th,
        td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #ede4d8;
        }
        th {
            background: var(--saffron);
            color: #fff;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #fdf7f0;
        }
