
    /* Reset all margins and padding */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    /* Full viewport settings */
    html, body {
        width: 100%;
        height: 100%;
        overflow-x: hidden;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    /* Force full width on all containers */
    body {
        background-color: #fafafa;
    }
    
    .marketplace-container {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        padding: 0;
    }
    
    .video-card {
        width: 100vw;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #dbdbdb;
        background: white;
    }
    
    /* Header adjustments */
    .video-header {
        padding: 14px 15px;
        width: 100%;
    }
    
    /* Video container full bleed */
    .video-container {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        background-color: black;
    }
    
    .video-player {
        width: 100%;
        height: auto;
        max-height: 80vh;
        display: block;
    }
    
    /* Action buttons */
    .video-actions {
        padding: 8px 15px;
        width: 100%;
    }
    
    /* Category scroll full width */
    .category-container {
        width: 100vw;
        position: sticky;
        left: 0;
        right: 0;
        padding: 12px 0;
    }
    
    .category-scroll {
        padding: 0 15px;
    }
    
    /* Ensure all other elements don't create horizontal overflow */
    .video-caption,
    .comments-section,
    .comment-form-container {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* The rest of your existing styles... */
    .video-user {
        display: flex;
        align-items: center;
    }
    
    .user-avatar {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        margin-right: 12px;
        object-fit: cover;
    }
    
    .username {
        font-weight: 600;
        color: #262626;
        text-decoration: none;
        font-size: 14px;
    }
    
    .action-buttons {
        display: flex;
        justify-content: space-between;
        margin-bottom: 8px;
    }
    
    .left-actions {
        display: flex;
        gap: 16px;
    }
    
    .action-btn {
        background: none;
        border: none;
        padding: 0;
        font-size: 24px;
        cursor: pointer;
        color: #262626;
    }
    
    .liked, .liked i {
        color: #ed4956 !important;
    }
    
    .likes-count {
        font-weight: 600;
        font-size: 14px;
        margin: 4px 0;
    }
    
    .caption-username {
        font-weight: 600;
        color: #262626;
        text-decoration: none;
        margin-right: 4px;
    }
    
    .comments-section {
        margin: 8px 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .comments-section.visible {
        max-height: 300px;
        overflow-y: auto;
    }
    
    .comment {
        margin-bottom: 8px;
        font-size: 14px;
    }
    
    .comment-user {
        font-weight: 600;
        color: #262626;
        text-decoration: none;
        margin-right: 4px;
    }
    
    .comment-time {
        font-size: 12px;
        color: #8e8e8e;
        margin-top: 2px;
    }
    
    .view-comments {
        display: block;
        color: #8e8e8e;
        font-size: 14px;
        margin-top: 4px;
        text-decoration: none;
    }
    
    .comment-form-container {
        border-top: 1px solid #efefef;
        padding-top: 12px;
        display: none;
    }
    
    .comment-form-container.visible {
        display: block;
    }
    
    .comment-form {
        display: flex;
        align-items: center;
    }
    
    .comment-input {
        flex-grow: 1;
        border: none;
        background: none;
        outline: none;
        font-size: 14px;
        padding: 8px 0;
    }
    
    .post-comment {
        color: #0095f6;
        font-weight: 600;
        font-size: 14px;
        background: none;
        border: none;
        opacity: 0.3;
        cursor: default;
    }
    
    .post-comment.active {
        opacity: 1;
        cursor: pointer;
    }
    
    .category-item {
        display: inline-block;
        padding: 6px 16px;
        margin-right: 8px;
        border-radius: 8px;
        background: #f0f0f0;
        color: #262626;
        font-size: 14px;
        font-weight: 500;
    }
    
    .category-item.active {
        background: #262626;
        color: white;
    }
    
    .product-tag {
        position: absolute;
        bottom: 10px;
        left: 10px;
        background: rgba(0,0,0,0.7);
        color: white;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
        display: flex;
        align-items: center;
    }
    
    .product-tag i {
        margin-right: 4px;
        font-size: 10px;
    }
    
    .category-container::-webkit-scrollbar {
        display: none;
    }
