* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0b0e14;
            color: #e8edf5;
            line-height: 1.75;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #f0c27f;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #141a24 0%, #1f2a38 100%);
            border-bottom: 2px solid #f0c27f33;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f0c27f, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px #f0c27f22;
            font-family: 'Trebuchet MS', sans-serif;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f0c27f;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #ffffff0a;
        }
        nav {
            display: flex;
            gap: 8px 18px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            color: #c8d0dc;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 10px;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
        }
        nav a:hover {
            background: #ffffff0c;
            color: #ffd700;
            text-decoration: none;
        }
        .nav-active {
            color: #ffd700 !important;
            border-bottom: 2px solid #ffd700;
        }
        .breadcrumb {
            background: #0f141d;
            padding: 12px 0;
            border-bottom: 1px solid #1f2a38;
            font-size: 0.85rem;
            color: #8895aa;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #f0c27f77;
        }
        .breadcrumb a {
            color: #8895aa;
        }
        .breadcrumb a:hover {
            color: #ffd700;
        }
        .breadcrumb .current {
            color: #f0c27f;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #f0c27f, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 18px;
            color: #f0c27f;
            border-left: 5px solid #ffd700;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 14px;
            color: #e0d5c0;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #c8bca8;
        }
        p {
            margin-bottom: 18px;
            color: #d0d8e3;
        }
        .highlight {
            color: #ffd700;
            font-weight: 600;
        }
        .strong {
            font-weight: 700;
            color: #f5e6c8;
        }
        ul,
        ol {
            margin: 16px 0 24px 24px;
            color: #d0d8e3;
        }
        li {
            margin-bottom: 8px;
        }
        .card {
            background: #151e2a;
            border-radius: 16px;
            padding: 28px 30px;
            margin: 28px 0;
            border: 1px solid #1f2a38;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }
        .card-glow {
            border-color: #f0c27f33;
            box-shadow: 0 0 40px #f0c27f0a;
        }
        .badge {
            display: inline-block;
            background: #f0c27f18;
            color: #f0c27f;
            padding: 2px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid #f0c27f33;
        }
        .emoji-big {
            font-size: 1.4rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #10171f;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid #1f2a38;
        }
        th {
            background: #1f2a38;
            color: #f0c27f;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        td {
            color: #c8d0dc;
        }
        tr:hover td {
            background: #1a2533;
        }
        .feature-img {
            border-radius: 16px;
            margin: 28px 0;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
            width: 100%;
            max-width: 900px;
        }
        .search-box {
            display: flex;
            gap: 10px;
            max-width: 520px;
            margin: 20px 0 30px;
            flex-wrap: wrap;
        }
        .search-box input {
            flex: 1;
            padding: 14px 20px;
            border-radius: 40px;
            border: 1px solid #2a3a4a;
            background: #0f141d;
            color: #e8edf5;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s, box-shadow 0.3s;
            min-width: 180px;
        }
        .search-box input:focus {
            border-color: #f0c27f;
            box-shadow: 0 0 20px #f0c27f22;
        }
        .search-box button {
            padding: 14px 32px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #f0c27f, #d4a847);
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .search-box button:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 25px #f0c27f33;
        }
        .comment-area {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin: 20px 0 30px;
            max-width: 650px;
        }
        .comment-area textarea {
            padding: 16px 20px;
            border-radius: 16px;
            border: 1px solid #2a3a4a;
            background: #0f141d;
            color: #e8edf5;
            font-size: 1rem;
            resize: vertical;
            min-height: 120px;
            outline: none;
            transition: border 0.3s;
        }
        .comment-area textarea:focus {
            border-color: #f0c27f;
        }
        .comment-area input {
            padding: 14px 20px;
            border-radius: 40px;
            border: 1px solid #2a3a4a;
            background: #0f141d;
            color: #e8edf5;
            font-size: 1rem;
            outline: none;
        }
        .comment-area input:focus {
            border-color: #f0c27f;
        }
        .comment-area button {
            align-self: flex-start;
            padding: 14px 36px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #f0c27f, #d4a847);
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .comment-area button:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 25px #f0c27f33;
        }
        .rating-wrap {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            margin: 16px 0 30px;
        }
        .rating-wrap .stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #3a4a5a;
            cursor: pointer;
        }
        .rating-wrap .stars i {
            transition: color 0.2s, transform 0.15s;
        }
        .rating-wrap .stars i:hover,
        .rating-wrap .stars i.active {
            color: #ffd700;
            transform: scale(1.1);
        }
        .rating-wrap button {
            padding: 12px 28px;
            border-radius: 40px;
            border: none;
            background: #1f2a38;
            color: #f0c27f;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-wrap button:hover {
            background: #2a3a4a;
        }
        footer {
            background: #0a0e16;
            border-top: 2px solid #1f2a38;
            padding: 48px 0 30px;
            margin-top: 40px;
        }
        footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        footer h4 {
            color: #f0c27f;
            margin-bottom: 16px;
            font-size: 1.1rem;
        }
        footer a {
            color: #8895aa;
            display: block;
            margin-bottom: 6px;
        }
        footer a:hover {
            color: #ffd700;
        }
        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #1f2a38;
            color: #5a6a7a;
            font-size: 0.85rem;
            margin-top: 20px;
        }
        .copyright strong {
            color: #8895aa;
        }
        friend-link {
            display: block;
            margin: 10px 0;
        }
        friend-link a {
            display: inline-block;
            margin-right: 18px;
            margin-bottom: 6px;
            padding: 4px 10px;
            background: #10171f;
            border-radius: 6px;
            border: 1px solid #1f2a38;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            border-color: #f0c27f33;
            text-decoration: none;
        }
        .last-updated {
            color: #5a6a7a;
            font-size: 0.85rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .last-updated i {
            color: #f0c27f77;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 16px 0 8px;
                gap: 4px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 12px 16px;
                border-radius: 8px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            footer .container {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .card {
                padding: 20px;
            }
            .search-box {
                flex-direction: column;
            }
            .search-box button {
                width: 100%;
            }
            .rating-wrap {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
            footer .container {
                grid-template-columns: 1fr 1fr;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0e14;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a3a4a;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3a4a5a;
        }
        .mt-1 {
            margin-top: 12px;
        }
        .mb-1 {
            margin-bottom: 12px;
        }
        .mt-2 {
            margin-top: 24px;
        }
        .mb-2 {
            margin-bottom: 24px;
        }
        .gap-1 {
            gap: 8px;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }
