* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
            background: #f8f6f0;
            color: #2d2d2d;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #8b6508;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 18px 0;
            border-bottom: 4px solid #b8860b;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 900;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f5d300, #ff8c00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 10px rgba(255, 140, 0, 0.3);
        }
        .my-logo i {
            -webkit-text-fill-color: #f5d300;
            margin-right: 6px;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-toggle {
            display: none;
            font-size: 26px;
            color: #fff;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px 12px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #f0e6d3;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.25s ease;
            letter-spacing: 0.3px;
        }
        .nav-menu a:hover {
            background: #b8860b;
            color: #1a1a2e;
            text-decoration: none;
            transform: translateY(-2px);
        }
        .nav-menu a i {
            margin-right: 6px;
            font-size: 14px;
        }
        .breadcrumb {
            background: #e8e3d8;
            padding: 12px 0;
            font-size: 14px;
            border-bottom: 1px solid #d6cfc0;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            list-style: none;
            padding: 0 20px;
            max-width: 1180px;
            margin: 0 auto;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #999;
            font-size: 18px;
        }
        .breadcrumb a {
            color: #6b5b4e;
        }
        .breadcrumb .current {
            color: #b8860b;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #2d1f0e 0%, #4a2f12 100%);
            color: #f7f1e3;
            padding: 60px 0 50px;
            text-align: center;
            border-bottom: 6px solid #b8860b;
        }
        .hero h1 {
            font-size: 44px;
            font-weight: 900;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5d300, #ffb347);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        .hero p {
            font-size: 18px;
            max-width: 720px;
            margin: 16px auto 0;
            opacity: 0.9;
        }
        .hero .last-update {
            margin-top: 20px;
            font-size: 14px;
            opacity: 0.7;
            display: inline-block;
            background: rgba(255, 255, 255, 0.08);
            padding: 6px 18px;
            border-radius: 30px;
        }
        section {
            padding: 50px 0;
        }
        .section-title {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 28px;
            border-left: 6px solid #b8860b;
            padding-left: 18px;
            color: #1a1a2e;
        }
        .section-title i {
            color: #b8860b;
            margin-right: 10px;
        }
        h2 {
            font-size: 28px;
            font-weight: 700;
            margin-top: 40px;
            margin-bottom: 16px;
            color: #1a1a2e;
        }
        h3 {
            font-size: 22px;
            font-weight: 600;
            margin-top: 30px;
            margin-bottom: 12px;
            color: #2d2d2d;
        }
        h4 {
            font-size: 18px;
            font-weight: 600;
            margin-top: 20px;
            margin-bottom: 8px;
            color: #3d3d3d;
        }
        p {
            margin-bottom: 16px;
            color: #3a3a3a;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
            margin: 24px 0;
        }
        .card {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
            transition: transform 0.25s ease, box-shadow 0.3s ease;
            border: 1px solid #ede8de;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
        }
        .card h3 {
            margin-top: 0;
        }
        .card h3 i {
            color: #b8860b;
            margin-right: 8px;
        }
        .highlight-box {
            background: #fef7e8;
            border-left: 6px solid #b8860b;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .emoji-lg {
            font-size: 28px;
            margin-right: 8px;
        }
        .btn {
            display: inline-block;
            background: #b8860b;
            color: #fff !important;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 600;
            transition: all 0.25s ease;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }
        .btn:hover {
            background: #9a7209;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(184, 134, 11, 0.3);
            text-decoration: none;
        }
        .btn i {
            margin-right: 8px;
        }
        .search-section {
            background: #e8e3d8;
            border-radius: 16px;
            padding: 30px 32px;
            margin: 30px 0;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #d6cfc0;
            border-radius: 40px;
            font-size: 16px;
            background: #fff;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #b8860b;
            outline: none;
        }
        .search-form button {
            padding: 14px 32px;
            border-radius: 40px;
            background: #b8860b;
            color: #fff;
            border: none;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .search-form button:hover {
            background: #9a7209;
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 30px 0;
        }
        @media (max-width: 700px) {
            .interact-grid {
                grid-template-columns: 1fr;
            }
        }
        .interact-card {
            background: #fff;
            border-radius: 16px;
            padding: 28px 30px;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
            border: 1px solid #ede8de;
        }
        .interact-card h3 {
            margin-top: 0;
            font-size: 22px;
        }
        .interact-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 12px;
        }
        .interact-card input,
        .interact-card textarea,
        .interact-card select {
            padding: 12px 16px;
            border: 2px solid #e0d9cc;
            border-radius: 10px;
            font-size: 15px;
            background: #faf8f4;
            transition: border 0.2s;
        }
        .interact-card input:focus,
        .interact-card textarea:focus,
        .interact-card select:focus {
            border-color: #b8860b;
            outline: none;
        }
        .interact-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 28px;
            color: #e0d9cc;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            transition: color 0.2s;
            color: #e0d9cc;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c518;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #f0ebe2;
            padding: 10px 18px;
            font-size: 14px;
            color: #5a4e3e;
            text-align: center;
        }
        friend-link {
            display: block;
            padding: 18px 0;
            border-top: 2px solid #e0d9cc;
            margin-top: 20px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 14px;
            background: #f0ebe2;
            border-radius: 30px;
            font-size: 14px;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #b8860b;
            color: #fff;
            text-decoration: none;
        }
        footer {
            background: #1a1a2e;
            color: #cbc4b4;
            padding: 36px 0 24px;
            font-size: 14px;
            margin-top: 40px;
        }
        footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
        }
        footer a {
            color: #f5d300;
        }
        footer a:hover {
            color: #ffb347;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2d2d4a;
            margin-top: 20px;
            font-size: 13px;
            opacity: 0.8;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 16px;
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 12px 16px;
                border-radius: 8px;
                background: rgba(255, 255, 255, 0.05);
            }
            .hero h1 {
                font-size: 28px;
            }
            .hero p {
                font-size: 16px;
            }
            .section-title {
                font-size: 24px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                min-width: auto;
            }
            .header-inner {
                gap: 10px;
            }
            .my-logo {
                font-size: 22px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            section {
                padding: 30px 0;
            }
            .hero {
                padding: 40px 0 30px;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .author-badge {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #f0ebe2;
            padding: 12px 20px;
            border-radius: 12px;
            margin: 20px 0;
        }
        .author-badge i {
            font-size: 32px;
            color: #b8860b;
        }
        .stat-badge {
            display: inline-block;
            background: #1a1a2e;
            color: #f5d300;
            padding: 4px 14px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
        }
