        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f9f7f4;
            color: #1e1e2a;
            line-height: 1.7;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px 40px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus-visible {
            color: #7c2d12;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 16px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.25;
            color: #1e1e2a;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.6rem;
            margin-top: 0.5rem;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 1.9rem;
            border-bottom: 3px solid #f59e0b;
            padding-bottom: 0.3rem;
            display: inline-block;
        }
        h3 {
            font-size: 1.45rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .container {
            flex: 1;
        }
        header {
            padding: 20px 0 10px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            border-bottom: 2px solid #e5e0d8;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #b45309;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #b45309, #d97706);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none !important;
            transition: transform 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none !important;
        }
        .my-logo i {
            -webkit-text-fill-color: #b45309;
            font-size: 1.8rem;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        nav#main-nav ul {
            display: flex;
            list-style: none;
            gap: 8px 18px;
            flex-wrap: wrap;
            padding: 0;
            margin: 0;
        }
        nav#main-nav ul li a {
            font-weight: 600;
            padding: 6px 10px;
            border-radius: 30px;
            font-size: 0.95rem;
            transition: background 0.2s, color 0.2s;
            color: #2d2d3a;
        }
        nav#main-nav ul li a:hover {
            background: #f59e0b20;
            color: #b45309;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #1e1e2a;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #f0ebe4;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 12px 0 8px;
            margin: 0;
            font-size: 0.88rem;
            color: #6b5e56;
            width: 100%;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 10px;
            color: #b45309;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #6b5e56;
        }
        .breadcrumb a:hover {
            color: #b45309;
        }
        .breadcrumb .active {
            color: #b45309;
            font-weight: 600;
        }
        .search-section {
            background: #fff7ed;
            padding: 24px 28px;
            border-radius: 20px;
            margin: 28px 0 20px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 16px;
        }
        .search-section form {
            display: flex;
            flex: 1 1 300px;
            gap: 10px;
        }
        .search-section input[type="text"] {
            flex: 1;
            padding: 14px 18px;
            border: 2px solid #e5e0d8;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
            background: white;
        }
        .search-section input[type="text"]:focus {
            border-color: #f59e0b;
        }
        .search-section button {
            padding: 14px 28px;
            background: #b45309;
            color: white;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-section button:hover {
            background: #92400e;
            transform: scale(1.02);
        }
        .hero-img-wrap {
            margin: 24px 0 32px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            background: #e5e0d8;
            position: relative;
        }
        .hero-img-wrap img {
            width: 100%;
            max-height: 420px;
            object-fit: cover;
        }
        .hero-img-wrap .img-credit {
            position: absolute;
            bottom: 10px;
            right: 16px;
            background: rgba(0, 0, 0, 0.5);
            color: #fff;
            padding: 4px 14px;
            border-radius: 30px;
            font-size: 0.75rem;
            backdrop-filter: blur(4px);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 20px 0 40px;
        }
        .content-main {
            min-width: 0;
        }
        .content-sidebar {
            position: sticky;
            top: 30px;
            align-self: start;
            background: #fffcf8;
            padding: 24px 20px;
            border-radius: 20px;
            border: 1px solid #e5e0d8;
            max-height: 90vh;
            overflow-y: auto;
        }
        .content-sidebar h3 {
            margin-top: 0;
            font-size: 1.2rem;
            border-bottom: 2px solid #f59e0b;
            padding-bottom: 8px;
        }
        .content-sidebar ul {
            list-style: none;
            padding: 0;
            margin: 12px 0 0;
        }
        .content-sidebar ul li {
            padding: 6px 0;
            border-bottom: 1px solid #f0ebe4;
        }
        .content-sidebar ul li a {
            font-weight: 500;
        }
        .feature-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 18px;
            margin: 28px 0;
        }
        .feature-card {
            background: white;
            padding: 22px 18px;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
            border-left: 5px solid #f59e0b;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
        }
        .feature-card i {
            font-size: 1.8rem;
            color: #b45309;
            margin-bottom: 8px;
        }
        .feature-card h4 {
            margin: 4px 0 6px;
        }
        .wiki-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .wiki-table th {
            background: #b45309;
            color: white;
            padding: 14px 16px;
            text-align: left;
            font-weight: 700;
        }
        .wiki-table td {
            padding: 12px 16px;
            border-bottom: 1px solid #f0ebe4;
        }
        .wiki-table tr:last-child td {
            border-bottom: none;
        }
        .wiki-table tr:hover td {
            background: #fffbeb;
        }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 40px 0 30px;
        }
        .feedback-card {
            background: white;
            padding: 26px 24px;
            border-radius: 20px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #f0ebe4;
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 12px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 12px 16px;
            border: 2px solid #e5e0d8;
            border-radius: 12px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
            font-family: inherit;
            background: #fafafa;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #f59e0b;
            background: white;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 14px 24px;
            background: #b45309;
            color: white;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: #92400e;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ddd;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            transition: color 0.15s;
            color: #d4c8bc;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f59e0b;
        }
        friend-link {
            display: block;
            padding: 28px 24px;
            background: #fff7ed;
            border-radius: 20px;
            margin: 30px 0 20px;
            border: 1px solid #e5e0d8;
        }
        friend-link::before {
            content: "🔗 Friendly Links";
            display: block;
            font-weight: 700;
            font-size: 1.2rem;
            color: #1e1e2a;
            margin-bottom: 14px;
        }
        .friend-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 12px 20px;
        }
        .friend-links-grid a {
            padding: 4px 0;
            display: inline-block;
        }
        footer {
            border-top: 2px solid #e5e0d8;
            padding: 28px 0 18px;
            margin-top: 20px;
            text-align: center;
            font-size: 0.92rem;
            color: #6b5e56;
        }
        footer .copyright {
            font-weight: 500;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .content-sidebar {
                position: relative;
                top: 0;
                max-height: none;
                order: -1;
            }
            .feedback-section {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 700px) {
            .hamburger {
                display: block;
            }
            nav#main-nav ul {
                display: none;
                flex-direction: column;
                background: white;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                padding: 20px 24px;
                border-radius: 16px;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
                z-index: 100;
                border: 1px solid #e5e0d8;
                gap: 4px;
            }
            nav#main-nav ul.open {
                display: flex;
            }
            nav#main-nav ul li a {
                padding: 12px 10px;
                font-size: 1.05rem;
                border-radius: 10px;
            }
            .search-section form {
                flex-wrap: wrap;
            }
            .search-section button {
                width: 100%;
                justify-content: center;
            }
            .feature-cards {
                grid-template-columns: 1fr;
            }
            .friend-links-grid {
                grid-template-columns: 1fr 1fr;
            }
            body {
                padding: 0 12px 30px;
            }
            .hero-img-wrap img {
                max-height: 220px;
            }
        }
        @media (max-width: 450px) {
            h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .friend-links-grid {
                grid-template-columns: 1fr;
            }
            .feedback-card {
                padding: 18px 14px;
            }
            .wiki-table th,
            .wiki-table td {
                padding: 8px 10px;
                font-size: 0.82rem;
            }
        }
        .skip-link {
            position: absolute;
            top: -100px;
            left: 20px;
            background: #b45309;
            color: white;
            padding: 12px 24px;
            border-radius: 0 0 12px 12px;
            font-weight: 700;
            z-index: 999;
            transition: top 0.2s;
        }
        .skip-link:focus {
            top: 0;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #8a7a6e;
            margin-top: -8px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .badge {
            display: inline-block;
            background: #f59e0b20;
            color: #92400e;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .quote-block {
            background: #f0ebe4;
            padding: 24px 28px;
            border-radius: 16px;
            border-left: 6px solid #b45309;
            margin: 24px 0;
            font-style: italic;
        }
        .quote-block strong {
            font-style: normal;
        }
        .btn-top {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #b45309;
            color: white !important;
            padding: 10px 20px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: background 0.2s;
            margin: 10px 0;
        }
        .btn-top:hover {
            background: #92400e;
            text-decoration: none !important;
        }
        .btn-top i {
            font-size: 0.9rem;
        }
        .anchor-offset {
            scroll-margin-top: 100px;
        }
