* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f8f6f2;
            color: #2d2d2d;
            line-height: 1.8;
            font-size: 16px;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #8b6508;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #fff;
            padding: 18px 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;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f7d94e, #f0a500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-shadow: 0 2px 10px rgba(247, 217, 78, 0.2);
        }
        .my-logo:hover {
            text-decoration: none;
            -webkit-text-fill-color: #f7d94e;
        }
        .my-logo i {
            -webkit-text-fill-color: #f7d94e;
            margin-right: 6px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f7d94e;
            color: #f7d94e;
            font-size: 1.5rem;
            padding: 6px 14px;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #f7d94e;
            color: #1a1a2e;
        }
        nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        nav a {
            color: #ddd;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: 0.2s;
            border: 1px solid transparent;
        }
        nav a:hover {
            color: #f7d94e;
            border-color: #f7d94e;
            text-decoration: none;
            background: rgba(247, 217, 78, 0.08);
        }
        nav a.active {
            color: #f7d94e;
            border-color: #f7d94e;
            background: rgba(247, 217, 78, 0.12);
        }
        .breadcrumb {
            background: #f0ede6;
            padding: 12px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #e0dcd2;
        }
        .breadcrumb a {
            color: #8b6508;
        }
        .breadcrumb a:hover {
            color: #5a4305;
        }
        .breadcrumb span {
            color: #666;
        }
        .breadcrumb i {
            margin: 0 8px;
            color: #bbb;
            font-size: 0.7rem;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #1a1a2e;
            line-height: 1.25;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }
        h1 i {
            color: #f0a500;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-top: 54px;
            margin-bottom: 18px;
            padding-bottom: 8px;
            border-bottom: 3px solid #f0a500;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2d2d2d;
            margin-top: 36px;
            margin-bottom: 14px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #444;
            margin-top: 24px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 18px;
            color: #3d3d3d;
        }
        .lead {
            font-size: 1.2rem;
            color: #555;
            line-height: 1.9;
            margin-bottom: 30px;
        }
        .highlight {
            background: #fef7e0;
            padding: 4px 10px;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.4rem;
        }
        .info-box {
            background: linear-gradient(135deg, #fef9e7, #fdf2d5);
            border-left: 6px solid #f0a500;
            padding: 24px 28px;
            border-radius: 0 12px 12px 0;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        }
        .info-box p:last-child {
            margin-bottom: 0;
        }
        .featured-image {
            margin: 36px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            background: #e8e4da;
            text-align: center;
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #777;
            background: #f8f6f2;
            font-style: italic;
        }
        .inline-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            padding: 18px 0;
            margin: 20px 0;
        }
        .inline-links a {
            background: #f0ede6;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.9rem;
            border: 1px solid #e0dcd2;
            transition: 0.2s;
        }
        .inline-links a:hover {
            background: #f7d94e;
            color: #1a1a2e;
            text-decoration: none;
            border-color: #f7d94e;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 30px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        }
        th {
            background: #1a1a2e;
            color: #f7d94e;
            padding: 14px 18px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 12px 18px;
            border-bottom: 1px solid #eee;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #fef9e7;
        }
        .search-section {
            background: #fff;
            border-radius: 16px;
            padding: 32px 36px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            margin: 40px 0;
        }
        .search-section h2 i {
            color: #f0a500;
        }
        .search-form {
            display: flex;
            gap: 12px;
            margin-top: 16px;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #e0dcd2;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: 0.2s;
        }
        .search-form input:focus {
            border-color: #f0a500;
            box-shadow: 0 0 0 4px rgba(240, 165, 0, 0.15);
        }
        .search-form button {
            padding: 14px 32px;
            background: linear-gradient(135deg, #f7d94e, #f0a500);
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 700;
            color: #1a1a2e;
            cursor: pointer;
            transition: 0.2s;
        }
        .search-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(240, 165, 0, 0.35);
        }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 40px 0;
        }
        @media (max-width: 768px) {
            .feedback-section {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #fff;
            border-radius: 16px;
            padding: 28px 32px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .feedback-card textarea,
        .feedback-card input[type="text"],
        .feedback-card input[type="number"] {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0dcd2;
            border-radius: 10px;
            font-size: 0.95rem;
            outline: none;
            transition: 0.2s;
            font-family: inherit;
            margin-bottom: 14px;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus {
            border-color: #f0a500;
            box-shadow: 0 0 0 4px rgba(240, 165, 0, 0.12);
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 12px 28px;
            background: linear-gradient(135deg, #f7d94e, #f0a500);
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 700;
            color: #1a1a2e;
            cursor: pointer;
            transition: 0.2s;
        }
        .feedback-card button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(240, 165, 0, 0.3);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            margin-bottom: 14px;
        }
        .star-rating i.active {
            color: #f7d94e;
        }
        .star-rating i:hover {
            color: #f0a500;
        }
        friend-link {
            display: block;
            padding: 40px 0 20px;
            border-top: 2px solid #e0dcd2;
            margin-top: 40px;
        }
        friend-link h3 {
            margin-top: 0;
            font-size: 1.3rem;
            color: #1a1a2e;
        }
        .friend-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 20px;
            margin-top: 16px;
        }
        .friend-list a {
            background: #f0ede6;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.9rem;
            border: 1px solid #e0dcd2;
        }
        .friend-list a:hover {
            background: #f7d94e;
            color: #1a1a2e;
            text-decoration: none;
            border-color: #f7d94e;
        }
        footer {
            background: #1a1a2e;
            color: #ccc;
            padding: 36px 0 28px;
            text-align: center;
            font-size: 0.9rem;
        }
        footer .copyright {
            margin-top: 16px;
            color: #999;
            font-size: 0.85rem;
        }
        footer .copyright a {
            color: #f7d94e;
        }
        .last-updated {
            display: inline-block;
            background: #f0ede6;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #777;
            margin-bottom: 24px;
        }
        .last-updated i {
            margin-right: 6px;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                margin-top: 16px;
                gap: 6px;
            }
            nav.show {
                display: flex;
            }
            nav a {
                padding: 10px 18px;
                border-radius: 8px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .container {
                padding: 0 16px;
            }
            .featured-image img {
                max-height: 260px;
            }
            .search-section {
                padding: 20px 18px;
            }
            .feedback-card {
                padding: 20px 18px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .search-form input,
            .search-form button {
                width: 100%;
            }
            .inline-links {
                flex-direction: column;
            }
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .text-small {
            font-size: 0.9rem;
            color: #888;
        }
        .badge {
            display: inline-block;
            background: #f7d94e;
            color: #1a1a2e;
            padding: 2px 12px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
        }
