        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #faf7f2;
            color: #2e241f;
            line-height: 1.7;
            font-size: 1.05rem;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7a2e0e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.6rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.35rem;
        }
        p {
            margin-bottom: 1.2rem;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.3;
            color: #1f1a16;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.9rem;
            border-bottom: 3px solid #d97706;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.45rem;
            color: #92400e;
        }
        h4 {
            font-size: 1.2rem;
            color: #78350f;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(145deg, #1f1a16 0%, #2d241e 100%);
            color: #fef3c7;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 2px;
            color: #fbbf24;
            text-shadow: 2px 2px 0 #92400e;
            transition: transform 0.2s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
            color: #fcd34d;
        }
        .my-logo span {
            color: #fef3c7;
            font-weight: 300;
        }
        .nav-menu {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #fef3c7;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.92rem;
            font-weight: 500;
            transition: background 0.25s, color 0.25s;
        }
        .nav-menu a:hover {
            background: #d97706;
            color: #1f1a16;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #fbbf24;
            color: #fbbf24;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #d97706;
            border-color: #d97706;
            color: #1f1a16;
        }
        #nav-toggle {
            display: none;
        }
        #nav-toggle:checked+.nav-menu {
            display: flex;
            flex-direction: column;
            width: 100%;
            margin-top: 1rem;
            gap: 0.4rem;
        }
        #nav-toggle:checked+.nav-menu a {
            width: 100%;
            text-align: center;
        }
        .breadcrumb {
            background: #f1e8dc;
            padding: 0.6rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #e0d3c4;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #b45309;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #78350f;
        }
        .breadcrumb .current {
            color: #92400e;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fbbf24 100%);
            padding: 2.5rem 0 2rem;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            color: #1f1a16;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 720px;
            margin: 0.6rem auto 0;
            color: #3d2e22;
        }
        .hero .last-updated {
            display: inline-block;
            margin-top: 0.8rem;
            background: #1f1a16;
            color: #fbbf24;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        .content-area {
            padding: 2.5rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .content-main {
            min-width: 0;
        }
        .content-main .featured-img {
            margin: 1.5rem 0 2rem;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        .sidebar {
            position: sticky;
            top: 90px;
            align-self: start;
        }
        .sidebar-card {
            background: #fffcf7;
            border: 1px solid #e0d3c4;
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 1.8rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-top: 0;
            margin-bottom: 1rem;
            border-left: 4px solid #d97706;
            padding-left: 0.7rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card li {
            margin-bottom: 0.5rem;
        }
        .sidebar-card a {
            display: block;
            padding: 0.4rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .sidebar-card a:hover {
            background: #f1e8dc;
            text-decoration: none;
        }
        .form-block {
            background: #fffcf7;
            border: 1px solid #e0d3c4;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
        }
        .form-block h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #3d2e22;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #dccfc0;
            border-radius: 10px;
            font-size: 1rem;
            background: #fefcf9;
            transition: border 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #d97706;
            outline: none;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #d97706;
            color: #1f1a16;
            padding: 0.7rem 2rem;
            border: none;
            border-radius: 30px;
            font-size: 1.05rem;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .btn:hover {
            background: #b45309;
            color: #fef3c7;
            transform: translateY(-2px);
        }
        .btn-secondary {
            background: #2d241e;
            color: #fef3c7;
        }
        .btn-secondary:hover {
            background: #1f1a16;
            color: #fbbf24;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #d1c4b4;
            cursor: pointer;
            direction: rtl;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            transition: color 0.2s, transform 0.15s;
            color: #d1c4b4;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: #d97706;
            transform: scale(1.1);
        }
        .comment-item {
            padding: 1rem 0;
            border-bottom: 1px solid #e0d3c4;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-meta {
            font-size: 0.85rem;
            color: #7a6b5e;
            display: flex;
            gap: 1rem;
            margin-bottom: 0.3rem;
        }
        .comment-meta strong {
            color: #3d2e22;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #fffcf7;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e0d3c4;
        }
        th {
            background: #2d241e;
            color: #fbbf24;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f1e8dc;
        }
        friend-link {
            display: block;
            padding: 0.4rem 0;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
            padding: 0.2rem 0;
        }
        .site-footer {
            background: #1f1a16;
            color: #dccfc0;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        .site-footer a {
            color: #fbbf24;
        }
        .site-footer a:hover {
            color: #fde68a;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner h4 {
            color: #fbbf24;
            margin-top: 0;
            font-size: 1.1rem;
            border-bottom: 2px solid #3d2e22;
            padding-bottom: 0.4rem;
        }
        .footer-copy {
            text-align: center;
            padding-top: 1.8rem;
            margin-top: 1.8rem;
            border-top: 1px solid #3d2e22;
            font-size: 0.9rem;
            color: #a69483;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 700px) {
            .hamburger {
                display: inline-block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                margin-top: 0.5rem;
            }
            .nav-menu a {
                width: 100%;
                text-align: center;
                padding: 0.6rem 1rem;
            }
            #nav-toggle:checked+.nav-menu {
                display: flex;
                flex-direction: column;
            }
            .header-inner {
                align-items: center;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
            .form-block {
                padding: 1.2rem;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            body {
                font-size: 0.98rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .container {
                padding: 0 0.9rem;
            }
            .btn {
                width: 100%;
                text-align: center;
            }
        }
        .highlight-box {
            background: #fef3c7;
            border-left: 5px solid #d97706;
            padding: 1.2rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .tag {
            display: inline-block;
            background: #d97706;
            color: #1f1a16;
            padding: 0.15rem 0.8rem;
            border-radius: 30px;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.3px;
        }
        .flex-gap {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
