        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.8;
            color: #1e1e2a;
            background: #faf8f5;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7a2e0e;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.6rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
            color: #1a1a2a;
            font-weight: 700;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 6px solid #b45309;
            padding-left: 1rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #e5d9cc;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #2d2d3f;
        }
        h4 {
            font-size: 1.15rem;
            color: #3d3d52;
        }
        p {
            margin-bottom: 1.2rem;
            color: #2a2a3a;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2a 0%, #2d1f0e 100%);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            letter-spacing: 2px;
            color: #fbbf24;
            text-transform: uppercase;
            background: linear-gradient(to right, #fbbf24, #b45309);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(251, 191, 36, 0.2);
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #ccc;
            color: #ccc;
            letter-spacing: 1px;
            font-weight: 300;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #f0e6d8;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: rgba(251, 191, 36, 0.15);
            color: #fbbf24;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #b45309;
            color: #fff;
        }
        .breadcrumb {
            background: #f0ebe4;
            padding: 0.6rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #e5d9cc;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #999;
        }
        .breadcrumb a {
            color: #7a5a3a;
        }
        .breadcrumb .current {
            color: #2d1f0e;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(120deg, #1e1e2a 0%, #2d1f0e 70%, #3d2a1a 100%);
            color: #fff;
            padding: 3rem 0 4rem;
            text-align: center;
            position: relative;
        }
        .hero h1 {
            color: #fbbf24;
            border-left: none;
            padding-left: 0;
            font-size: 3.2rem;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }
        .hero p {
            color: #e5d9cc;
            font-size: 1.2rem;
            max-width: 700px;
            margin: 1rem auto 0;
        }
        .hero .badge {
            display: inline-block;
            background: #b45309;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }
        .search-bar {
            background: #fff;
            border-radius: 50px;
            padding: 0.2rem 0.2rem 0.2rem 1.5rem;
            display: inline-flex;
            align-items: center;
            max-width: 500px;
            width: 100%;
            margin-top: 1.8rem;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
        }
        .search-bar input {
            flex: 1;
            border: none;
            outline: none;
            padding: 0.8rem 0.5rem;
            font-size: 1rem;
            background: transparent;
            color: #1e1e2a;
            min-width: 0;
        }
        .search-bar button {
            background: #b45309;
            border: none;
            color: #fff;
            padding: 0.8rem 1.6rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            font-size: 1rem;
            white-space: nowrap;
        }
        .search-bar button:hover {
            background: #7a2e0e;
            transform: scale(0.97);
        }
        .content-wrapper {
            padding: 2.5rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 14px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #ede8e0;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            margin-top: 0;
            border-bottom: 1px solid #e5d9cc;
            padding-bottom: 0.6rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            padding: 0.4rem 0;
            border-bottom: 1px dotted #f0ebe4;
        }
        .sidebar-card li:last-child {
            border-bottom: none;
        }
        .sidebar-card a {
            color: #2d1f0e;
            font-weight: 500;
        }
        .sidebar-card a:hover {
            color: #b45309;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .data-table th {
            background: #1e1e2a;
            color: #fbbf24;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #f0ebe4;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #fdf8f2;
        }
        .featured-img {
            border-radius: 16px;
            overflow: hidden;
            margin: 2rem 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            background: #e5d9cc;
        }
        .featured-img img {
            width: 100%;
            height: auto;
            object-fit: cover;
            aspect-ratio: 16/9;
        }
        .featured-img figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #5a4a3a;
            background: #fff;
            font-style: italic;
        }
        .feedback-section {
            background: #fff;
            border-radius: 16px;
            padding: 2rem;
            margin-top: 2.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #ede8e0;
        }
        .feedback-section h2 {
            margin-top: 0;
            border-bottom: none;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #1e1e2a;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1px solid #d5cdc0;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            background: #faf8f5;
            transition: border 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #b45309;
            background: #fff;
        }
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        .btn {
            background: #b45309;
            color: #fff;
            padding: 0.7rem 2rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .btn:hover {
            background: #7a2e0e;
            transform: translateY(-1px);
        }
        .btn:active {
            transform: translateY(0);
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd;
            transition: color 0.2s;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #fbbf24;
        }
        .site-footer {
            background: #1a1a2a;
            color: #ccc;
            padding: 2.5rem 0 1.2rem;
            margin-top: 3rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
        }
        .site-footer h4 {
            color: #fbbf24;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .site-footer a {
            color: #e5d9cc;
        }
        .site-footer a:hover {
            color: #fbbf24;
        }
        friend-link {
            display: block;
            padding: 0.8rem 0;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.5rem;
            margin-bottom: 0.4rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            border-top: 1px solid #2d2d3f;
            font-size: 0.9rem;
            color: #999;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .hero h1 {
                font-size: 2.4rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1a1a2a;
                padding: 0.8rem 0;
                border-radius: 0 0 12px 12px;
                gap: 0;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 1.2rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            .main-nav a:last-child {
                border-bottom: none;
            }
            .header-inner {
                align-items: center;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .search-bar {
                flex-direction: column;
                border-radius: 16px;
                padding: 0.5rem;
                background: #fff;
            }
            .search-bar input {
                width: 100%;
                padding: 0.6rem 0.8rem;
                border-radius: 8px;
            }
            .search-bar button {
                width: 100%;
                border-radius: 8px;
                margin-top: 0.3rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .feedback-section {
                padding: 1.2rem;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            .hero {
                padding: 2rem 0 2.5rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
        .text-highlight {
            background: linear-gradient(to right, #fbbf24, #f59e0b);
            color: #1a1a2a;
            padding: 0 0.3rem;
            font-weight: 600;
        }
        .card {
            background: #fff;
            border-radius: 14px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #ede8e0;
        }
        .emoji-big {
            font-size: 2rem;
        }
        .tag {
            display: inline-block;
            background: #f0ebe4;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #5a4a3a;
            font-weight: 500;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #888;
            text-align: right;
            margin-top: 2rem;
            padding-top: 0.8rem;
            border-top: 1px solid #ede8e0;
        }
        .newsletter-box {
            background: #f0ebe4;
            border-radius: 12px;
            padding: 1.2rem;
            text-align: center;
        }
        .newsletter-box input {
            width: 100%;
            padding: 0.6rem;
            border: 1px solid #d5cdc0;
            border-radius: 6px;
            margin: 0.5rem 0;
        }
        .newsletter-box button {
            background: #b45309;
            color: #fff;
            border: none;
            padding: 0.6rem 1.5rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
        }
        .schema-hidden {
            display: none;
        }
