        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f7f5f0;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #d97706;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #b45309;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #1e1e2a;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.6rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            border-bottom: 3px solid #f59e0b;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #92400e;
        }
        h4 {
            font-size: 1.2rem;
            color: #78350f;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        header {
            background: linear-gradient(135deg, #1e1e2a 0%, #2d2d44 100%);
            color: #fff;
            padding: 0.8rem 0;
            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;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            display: inline-block;
        }
        .my-logo i {
            -webkit-text-fill-color: #fbbf24;
            margin-right: 0.3rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            gap: 1.2rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #e5e7eb;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.4rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
        }
        .nav-menu a:hover {
            background: rgba(251, 191, 36, 0.15);
            color: #fbbf24;
            text-decoration: none;
        }
        .nav-menu a i {
            margin-right: 0.3rem;
        }
        .breadcrumb {
            background: #f0ede6;
            padding: 0.6rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #e2dcd0;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 0.4rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #9ca3af;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #78350f;
        }
        .breadcrumb .active {
            color: #6b7280;
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
            color: #1e1e2a;
            padding: 2.5rem 0 2rem;
            text-align: center;
            border-bottom: 6px solid #78350f;
        }
        .hero h1 {
            font-size: 2.8rem;
            margin: 0 0 0.5rem;
            text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.05);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 750px;
            margin: 0.5rem auto 0;
            font-weight: 500;
            color: #3f3f46;
        }
        .hero .meta-info {
            margin-top: 1rem;
            font-size: 0.95rem;
            color: #52525b;
        }
        .hero .meta-info i {
            margin: 0 0.3rem;
        }
        .search-bar {
            background: #fff;
            padding: 0.25rem 0.25rem 0.25rem 1.2rem;
            border-radius: 50px;
            display: flex;
            align-items: center;
            max-width: 500px;
            margin: 1.5rem auto 0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2dcd0;
        }
        .search-bar input {
            flex: 1;
            border: none;
            padding: 0.7rem 0;
            font-size: 1rem;
            outline: none;
            background: transparent;
            min-width: 0;
        }
        .search-bar button {
            background: #f59e0b;
            border: none;
            color: #fff;
            padding: 0.7rem 1.6rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
        }
        .search-bar button:hover {
            background: #d97706;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 2.5rem;
            margin: 2.5rem 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 1.8rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            border: 1px solid #eae6de;
        }
        .sidebar-card h3 {
            font-size: 1.3rem;
            margin-top: 0;
            color: #1e1e2a;
            border-bottom: 2px solid #f59e0b;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card li {
            margin-bottom: 0.6rem;
        }
        .sidebar-card li a {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.4rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .sidebar-card li a:hover {
            background: #fef3c7;
            text-decoration: none;
        }
        .sidebar-card li a i {
            color: #f59e0b;
            width: 1.2rem;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            background: #eae6de;
        }
        .featured-image img {
            width: 100%;
            display: block;
        }
        .featured-image figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #52525b;
            background: #fff;
            border-top: 1px solid #e2dcd0;
            font-style: italic;
        }
        .info-box {
            background: #fef9e7;
            border-left: 5px solid #f59e0b;
            padding: 1.2rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.8rem 0;
        }
        .info-box strong {
            color: #78350f;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.8rem 0;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        }
        .data-table th {
            background: #1e1e2a;
            color: #fbbf24;
            padding: 0.9rem 1.2rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.8rem 1.2rem;
            border-bottom: 1px solid #eae6de;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:nth-child(even) {
            background: #faf8f4;
        }
        .data-table tr:hover td {
            background: #fef3c7;
        }
        .interaction-area {
            background: #fff;
            border-radius: 16px;
            padding: 2rem;
            margin: 2.5rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #eae6de;
        }
        .interaction-area h2 {
            border-bottom: none;
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #3f3f46;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1px solid #d1d5db;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.2s;
            background: #faf8f4;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #f59e0b;
            box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn-submit {
            background: #f59e0b;
            color: #fff;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }
        .btn-submit:hover {
            background: #d97706;
            transform: translateY(-1px);
        }
        .btn-submit:active {
            transform: translateY(0);
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #d1d5db;
            cursor: pointer;
            direction: rtl;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            cursor: pointer;
            transition: color 0.15s;
            color: #d1d5db;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: #f59e0b;
        }
        footer {
            background: #1e1e2a;
            color: #d4d4d8;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 6px solid #f59e0b;
        }
        footer .container {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 2rem;
            justify-content: center;
        }
        .footer-links a {
            color: #fbbf24;
            font-size: 0.95rem;
        }
        .footer-links a:hover {
            color: #f59e0b;
        }
        .copyright {
            text-align: center;
            font-size: 0.9rem;
            border-top: 1px solid #3f3f46;
            padding-top: 1.2rem;
            color: #a1a1aa;
        }
        .copyright strong {
            color: #fbbf24;
        }
        friend-link {
            display: block;
            text-align: center;
            padding: 0.8rem 0;
            font-size: 0.95rem;
        }
        friend-link a {
            color: #fbbf24;
            margin: 0 0.6rem;
        }
        friend-link a:hover {
            color: #fff;
        }
        @media (max-width: 1024px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }
            .sidebar-card {
                margin-bottom: 0;
            }
        }
        @media (max-width: 768px) {
            html {
                font-size: 15px;
            }
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 1rem 0 0.5rem;
                gap: 0.4rem;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                margin-top: 0.5rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                width: 100%;
                padding: 0.6rem 0.8rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .search-bar {
                flex-direction: column;
                border-radius: 16px;
                padding: 0.8rem;
                gap: 0.6rem;
            }
            .search-bar input {
                width: 100%;
                padding: 0.6rem 0.8rem;
                border: 1px solid #e2dcd0;
                border-radius: 30px;
            }
            .search-bar button {
                width: 100%;
                justify-content: center;
                border-radius: 30px;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.7rem;
            }
            .interaction-area {
                padding: 1.2rem;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
            .header-inner {
                gap: 0.4rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            footer .container {
                gap: 1rem;
            }
            .footer-links {
                gap: 0.5rem 1rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.7rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .container {
                padding: 0 0.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
        }
        .highlight {
            background: linear-gradient(to top, #fef3c7 30%, transparent 30%);
            padding: 0 0.2rem;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #f59e0b;
            color: #1e1e2a;
            padding: 0.15rem 0.7rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 700;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .spacer {
            height: 0.5rem;
        }
        .text-muted {
            color: #6b7280;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
