* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #0f0e17;
            color: #fffffe;
            line-height: 1.8;
            font-size: 16px;
            padding: 0 16px;
        }
        a {
            color: #ff8906;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #f25f4c;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #1a1926;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.7);
            border-radius: 20px;
            padding: 20px 24px 10px;
            margin-top: 16px;
            margin-bottom: 16px;
        }
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding: 16px 0 12px;
            border-bottom: 2px solid #2d2b44;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ff8906, #f25f4c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }
        .my-logo small {
            font-size: 1rem;
            font-weight: 400;
            -webkit-text-fill-color: #a7a9be;
            color: #a7a9be;
            background: none;
            display: block;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ff8906;
            background: none;
            border: none;
            padding: 4px 12px;
        }
        .nav-menu {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            font-weight: 600;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-menu a:hover {
            border-bottom-color: #ff8906;
            text-decoration: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            padding: 14px 0 10px;
            font-size: 0.85rem;
            color: #a7a9be;
            border-bottom: 1px solid #2d2b44;
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: #a7a9be;
        }
        .breadcrumb a:hover {
            color: #ff8906;
        }
        .breadcrumb span {
            color: #fffffe;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            margin: 20px 0 12px;
            background: linear-gradient(135deg, #ff8906, #f25f4c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 40px 0 16px;
            color: #ff8906;
            border-left: 6px solid #f25f4c;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 28px 0 12px;
            color: #fffffe;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 20px 0 10px;
            color: #a7a9be;
        }
        p {
            margin-bottom: 16px;
            color: #e0e0e0;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #a7a9be;
            margin-bottom: 24px;
            padding: 8px 16px;
            background: #2d2b44;
            border-radius: 8px;
            display: inline-block;
        }
        .last-updated i {
            margin-right: 6px;
        }
        .feature-img {
            width: 100%;
            max-width: 800px;
            border-radius: 16px;
            margin: 20px auto;
            display: block;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #2d2b44;
        }
        .search-box {
            background: #2d2b44;
            padding: 20px 24px;
            border-radius: 14px;
            margin: 24px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .search-box input {
            flex: 1;
            min-width: 200px;
            padding: 14px 18px;
            border: none;
            border-radius: 10px;
            background: #0f0e17;
            color: #fffffe;
            font-size: 1rem;
            outline: 2px solid transparent;
            transition: outline 0.3s;
        }
        .search-box input:focus {
            outline-color: #ff8906;
        }
        .search-box button {
            padding: 14px 28px;
            background: #ff8906;
            border: none;
            border-radius: 10px;
            color: #0f0e17;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .search-box button:hover {
            background: #f25f4c;
            transform: scale(1.02);
        }
        .user-feedback {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 32px 0;
        }
        .comment-box,
        .rating-box {
            background: #2d2b44;
            padding: 20px 22px;
            border-radius: 14px;
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .comment-box textarea {
            width: 100%;
            padding: 12px 16px;
            border: none;
            border-radius: 10px;
            background: #0f0e17;
            color: #fffffe;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 100px;
            outline: 2px solid transparent;
            transition: outline 0.3s;
            font-family: inherit;
        }
        .comment-box textarea:focus {
            outline-color: #ff8906;
        }
        .comment-box input[type="text"] {
            width: 100%;
            padding: 12px 16px;
            border: none;
            border-radius: 10px;
            background: #0f0e17;
            color: #fffffe;
            font-size: 0.95rem;
            outline: 2px solid transparent;
            transition: outline 0.3s;
            margin: 10px 0;
        }
        .comment-box input:focus {
            outline-color: #ff8906;
        }
        .comment-box button,
        .rating-box button {
            padding: 12px 28px;
            background: #ff8906;
            border: none;
            border-radius: 10px;
            color: #0f0e17;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 10px;
        }
        .comment-box button:hover,
        .rating-box button:hover {
            background: #f25f4c;
        }
        .star-rating {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            cursor: pointer;
            margin: 12px 0;
            flex-wrap: wrap;
        }
        .star-rating i {
            color: #4a4865;
            transition: color 0.2s, transform 0.2s;
        }
        .star-rating i.active,
        .star-rating i:hover {
            color: #ff8906;
            transform: scale(1.15);
        }
        .star-rating i:hover~i {
            color: #4a4865;
        }
        .inline-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
            padding: 12px 0;
            list-style: none;
        }
        .inline-links a {
            background: #2d2b44;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.3s, color 0.3s;
        }
        .inline-links a:hover {
            background: #ff8906;
            color: #0f0e17;
            text-decoration: none;
        }
        friend-link {
            display: block;
            padding: 18px 0 10px;
            border-top: 2px solid #2d2b44;
            margin-top: 30px;
        }
        friend-link .flist {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 24px;
            padding: 12px 0;
        }
        friend-link .flist a {
            font-weight: 500;
        }
        .copyright {
            text-align: center;
            padding: 20px 0 12px;
            font-size: 0.85rem;
            color: #6b6a80;
            border-top: 1px solid #2d2b44;
            margin-top: 10px;
        }
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: #0f0e17;
            border-radius: 12px;
            overflow: hidden;
        }
        .info-table th,
        .info-table td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid #2d2b44;
        }
        .info-table th {
            background: #ff8906;
            color: #0f0e17;
            font-weight: 700;
        }
        .info-table tr:hover td {
            background: #2d2b44;
        }
        @media (max-width: 768px) {
            .container {
                padding: 12px 14px;
                border-radius: 12px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
                padding-left: 12px;
            }
            h3 {
                font-size: 1.2rem;
            }
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 8px;
                padding: 16px 0 8px;
                border-top: 1px solid #2d2b44;
                margin-top: 12px;
            }
            .nav-menu.show {
                display: flex;
            }
            .nav-menu a {
                padding: 10px 0;
                border-bottom: 1px solid #2d2b44;
                width: 100%;
            }
            .user-feedback {
                grid-template-columns: 1fr;
            }
            .search-box {
                flex-direction: column;
            }
            .search-box input {
                width: 100%;
                min-width: unset;
            }
            .search-box button {
                width: 100%;
            }
            .info-table {
                font-size: 0.85rem;
            }
            .info-table th,
            .info-table td {
                padding: 10px 12px;
            }
            .my-logo {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 10px 10px;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .star-rating {
                font-size: 1.6rem;
            }
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #0f0e17;
        }
        ::-webkit-scrollbar-thumb {
            background: #ff8906;
            border-radius: 6px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #f25f4c;
        }
        .highlight {
            color: #ff8906;
            font-weight: 600;
        }
        .badge {
            background: #f25f4c;
            color: #0f0e17;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
        }
        .quote {
            border-left: 4px solid #ff8906;
            padding: 12px 20px;
            margin: 20px 0;
            background: #2d2b4422;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #c0c0d0;
        }
