* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #0a0a0f;
            color: #e8e8f0;
            line-height: 1.7;
            padding: 0 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #12121a;
            box-shadow: 0 0 60px rgba(255, 215, 0, 0.04);
            border-radius: 28px;
            padding: 24px 32px 40px;
            backdrop-filter: blur(2px);
            border: 1px solid #2a2a3a;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 20px 0 16px;
            border-bottom: 2px solid #2a2a3a;
            position: relative;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #f5c518, #d4a000);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            font-size: 2rem;
            color: #f5c518;
            -webkit-text-fill-color: #f5c518;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            letter-spacing: 1px;
            color: #aaa;
            -webkit-text-fill-color: #aaa;
            display: block;
            margin-top: -4px;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-list {
            list-style: none;
            display: flex;
            gap: 8px 16px;
            flex-wrap: wrap;
        }
        .nav-list li a {
            color: #c8c8e0;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 14px;
            border-radius: 30px;
            transition: all 0.25s;
            border: 1px solid transparent;
        }
        .nav-list li a:hover,
        .nav-list li a:focus-visible {
            background: #2a2a3e;
            color: #f5c518;
            border-color: #f5c51833;
            outline: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: 1px solid #444;
            color: #f0f0f0;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: #2a2a3a;
        }
        #navToggle {
            display: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 14px 0 10px;
            font-size: 0.9rem;
            color: #888;
            gap: 6px 12px;
            border-bottom: 1px solid #1e1e2a;
            margin-bottom: 28px;
        }
        .breadcrumb li+li::before {
            content: "▸";
            margin-right: 10px;
            color: #f5c51877;
        }
        .breadcrumb a {
            color: #b0b0d0;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #f5c518;
        }
        .breadcrumb .active {
            color: #f5c518;
            font-weight: 600;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 24px 0 18px;
            background: linear-gradient(135deg, #f5c518, #e6a800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 42px 0 18px;
            color: #f5c518;
            border-left: 6px solid #f5c518;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 14px;
            color: #e6b800;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #d4a000;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #d0d0e0;
        }
        .lead {
            font-size: 1.25rem;
            color: #e8e8f8;
            font-weight: 400;
            border-left: 4px solid #f5c51844;
            padding-left: 20px;
            margin-bottom: 30px;
        }
        strong,
        b {
            color: #fff;
            font-weight: 700;
        }
        em {
            color: #f5c518cc;
        }
        .internal-link {
            color: #f5c518;
            text-decoration: none;
            border-bottom: 1px dashed #f5c51877;
            font-weight: 500;
            transition: 0.2s;
        }
        .internal-link:hover {
            color: #ffd966;
            border-bottom-color: #ffd966;
        }
        .featured-img {
            width: 100%;
            max-width: 960px;
            border-radius: 24px;
            margin: 28px auto 32px;
            display: block;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
            border: 1px solid #2a2a3a;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .featured-img:hover {
            transform: scale(1.01);
            box-shadow: 0 24px 60px rgba(245, 197, 24, 0.08);
        }
        .img-caption {
            text-align: center;
            font-size: 0.9rem;
            color: #888;
            margin-top: -18px;
            margin-bottom: 36px;
        }
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0 36px;
            font-size: 0.98rem;
            background: #1a1a26;
            border-radius: 16px;
            overflow: hidden;
        }
        .info-table th,
        .info-table td {
            padding: 14px 20px;
            text-align: left;
            border-bottom: 1px solid #2a2a3a;
        }
        .info-table th {
            background: #2a2a3e;
            color: #f5c518;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .info-table tr:hover td {
            background: #222230;
        }
        .search-box {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 32px 0 28px;
            background: #1a1a26;
            padding: 20px 24px;
            border-radius: 20px;
            border: 1px solid #2a2a3a;
        }
        .search-box input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: none;
            border-radius: 40px;
            background: #0a0a12;
            color: #f0f0f0;
            font-size: 1rem;
            outline: 2px solid transparent;
            transition: 0.25s;
        }
        .search-box input:focus {
            outline-color: #f5c51888;
        }
        .search-box button {
            padding: 14px 32px;
            border: none;
            border-radius: 40px;
            background: linear-gradient(135deg, #f5c518, #d4a000);
            color: #0a0a0f;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.25s;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-box button:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 30px rgba(245, 197, 24, 0.25);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0 32px;
        }
        .feedback-card {
            background: #1a1a26;
            padding: 24px 28px;
            border-radius: 24px;
            border: 1px solid #2a2a3a;
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .feedback-card textarea,
        .feedback-card input {
            width: 100%;
            padding: 14px 16px;
            border: none;
            border-radius: 16px;
            background: #0a0a12;
            color: #f0f0f0;
            font-size: 1rem;
            margin-bottom: 14px;
            resize: vertical;
            outline: 2px solid transparent;
            transition: 0.2s;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus {
            outline-color: #f5c51866;
        }
        .feedback-card button {
            padding: 12px 28px;
            border: none;
            border-radius: 40px;
            background: #f5c518;
            color: #0a0a0f;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.25s;
        }
        .feedback-card button:hover {
            background: #ffd633;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            margin-bottom: 14px;
        }
        .star-rating i {
            transition: 0.15s;
        }
        .star-rating i.active,
        .star-rating i:hover {
            color: #f5c518;
        }
        footer {
            margin-top: 56px;
            padding-top: 32px;
            border-top: 2px solid #2a2a3a;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 28px;
        }
        .footer-brand h4 {
            color: #f5c518;
            margin-top: 0;
        }
        .footer-brand p {
            font-size: 0.95rem;
            color: #999;
        }
        friend-link {
            display: block;
            background: #1a1a26;
            padding: 20px 24px;
            border-radius: 20px;
            margin: 12px 0 20px;
            border: 1px solid #2a2a3a;
        }
        friend-link a {
            display: inline-block;
            color: #c8c8e0;
            text-decoration: none;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.95rem;
            transition: 0.2s;
            border: 1px solid transparent;
        }
        friend-link a:hover {
            background: #2a2a3e;
            color: #f5c518;
            border-color: #f5c51833;
        }
        .copyright {
            text-align: center;
            padding: 20px 0 8px;
            color: #666;
            font-size: 0.9rem;
            border-top: 1px solid #1e1e2a;
        }
        .copyright strong {
            color: #aaa;
        }
        @media (max-width: 900px) {
            .container {
                padding: 16px 18px 30px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                background: #1a1a26;
                position: absolute;
                top: 70px;
                right: 0;
                left: 0;
                padding: 20px;
                border-radius: 20px;
                border: 1px solid #2a2a3a;
                z-index: 100;
                gap: 8px;
            }
            .nav-list.show {
                display: flex;
            }
            .hamburger {
                display: inline-block;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 12px 12px 24px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .search-box {
                padding: 14px 16px;
            }
            .search-box input,
            .search-box button {
                width: 100%;
            }
        }
        .highlight-box {
            background: linear-gradient(135deg, #1a1a2a, #22223a);
            border-left: 6px solid #f5c518;
            padding: 18px 24px;
            border-radius: 16px;
            margin: 24px 0;
        }
        .emoji-big {
            font-size: 1.8rem;
            margin-right: 8px;
        }
        .tag {
            display: inline-block;
            background: #2a2a3e;
            color: #f5c518;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #777;
            margin-top: 20px;
            border-top: 1px solid #1e1e2a;
            padding-top: 18px;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0a0a0f;
        }
        ::-webkit-scrollbar-thumb {
            background: #3a3a4a;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }
