        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #faf6f0;
            color: #2d2a24;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #8b6508;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #1e1b16;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 4px solid #b8860b;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #b8860b;
            padding-left: 0.8rem;
        }
        h3 {
            font-size: 1.4rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.2rem 1.8rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0.5rem;
        }
        .site-header {
            background: #1e1b16;
            color: #faf6f0;
            padding: 1rem 0;
            border-radius: 0 0 20px 20px;
            margin-bottom: 1.5rem;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: #faf6f0;
            background: linear-gradient(135deg, #b8860b, #d4a017);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 8px rgba(184, 134, 11, 0.3);
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #ccc;
            color: #ccc;
            font-weight: 400;
            letter-spacing: 0.5px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #b8860b;
            color: #b8860b;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(184, 134, 11, 0.15);
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.2rem;
            align-items: center;
        }
        .main-nav a {
            color: #e8e0d5;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            color: #f5d742;
            border-bottom-color: #f5d742;
            text-decoration: none;
        }
        .main-nav .nav-highlight {
            background: #b8860b;
            color: #1e1b16;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-weight: 700;
            border-bottom: none;
        }
        .main-nav .nav-highlight:hover {
            background: #d4a017;
            color: #1e1b16;
            border-bottom: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            font-size: 0.85rem;
            padding: 0.6rem 0 0.2rem;
            color: #aaa;
            list-style: none;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #b8860b;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #d4c5a9;
        }
        .breadcrumb a:hover {
            color: #f5d742;
        }
        .breadcrumb .active {
            color: #f5d742;
        }
        .content-area {
            background: #fffcf8;
            padding: 2rem 1.5rem;
            border-radius: 24px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
        }
        .featured-image {
            margin: 1.5rem 0 2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
        }
        .featured-image img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .featured-image figcaption {
            font-size: 0.85rem;
            color: #6b5e4f;
            padding: 0.6rem 1rem;
            background: #f0ebe4;
            font-style: italic;
        }
        .last-updated {
            display: inline-block;
            background: #1e1b16;
            color: #f5d742;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1.2rem;
        }
        .form-section {
            background: #f5f0e9;
            border-radius: 18px;
            padding: 1.8rem 1.5rem;
            margin: 2.5rem 0;
            border: 1px solid #e2d7cc;
        }
        .form-section h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            font-size: 0.95rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #d4c5a9;
            border-radius: 10px;
            font-size: 1rem;
            background: #fffcf8;
            transition: border-color 0.2s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #b8860b;
            box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
        }
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        .btn {
            display: inline-block;
            background: #b8860b;
            color: #1e1b16;
            padding: 0.7rem 2rem;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .btn:hover {
            background: #d4a017;
            transform: scale(1.02);
        }
        .btn:active {
            transform: scale(0.97);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #b8860b;
            color: #b8860b;
        }
        .btn-outline:hover {
            background: #b8860b;
            color: #1e1b16;
        }
        .star-rating {
            display: flex;
            gap: 0.4rem;
            font-size: 2rem;
            direction: rtl;
            unicode-bidi: bidi-override;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #d4c5a9;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c542;
        }
        friend-link {
            display: block;
            padding: 1.8rem 1.2rem;
            background: #1e1b16;
            border-radius: 20px;
            margin: 2rem 0 0.5rem;
            color: #e8e0d5;
        }
        friend-link a {
            color: #f5d742;
            font-weight: 500;
        }
        friend-link a:hover {
            color: #ffec8a;
        }
        .friend-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.5rem;
            margin-top: 0.6rem;
        }
        .site-footer {
            text-align: center;
            padding: 1.5rem 0 2.5rem;
            color: #6b5e4f;
            font-size: 0.9rem;
            border-top: 2px solid #e2d7cc;
            margin-top: 1rem;
        }
        .site-footer .copyright {
            font-weight: 600;
            color: #2d2a24;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.6rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 1rem 0 0.5rem;
                gap: 0.3rem;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                margin-top: 0.6rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.5rem 0;
                font-size: 1rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .content-area {
                padding: 1.2rem 0.8rem;
            }
            .form-section {
                padding: 1.2rem 0.8rem;
            }
            .star-rating {
                font-size: 1.6rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
        @media (min-width: 769px) {
            .nav-toggle {
                display: none !important;
            }
            .main-nav {
                display: flex !important;
            }
        }
        .text-gold {
            color: #b8860b;
        }
        .bg-dark {
            background: #1e1b16;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 0.8rem;
        }
        .emoji-big {
            font-size: 1.3em;
        }
        .main-nav {
            transition: all 0.25s ease;
        }
        .schema-hidden {
            display: none;
        }
