* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: #0f0f13;
            color: #e0e0e0;
            line-height: 1.7;
            scroll-behavior: smooth;
            padding: 0 16px;
        }
        a {
            color: #f5b042;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #1a1a24;
            padding: 0 24px 24px;
            border-radius: 0 0 28px 28px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
        }
        header {
            padding: 20px 0 12px;
            border-bottom: 2px solid #2c2c3a;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5b042, #ff7b2b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: inline-block;
        }
        .my-logo small {
            font-size: 0.75rem;
            font-weight: 400;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            display: block;
            letter-spacing: 0.4px;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #f5b042;
            background: none;
            border: none;
            padding: 4px 8px;
            transition: transform 0.2s;
        }
        .hamburger:hover {
            transform: scale(1.1);
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            align-items: center;
            list-style: none;
            transition: max-height 0.35s ease, opacity 0.25s ease;
        }
        .nav-menu a {
            font-weight: 500;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .nav-menu a:hover {
            border-bottom-color: #f5b042;
            text-decoration: none;
        }
        .nav-menu .active {
            border-bottom-color: #f5b042;
            color: #ffd966;
        }
        .breadcrumb {
            padding: 12px 0 6px;
            font-size: 0.9rem;
            color: #999;
            width: 100%;
            margin-top: 6px;
            border-top: 1px solid #2a2a36;
        }
        .breadcrumb i {
            margin: 0 6px;
            font-size: 0.7rem;
        }
        .breadcrumb a {
            color: #bbb;
        }
        .breadcrumb a:hover {
            color: #f5b042;
        }
        .breadcrumb span {
            color: #f5b042;
            font-weight: 500;
        }
        main {
            padding: 28px 0 20px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5b042, #ff8a3c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 0 0 12px;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f5b042;
            margin: 48px 0 18px;
            border-left: 6px solid #ff7b2b;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #ffd580;
            margin: 32px 0 14px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #e8c47a;
            margin: 22px 0 10px;
        }
        p {
            margin: 0 0 18px;
            font-size: 1.05rem;
            color: #d5d5dd;
        }
        .last-updated {
            display: inline-block;
            background: #2a2a3a;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #bbb;
            margin-bottom: 20px;
        }
        .last-updated i {
            margin-right: 8px;
            color: #f5b042;
        }
        .featured-img {
            width: 100%;
            max-width: 820px;
            border-radius: 20px;
            margin: 24px 0 30px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #333;
            transition: transform 0.3s;
        }
        .featured-img:hover {
            transform: scale(1.005);
        }
        .highlight {
            background: #2a2a3a;
            border-left: 5px solid #f5b042;
            padding: 18px 24px;
            border-radius: 0 16px 16px 0;
            margin: 24px 0;
        }
        .highlight strong {
            color: #ffd580;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 6px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #f5b042, #e07c2e);
            color: #0f0f13;
            font-weight: 700;
            padding: 10px 28px;
            border-radius: 40px;
            border: none;
            cursor: pointer;
            transition: box-shadow 0.25s, transform 0.2s;
            font-size: 0.95rem;
        }
        .btn:hover {
            box-shadow: 0 6px 20px rgba(245, 176, 66, 0.35);
            transform: translateY(-2px);
            text-decoration: none;
            color: #0f0f13;
        }
        .btn i {
            margin-right: 8px;
        }
        .search-box {
            background: #24242f;
            padding: 20px 24px;
            border-radius: 24px;
            margin: 32px 0 28px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
            border: 1px solid #333;
        }
        .search-box input {
            flex: 1;
            min-width: 180px;
            padding: 12px 18px;
            border-radius: 40px;
            border: none;
            background: #12121c;
            color: #eee;
            font-size: 1rem;
            outline: 1px solid #444;
            transition: outline 0.2s;
        }
        .search-box input:focus {
            outline: 2px solid #f5b042;
        }
        .search-box button {
            background: #f5b042;
            border: none;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 700;
            color: #0f0f13;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
            font-size: 1rem;
        }
        .search-box button:hover {
            background: #ffcc6a;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 40px 0 30px;
        }
        .feedback-card {
            background: #24242f;
            border-radius: 24px;
            padding: 24px 28px;
            border: 1px solid #333;
            transition: border-color 0.25s;
        }
        .feedback-card:hover {
            border-color: #f5b042;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .feedback-card textarea,
        .feedback-card input,
        .feedback-card select {
            width: 100%;
            padding: 10px 14px;
            border-radius: 14px;
            border: none;
            background: #12121c;
            color: #eee;
            margin: 8px 0 14px;
            font-size: 0.95rem;
            outline: 1px solid #444;
            transition: outline 0.2s;
            font-family: inherit;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus,
        .feedback-card select:focus {
            outline: 2px solid #f5b042;
        }
        .feedback-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-card .btn {
            margin-top: 4px;
        }
        .stars {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #555;
            margin: 8px 0 14px;
            cursor: pointer;
        }
        .stars i {
            transition: color 0.2s, transform 0.15s;
        }
        .stars i:hover,
        .stars i.active {
            color: #f5b042;
            transform: scale(1.1);
        }
        .inline-links {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            background: #1e1e2c;
            padding: 14px 20px;
            border-radius: 18px;
            margin: 18px 0;
        }
        .inline-links a {
            font-weight: 500;
        }
        friend-link {
            display: block;
            background: #1e1e2c;
            padding: 20px 24px;
            border-radius: 20px;
            margin: 36px 0 12px;
            border: 1px solid #2c2c3a;
        }
        friend-link h3 {
            margin: 0 0 14px;
            font-size: 1.2rem;
            color: #f5b042;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
        }
        friend-link li a {
            padding: 4px 0;
        }
        footer {
            border-top: 2px solid #2c2c3a;
            padding: 28px 0 18px;
            margin-top: 32px;
            text-align: center;
            font-size: 0.9rem;
            color: #888;
        }
        footer a {
            color: #bbb;
        }
        footer a:hover {
            color: #f5b042;
        }
        footer .copy {
            margin-top: 10px;
            font-size: 0.82rem;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 0 14px 18px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
                padding-left: 12px;
            }
            h3 {
                font-size: 1.25rem;
            }
            .hamburger {
                display: block;
            }
            .nav-menu {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                flex-direction: column;
                align-items: flex-start;
                gap: 4px;
                padding: 0 0 0 8px;
                opacity: 0;
            }
            .nav-menu.open {
                max-height: 600px;
                opacity: 1;
                padding: 12px 0 12px 8px;
            }
            .nav-menu a {
                width: 100%;
                padding: 8px 0;
                border-bottom: 1px solid #2a2a36;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .featured-img {
                border-radius: 14px;
            }
            .search-box {
                flex-direction: column;
                align-items: stretch;
            }
            .search-box input {
                min-width: unset;
            }
            .breadcrumb {
                font-size: 0.75rem;
                white-space: nowrap;
                overflow-x: auto;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            .container {
                padding: 0 10px 14px;
            }
            .feedback-card {
                padding: 16px 18px;
            }
        }
        .schema-hidden {
            display: none;
        }
        html {
            scroll-behavior: smooth;
        }
        .mt-2 {
            margin-top: 20px;
        }
        .mb-1 {
            margin-bottom: 10px;
        }
        .tag {
            display: inline-block;
            background: #2f2f40;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.75rem;
            color: #ccc;
            margin-right: 6px;
        }
        .emoji-lg {
            font-size: 1.8rem;
            vertical-align: middle;
        }
