* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #0b0d17;
            color: #e8e8f0;
            line-height: 1.7;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #ffb347;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover,
        a:focus {
            color: #ffd700;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #11131f, #1a1d2e);
            border-bottom: 2px solid #2a2e48;
            padding: 14px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }
        .header-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            color: #ffd700;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #ffd700, #ff8c00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #ffd700;
            margin-right: 6px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #ffb347;
            color: #ffb347;
            font-size: 1.6rem;
            padding: 4px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #ffb34722;
        }
        .nav-menu {
            display: flex;
            gap: 24px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #cfd4e6;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-menu a:hover {
            border-bottom-color: #ffb347;
            color: #fff;
            text-decoration: none;
        }
        .nav-menu a i {
            margin-right: 6px;
            color: #ffb347;
        }
        .breadcrumb {
            background: #191d2e;
            padding: 10px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #2a2e48;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 18px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: #ffb347;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #9ca3c4;
        }
        .breadcrumb a:hover {
            color: #ffd700;
        }
        .breadcrumb .active {
            color: #ffd700;
            font-weight: 600;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ffd700, #ff8c00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #ffd700;
            margin-top: 48px;
            margin-bottom: 16px;
            border-left: 6px solid #ff8c00;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #f5c542;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #e0b354;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 18px;
            color: #d0d4e6;
        }
        .content-card {
            background: #141827;
            border-radius: 18px;
            padding: 28px 32px;
            margin-bottom: 32px;
            border: 1px solid #2a2e48;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
        }
        .highlight {
            background: linear-gradient(145deg, #1e2338, #1a1d2e);
            padding: 18px 24px;
            border-radius: 14px;
            border-left: 6px solid #ff8c00;
            margin: 24px 0;
        }
        .emoji-big {
            font-size: 1.6rem;
            margin-right: 6px;
        }
        .badge {
            display: inline-block;
            background: #ff8c00;
            color: #0b0d17;
            font-weight: 700;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            letter-spacing: 0.3px;
        }
        .btn {
            display: inline-block;
            background: #ff8c00;
            color: #0b0d17;
            font-weight: 700;
            padding: 10px 28px;
            border-radius: 40px;
            border: none;
            cursor: pointer;
            transition: 0.25s;
            font-size: 0.95rem;
        }
        .btn:hover {
            background: #ffd700;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
            text-decoration: none;
            color: #0b0d17;
        }
        .feature-img {
            margin: 28px 0;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            background: #1a1d2e;
        }
        .search-box {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin: 20px 0 10px;
        }
        .search-box input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 40px;
            border: 2px solid #2a2e48;
            background: #0f1120;
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: 0.25s;
        }
        .search-box input:focus {
            border-color: #ffb347;
            box-shadow: 0 0 0 4px rgba(255, 179, 71, 0.15);
        }
        .search-box button {
            background: #ff8c00;
            color: #0b0d17;
            border: none;
            padding: 14px 32px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.25s;
        }
        .search-box button:hover {
            background: #ffd700;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 20px;
        }
        @media (max-width:700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #1a1d2e;
            border-radius: 16px;
            padding: 24px;
            border: 1px solid #2a2e48;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .feedback-card textarea,
        .feedback-card input[type="number"],
        .feedback-card input[type="text"] {
            width: 100%;
            padding: 12px 16px;
            border-radius: 10px;
            border: 2px solid #2a2e48;
            background: #0f1120;
            color: #fff;
            font-size: 0.95rem;
            margin-top: 8px;
            outline: none;
            transition: 0.2s;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus {
            border-color: #ffb347;
        }
        .feedback-card textarea {
            resize: vertical;
            min-height: 80px;
        }
        .feedback-card .btn {
            margin-top: 12px;
            width: 100%;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            margin: 8px 0;
        }
        .star-rating i {
            transition: 0.2s;
        }
        .star-rating i.active {
            color: #ffd700;
        }
        .star-rating i:hover {
            color: #ffb347;
            transform: scale(1.1);
        }
        friend-link {
            display: block;
            background: #141827;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 40px 0 20px;
            border: 1px solid #2a2e48;
        }
        friend-link::before {
            content: "🔗 Friend Links";
            display: block;
            font-size: 1.2rem;
            font-weight: 700;
            color: #ffd700;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }
        friend-link a {
            display: inline-block;
            margin: 6px 18px 6px 0;
            color: #9ca3c4;
            font-size: 0.92rem;
        }
        friend-link a:hover {
            color: #ffd700;
        }
        footer {
            background: #0d0f1a;
            border-top: 2px solid #1f233a;
            padding: 32px 0 24px;
            text-align: center;
            color: #7a7f9e;
            font-size: 0.9rem;
        }
        footer .copyright {
            margin-top: 12px;
            border-top: 1px solid #1f233a;
            padding-top: 18px;
            font-size: 0.82rem;
            letter-spacing: 0.3px;
        }
        footer .copyright i {
            color: #ffb347;
        }
        @media (max-width:768px) {
            .nav-toggle {
                display: inline-block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0;
                background: #1a1d2e;
                padding: 14px 0;
                border-radius: 14px;
                margin-top: 12px;
                border: 1px solid #2a2e48;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 12px 20px;
                border-bottom: 1px solid #2a2e48;
                width: 100%;
            }
            .nav-menu a:last-child {
                border-bottom: none;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .content-card {
                padding: 18px 16px;
            }
            .header-flex {
                align-items: center;
            }
        }
        @media (max-width:480px) {
            .search-box input {
                min-width: 140px;
            }
            .feedback-grid {
                gap: 16px;
            }
            .breadcrumb ol {
                gap: 4px 12px;
                font-size: 0.75rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
            background: #0b0d17;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a2e48;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #ff8c00;
        }
        .text-small {
            font-size: 0.85rem;
            color: #7a7f9e;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .updated-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #1f233a;
            padding: 6px 18px;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #b0b8d4;
            border: 1px solid #2a2e48;
        }
        .updated-badge i {
            color: #ffd700;
        }
